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 /audio/lame/Makefile | |
parent | d12f14432cc492205cefb505a3c1320dd0f4e31a (diff) | |
download | ports-877b8a533b44bb6324ebbaf65cd80a60d1572003.tar.gz 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
Notes
Notes:
svn path=/head/; revision=27679
Diffstat (limited to 'audio/lame/Makefile')
-rw-r--r-- | audio/lame/Makefile | 4 |
1 files changed, 2 insertions, 2 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 |