summaryrefslogtreecommitdiff
path: root/devel/glade2
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 /devel/glade2
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 'devel/glade2')
-rw-r--r--devel/glade2/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/devel/glade2/Makefile b/devel/glade2/Makefile
index baab79372d33..b6d0cb7d32e2 100644
--- a/devel/glade2/Makefile
+++ b/devel/glade2/Makefile
@@ -12,7 +12,7 @@ MASTER_SITES= http://glade.pn.org/
MAINTAINER= ade@FreeBSD.org
-.if defined(USE_GNOME)
+.if defined(WITH_GNOME)
LIB_DEPENDS= gnome.3:${PORTSDIR}/x11/gnomelibs
PLIST_GNOME= ${PKGDIR}/PLIST.gnome
.else
@@ -32,13 +32,13 @@ CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
GTK_CONFIG="${GTK_CONFIG}" \
LIBS="-L${LOCALBASE}/libs"
-.if !defined(USE_GNOME)
+.if !defined(WITH_GNOME)
pre-extract:
- @${ECHO} "You can add hooks for GNOME by defining USE_GNOME"
+ @${ECHO} "You can add hooks for GNOME by defining WITH_GNOME"
.endif
post-patch:
-.if !defined(USE_GNOME)
+.if !defined(WITH_GNOME)
@cd ${WRKSRC} && ${PATCH} ${PATCH_ARGS} < ${FILESDIR}/patch-nognome
.endif