summaryrefslogtreecommitdiff
path: root/irc/xchat-devel/Makefile
diff options
context:
space:
mode:
authorJeremy Lea <reg@FreeBSD.org>2000-04-17 00:18:05 +0000
committerJeremy Lea <reg@FreeBSD.org>2000-04-17 00:18:05 +0000
commit877b8a533b44bb6324ebbaf65cd80a60d1572003 (patch)
treee1a018208ceade04ca56a70c5184978cac51853e /irc/xchat-devel/Makefile
parentReplace AWOL maintainer with an active one (Assar Westerlund <assar@stacken.k... (diff)
Standardize all user defined options to the booleans WITH_FOO and
WITHOUT_FOO. Begin the process of reserving these prefixes for user defined options. No comment by: ports
Notes
Notes: svn path=/head/; revision=27679
Diffstat (limited to 'irc/xchat-devel/Makefile')
-rw-r--r--irc/xchat-devel/Makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/irc/xchat-devel/Makefile b/irc/xchat-devel/Makefile
index 056c5cd088be..394689d3a8c2 100644
--- a/irc/xchat-devel/Makefile
+++ b/irc/xchat-devel/Makefile
@@ -13,12 +13,12 @@ MASTER_SITES= http://xchat.org/files/source/1.4/ \
MAINTAINER= jim@FreeBSD.org
-.if defined(USE_SOCKS)
+.if defined(WITH_SOCKS)
BUILD_DEPENDS+= ${LOCALBASE}/lib/libsocks5.a:${PORTSDIR}/net/socks5
.endif
LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 \
Imlib.5:${PORTSDIR}/graphics/imlib
-.if defined(USE_GNOME)
+.if defined(WITH_GNOME)
LIB_DEPENDS+= gnome.3:${PORTSDIR}/x11/gnomelibs
.endif
@@ -32,13 +32,13 @@ USE_PERL5= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --disable-nls --disable-python
-.if defined(USE_SOCKS)
+.if defined(WITH_SOCKS)
CONFIGURE_ARGS+= --enable-socks
.endif
-.if defined(USE_GNOME)
+.if defined(WITH_GNOME)
CONFIGURE_ARGS+= --enable-gnome
-.if defined(USE_PANEL)
+.if defined(WITH_PANEL)
CONFIGURE_ARGS+= --enable-panel
.else
CONFIGURE_ARGS+= --disable-panel
@@ -50,7 +50,7 @@ CONFIGURE_ARGS+= --disable-gnome
CONFIGURE_ENV= GTK_CONFIG="${GTK_CONFIG}" \
GLIB_CONFIG="${GLIB_CONFIG}"
-.if defined(USE_GNOME)
+.if defined(WITH_GNOME)
PLIST= ${PKGDIR}/PLIST.gnome
.endif