diff options
author | reg <reg@FreeBSD.org> | 2000-04-17 08:18:05 +0800 |
---|---|---|
committer | reg <reg@FreeBSD.org> | 2000-04-17 08:18:05 +0800 |
commit | 8b766534122d71052c9f8e5a0752944edf0450f8 (patch) | |
tree | 255862bd3b0c32802317a9ddc3193fd714753916 /audio/lame | |
parent | e0c8ef49d897de0719277097a1e6578f291f493e (diff) | |
download | freebsd-ports-gnome-8b766534122d71052c9f8e5a0752944edf0450f8.tar.gz freebsd-ports-gnome-8b766534122d71052c9f8e5a0752944edf0450f8.tar.zst freebsd-ports-gnome-8b766534122d71052c9f8e5a0752944edf0450f8.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 'audio/lame')
-rw-r--r-- | audio/lame/Makefile | 4 | ||||
-rw-r--r-- | audio/lame/files/patch-aa | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/audio/lame/Makefile b/audio/lame/Makefile index 3316929728b8..9961f416ce3a 100644 --- a/audio/lame/Makefile +++ b/audio/lame/Makefile @@ -16,7 +16,7 @@ PATCHFILES= lame3.51.patch.gz MAINTAINER= yoshiaki@kt.rim.or.jp -.if !defined(NO_X11) +.if !defined(WITHOUT_X11) LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 .endif @@ -24,7 +24,7 @@ PATCH_DIST_STRIP = -p1 WRKSRC= ${WRKDIR}/dist10/lsf/encoder/ USE_GMAKE= YES -MAKE_ENV= NO_X11=${NO_X11} +MAKE_ENV= WITHOUT_X11=${WITHOUT_X11} ALL_TARGET= lame RESTRICTED= Condition is not clear diff --git a/audio/lame/files/patch-aa b/audio/lame/files/patch-aa index 4bd8ef8510c0..779df763a85d 100644 --- a/audio/lame/files/patch-aa +++ b/audio/lame/files/patch-aa @@ -13,7 +13,7 @@ ########################################################################## ifeq ($(UNAME),FreeBSD) # remove if you do not have GTK or do not want the GTK frame analyzer -+ifndef NO_X11 ++ifndef WITHOUT_X11 GTK = -DHAVEGTK `gtk12-config --cflags` GTKLIBS = `gtk12-config --libs` +endif |