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 /audio/aumix | |
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 'audio/aumix')
-rw-r--r-- | audio/aumix/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/audio/aumix/Makefile b/audio/aumix/Makefile index b68ef02..6961c8c 100644 --- a/audio/aumix/Makefile +++ b/audio/aumix/Makefile @@ -17,7 +17,7 @@ MASTER_SITE_SUBDIR= apps/sound/mixers MAINTAINER= cpiazza@FreeBSD.org LIB_DEPENDS= intl.1:${PORTSDIR}/devel/gettext -.if !defined(NO_X11) +.if !defined(WITHOUT_X11) LIB_DEPENDS+= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 GLIB_CONFIG= ${LOCALBASE}/bin/glib12-config @@ -35,12 +35,12 @@ CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ GLIB_CONFIG="${GLIB_CONFIG}" \ GTK_CONFIG="${GTK_CONFIG}" \ LDFLAGS="-L${LOCALBASE}/lib" -.if defined(NO_X11) +.if defined(WITHOUT_X11) CONFIGURE_ARGS+= --without-gtk .else pre-fetch: @${ECHO_MSG} -n "To build this port without X11 (and without the GUI)," - @${ECHO_MSG} " define \"NO_X11\"." + @${ECHO_MSG} " define \"WITHOUT_X11\"." .endif .include <bsd.port.mk> |