diff options
author | Jeremy Lea <reg@FreeBSD.org> | 2000-04-17 00:18:05 +0000 |
---|---|---|
committer | Jeremy Lea <reg@FreeBSD.org> | 2000-04-17 00:18:05 +0000 |
commit | 877b8a533b44bb6324ebbaf65cd80a60d1572003 (patch) | |
tree | e1a018208ceade04ca56a70c5184978cac51853e /devel/glade | |
parent | d12f14432cc492205cefb505a3c1320dd0f4e31a (diff) | |
download | freebsd-ports-877b8a533b44bb6324ebbaf65cd80a60d1572003.zip |
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
Diffstat (limited to 'devel/glade')
-rw-r--r-- | devel/glade/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/devel/glade/Makefile b/devel/glade/Makefile index baab79372d33..b6d0cb7d32e2 100644 --- a/devel/glade/Makefile +++ b/devel/glade/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 |