diff options
author | Jim Mock <jim@FreeBSD.org> | 2001-11-28 07:50:03 +0000 |
---|---|---|
committer | Jim Mock <jim@FreeBSD.org> | 2001-11-28 07:50:03 +0000 |
commit | 36fd7fc8029837ce5ad6dbc1557a673cd08dace2 (patch) | |
tree | 590849b9a1c32bb8474663b32c5f8210c7b07550 /irc/xchat1/Makefile | |
parent | add tex2im (diff) |
Update to version 1.8.6. While I'm here, add a WITH_TRANSPARENCY knob
so that non-GNOME users can get transparent windows if so desired.
Diffstat (limited to 'irc/xchat1/Makefile')
-rw-r--r-- | irc/xchat1/Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/irc/xchat1/Makefile b/irc/xchat1/Makefile index 7faa87f69507..7e2a0ca52056 100644 --- a/irc/xchat1/Makefile +++ b/irc/xchat1/Makefile @@ -6,8 +6,7 @@ # PORTNAME= xchat -PORTVERSION= 1.8.5 -PORTREVISION= 1 +PORTVERSION= 1.8.6 CATEGORIES+= irc gnome ipv6 MASTER_SITES= http://xchat.org/files/source/1.8/ \ http://xchat.linuxpower.org/files/source/1.8/ @@ -52,13 +51,18 @@ USE_OPENSSL= YES CONFIGURE_ARGS+= --enable-openssl .endif +.if defined(WITH_TRANSPARENCY) +BUILD_DEPENDS+= ${X11BASE}/bin/gdk-pixbuf-config:${PORTSDIR}/graphics/gdk-pixbuf +CONFIGURE_ARGS+= --enable-gdk-pixbuf +.endif + .if defined(HAVE_GNOME) USE_GNOME= yes 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 --disable-zvt +CONFIGURE_ARGS+= --disable-gnome --disable-zvt .endif post-patch: |