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 /editors/emacs20 | |
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 'editors/emacs20')
-rw-r--r-- | editors/emacs20/Makefile | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/editors/emacs20/Makefile b/editors/emacs20/Makefile index 3640b92..fb51927 100644 --- a/editors/emacs20/Makefile +++ b/editors/emacs20/Makefile @@ -18,7 +18,7 @@ Y2K= http://www.gnu.org/software/year2000.html USE_AUTOCONF= yes USE_GMAKE= yes CONFIGURE_TARGET= ${MACHINE_ARCH}--freebsd -.if !defined(NO_X11) +.if !defined(WITHOUT_X11) CONFIGURE_ARGS= --with-x-toolkit --with-pop USE_XLIB= yes .else @@ -30,16 +30,14 @@ MAN1= emacs.1 etags.1 ctags.1 PLIST_SUB= EMACS_VER=20.6 EMACS_ARCH=${CONFIGURE_TARGET} WRKSRC= ${WRKDIR}/emacs-20.6 -.if defined(USE_XPG4) -.if (${USE_XPG4} == "YES" || ${USE_XPG4} == "yes") +.if defined(WITH_XPG4) CONFIGURE_ARGS+= --with-xpg4 .endif -.endif pre-fetch: -.if !defined(USE_XPG4) +.if !defined(WITH_XPG4) @${ECHO_MSG} "NOTE: You can have international locale library support " - @${ECHO_MSG} "by adding \"USE_XPG4=YES\" to argument of make." + @${ECHO_MSG} "by adding \"WITH_XPG4=yes\" to argument of make." .endif pre-build: |