diff options
author | mezz <mezz@FreeBSD.org> | 2005-02-27 06:42:40 +0800 |
---|---|---|
committer | mezz <mezz@FreeBSD.org> | 2005-02-27 06:42:40 +0800 |
commit | ffe621ccfa10aa83314e74cdcc365fcd4afc7419 (patch) | |
tree | a906d7045d786bf5876c25e246a592d0d2e5c823 /editors/abiword | |
parent | 461cfe49f8b0af14fb3fe52a425990dbdbd7b4fd (diff) | |
download | freebsd-ports-graphics-ffe621ccfa10aa83314e74cdcc365fcd4afc7419.tar.gz freebsd-ports-graphics-ffe621ccfa10aa83314e74cdcc365fcd4afc7419.tar.zst freebsd-ports-graphics-ffe621ccfa10aa83314e74cdcc365fcd4afc7419.zip |
-Remove nautilus2 dependency; it doesn't need it any longer. [1]
-While I am here, add a new knob, WITH_DEBUG.
Submitted by: Zahemszky Gabor <Gabor@Zahemszky.HU> [1]
Diffstat (limited to 'editors/abiword')
-rw-r--r-- | editors/abiword/Makefile | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/editors/abiword/Makefile b/editors/abiword/Makefile index 9160059d5fc..11625e59221 100644 --- a/editors/abiword/Makefile +++ b/editors/abiword/Makefile @@ -7,6 +7,7 @@ PORTNAME= abiword PORTVERSION= 2.2.4 +PORTREVISION= 1 CATEGORIES= editors MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \ http://www.abisource.com/downloads/%SUBDIR%/${PORTVERSION}/source/ @@ -46,6 +47,11 @@ ABIVERSION= 2.2 PLIST_SUB+= "ABIVERSION=${ABIVERSION}" WRKSRC= ${WRKDIR}/abiword-${PORTVERSION}/abi +.if defined(WITH_DEBUG) +CONFIGURE_ARGS+= --enable-debug \ + --enable-symbols +.endif + .ifndef(WITHOUT_GTKSPELL) LIB_DEPENDS+= enchant.2:${PORTSDIR}/textproc/enchant PLIST_SUB+= DICT:="@comment " @@ -56,8 +62,8 @@ PLIST_SUB+= DICT:="" .include <bsd.port.pre.mk> -.if ${HAVE_GNOME:Mnautilus2}!="" && ${HAVE_GNOME:Mlibgnomeprintui}!="" -USE_GNOME+= nautilus2 libgnomeprintui desktopfileutils +.if ${HAVE_GNOME:Mlibgnomeprintui}!="" +USE_GNOME+= libgnomeprintui desktopfileutils CONFIGURE_ARGS+= --enable-gnome PKGNAMESUFFIX= -gnome GNOME_ENABLED= yes @@ -72,6 +78,7 @@ CONFIGURE_ARGS+= --enable-cmap=no pre-everything:: @${ECHO_MSG} "" @${ECHO_MSG} "AbiWord2 has the following tunable option(s):" + @${ECHO_MSG} " WITH_DEBUG=yes Enable debug." @${ECHO_MSG} " WITH_GUCHARMAP=yes Enable use of Gucharmap as the symbol insertion tool (default: auto)" @${ECHO_MSG} " WITHOUT_GTKSPELL=yes Don't use Enchant, but still enable spellchecking and install the dictionary." @${ECHO_MSG} "" |