diff options
author | reg <reg@FreeBSD.org> | 2000-04-17 00:18:05 +0000 |
---|---|---|
committer | reg <reg@FreeBSD.org> | 2000-04-17 00:18:05 +0000 |
commit | 8b766534122d71052c9f8e5a0752944edf0450f8 (patch) | |
tree | 255862bd3b0c32802317a9ddc3193fd714753916 /deskutils | |
parent | e0c8ef49d897de0719277097a1e6578f291f493e (diff) | |
download | FreeBSD-ports-8b766534122d71052c9f8e5a0752944edf0450f8.zip FreeBSD-ports-8b766534122d71052c9f8e5a0752944edf0450f8.tar.gz |
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 'deskutils')
-rw-r--r-- | deskutils/gaddr/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/deskutils/gaddr/Makefile b/deskutils/gaddr/Makefile index 47a1c3d..45fe98e 100644 --- a/deskutils/gaddr/Makefile +++ b/deskutils/gaddr/Makefile @@ -13,7 +13,7 @@ MASTER_SITES= http://www.cse.unl.edu/~cluening/gaddr/ MAINTAINER= jim@FreeBSD.org LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 -.if defined(USE_GNOME) +.if defined(WITH_GNOME) LIB_DEPENDS+= gnome.3:${PORTSDIR}/x11/gnomelibs .endif @@ -22,7 +22,7 @@ GTK_CONFIG?= ${X11BASE}/bin/gtk12-config USE_X_PREFIX= yes GNU_CONFIGURE= yes -.if defined(USE_GNOME) +.if defined(WITH_GNOME) CONFIGURE_ARGS+= --enable-gnome .endif |