diff options
author | dinoex <dinoex@FreeBSD.org> | 2006-01-24 18:21:15 +0800 |
---|---|---|
committer | dinoex <dinoex@FreeBSD.org> | 2006-01-24 18:21:15 +0800 |
commit | 0af7f19aea623cf73e6fb8cf65f24fb43682befe (patch) | |
tree | 44846e691daf72938ec06db2f33fd2cfbff6c910 /x11-toolkits/gnustep-gui | |
parent | a48382aefff9cdf24d64744371351db1cd2d81a5 (diff) | |
download | freebsd-ports-graphics-0af7f19aea623cf73e6fb8cf65f24fb43682befe.tar.gz freebsd-ports-graphics-0af7f19aea623cf73e6fb8cf65f24fb43682befe.tar.zst freebsd-ports-graphics-0af7f19aea623cf73e6fb8cf65f24fb43682befe.zip |
- inlcude aspell suppret by default
- new option ASPELL_PORT
to use a localized aspell
- new option WITHOUT_ASPELL
Diffstat (limited to 'x11-toolkits/gnustep-gui')
-rw-r--r-- | x11-toolkits/gnustep-gui/Makefile | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/x11-toolkits/gnustep-gui/Makefile b/x11-toolkits/gnustep-gui/Makefile index ca8081b8488..6804db8782e 100644 --- a/x11-toolkits/gnustep-gui/Makefile +++ b/x11-toolkits/gnustep-gui/Makefile @@ -7,7 +7,7 @@ PORTNAME= gnustep-gui PORTVERSION= 0.10.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11-toolkits MASTER_SITES= ${MASTER_SITE_GNUSTEP} MASTER_SITE_SUBDIR= core @@ -62,6 +62,14 @@ PLIST_SUB+= WITH_CUPS="" PLIST_SUB+= WITH_CUPS="@comment " .endif +ASPELL_PORT?= german/aspell +.if !defined(WITHOUT_ASPELL) +LIB_DEPENDS+= aspell:${PORTSDIR}/${ASPELL_PORT} +PLIST_SUB+= WITH_ASPELL="" +.else +PLIST_SUB+= WITH_ASPELL="@comment " +.endif + pre-configure: .for file in config.guess config.sub install-sh @${CP} ${PREFIX}/System/Library/Makefiles/${file} ${WRKSRC} |