diff options
author | jim <jim@FreeBSD.org> | 2001-10-10 05:11:40 +0800 |
---|---|---|
committer | jim <jim@FreeBSD.org> | 2001-10-10 05:11:40 +0800 |
commit | bcfcb8c8996230baabd7848585f822114b828bc1 (patch) | |
tree | 66d81286cae895bee666eaf16a1d031e9ae8ebf1 /irc/xchat-gnome | |
parent | c8a9b3ffc65a113a27f1e3d047e8399ab81b6b05 (diff) | |
download | freebsd-ports-gnome-bcfcb8c8996230baabd7848585f822114b828bc1.tar.gz freebsd-ports-gnome-bcfcb8c8996230baabd7848585f822114b828bc1.tar.zst freebsd-ports-gnome-bcfcb8c8996230baabd7848585f822114b828bc1.zip |
Add --enable-zvt if compiled with GNOME support so things will work
properly.
PR: 31133
Submitted by: TOGAWA Satoshi <toga@puyo.org>
Diffstat (limited to 'irc/xchat-gnome')
-rw-r--r-- | irc/xchat-gnome/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/irc/xchat-gnome/Makefile b/irc/xchat-gnome/Makefile index 096e76d5024b..dc0b49b6a3ac 100644 --- a/irc/xchat-gnome/Makefile +++ b/irc/xchat-gnome/Makefile @@ -7,6 +7,7 @@ PORTNAME= xchat PORTVERSION= 1.8.4 +PORTREVISION= 1 CATEGORIES+= irc gnome ipv6 MASTER_SITES= http://xchat.org/files/source/1.8/ \ http://xchat.linuxpower.org/files/source/1.8/ @@ -52,10 +53,11 @@ CONFIGURE_ARGS+= --enable-openssl .if defined(HAVE_GNOME) USE_GNOME= yes -CONFIGURE_ARGS+= --enable-gnome --enable-panel --enable-gdk-pixbuf +CONFIGURE_ARGS+= --enable-gnome --enable-panel --enable-gdk-pixbuf \ + --enable-zvt MAKE_ARGS= icondir="${PREFIX}/share/gnome/pixmaps" .else -CONFIGURE_ARGS+= --disable-gnome --disable-gdk-pixbuf +CONFIGURE_ARGS+= --disable-gnome --disable-gdk-pixbuf --disable-zvt .endif .if ${OSVERSION} < 500007 |