diff options
author | reg <reg@FreeBSD.org> | 2000-04-17 00:19:02 +0000 |
---|---|---|
committer | reg <reg@FreeBSD.org> | 2000-04-17 00:19:02 +0000 |
commit | d22cbcc0186bfcde72d3058c3d06d1032bb7157e (patch) | |
tree | efb5227e2fc359da16edf2ca8a5ca4744a25bc3e /sysutils/ipsc/Makefile | |
parent | 8b766534122d71052c9f8e5a0752944edf0450f8 (diff) | |
download | FreeBSD-ports-d22cbcc0186bfcde72d3058c3d06d1032bb7157e.zip FreeBSD-ports-d22cbcc0186bfcde72d3058c3d06d1032bb7157e.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 'sysutils/ipsc/Makefile')
-rw-r--r-- | sysutils/ipsc/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sysutils/ipsc/Makefile b/sysutils/ipsc/Makefile index 2107ae9..646f9c7 100644 --- a/sysutils/ipsc/Makefile +++ b/sysutils/ipsc/Makefile @@ -14,12 +14,12 @@ DISTNAME= ${PKGNAME}-src MAINTAINER= jeremy@external.org BUILD_DEPENDS= ${WRKDIRPREFIX}${PORTSDIR}/sysutils/prips/work/prips/prips.o:${PORTSDIR}/sysutils/prips:build -.if defined(USE_GNOME) +.if defined(WITH_GNOME) LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 \ gnome.3:${PORTSDIR}/x11/gnomelibs .endif -.if defined(USE_GNOME) +.if defined(WITH_GNOME) USE_XLIB= YES .endif WRKSRC= ${WRKDIR}/ipsc/src @@ -29,7 +29,7 @@ post-extract: ${WRKDIR}/prips pre-build: -.if defined(USE_GNOME) +.if defined(WITH_GNOME) PLIST= ${PKGDIR}/PLIST.gnome ALL_TARGET= all .else @@ -37,15 +37,15 @@ ALL_TARGET= ipsc .endif post-build: -.if defined(USE_GNOME) +.if defined(WITH_GNOME) @${ECHO_MSG} "" - @${ECHO_MSG} "Don't forget to define USE_GNOME when installing" + @${ECHO_MSG} "Don't forget to define WITH_GNOME when installing" @${ECHO_MSG} "" .endif do-install: @${INSTALL_PROGRAM} ${WRKSRC}/ipsc ${PREFIX}/bin -.if defined(USE_GNOME) +.if defined(WITH_GNOME) @${INSTALL_PROGRAM} ${WRKSRC}/gipsc ${PREFIX}/bin .endif |