mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-24 09:25:01 +00:00
8d1905f704
- by default, textproc/aspell installs the English dictionaries (no change); - thereafter you can install any foreign dictionary; - when you install a foreign dictionary, i.e. french/aspell or textproc/da-aspell, it installs only the dictionaries, and depends upon textproc/aspell for the programs; - if you don't need the English dictionaries, you can define WITHOUT_DICTEN or install textproc/aspell-without-dicten; - add a new port for textproc/en-aspell: if aspell had been installed without the English dictionaries, they can be added thereafter; - add a missing port for german/alt-aspell; - foreign dictionaries are almost independent from textproc/aspell, and their maintainership is available. Credits: special thanks to Serge Gagnon <ser_gagnon (at) sympatico.ca>
24 lines
531 B
Makefile
24 lines
531 B
Makefile
# $FreeBSD$
|
|
# To be included by dictionaries ports.
|
|
|
|
MASTER_SITES?= ${MASTER_SITE_GNU}
|
|
MASTER_SITE_SUBDIR?= aspell/dict/${DICT}
|
|
DISTNAME?= aspell${DISTVERSION}
|
|
|
|
.if ${PORTNAME} == "en-aspell" || defined(WITHOUT_DICTEN)
|
|
LIB_DEPENDS= aspell:${PORTSDIR}/textproc/aspell-without-dicten
|
|
.else
|
|
LIB_DEPENDS= aspell:${PORTSDIR}/textproc/aspell
|
|
.endif
|
|
|
|
USE_BZIP2= yes
|
|
USE_GMAKE= yes
|
|
HAS_CONFIGURE= yes
|
|
|
|
PLIST_SUB= VER=${VER}
|
|
|
|
.include <bsd.port.pre.mk>
|
|
.if exists(${LOCALBASE}/etc/aspell.ver)
|
|
. include "${LOCALBASE}/etc/aspell.ver"
|
|
.endif
|