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 /japanese/kterm16c | |
parent | d12f14432cc492205cefb505a3c1320dd0f4e31a (diff) |
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 'japanese/kterm16c')
-rw-r--r-- | japanese/kterm16c/Makefile | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/japanese/kterm16c/Makefile b/japanese/kterm16c/Makefile index cbc65266bcd9..7bbfd9951abb 100644 --- a/japanese/kterm16c/Makefile +++ b/japanese/kterm16c/Makefile @@ -43,27 +43,22 @@ post-extract: .if !defined(PACKAGE_BUILDING) -.if defined(USE_XAW3DLIB) && defined(USE_NEXTAWLIB) -.if (${USE_XAW3DLIB} == "YES") && (${USE_NEXTAWLIB} == "YES") +.if defined(WITH_XAW3DLIB) && defined(WITH_NEXTAWLIB) .BEGIN: - @${ECHO} "Error: \$${USE_XAW3DLIB} and \$${USE_NEXTAWLIB} cannot be specified simultaneously!" + @${ECHO} "Error: \$${WITH_XAW3DLIB} and \$${WITH_NEXTAWLIB} cannot be specified simultaneously!" @${FALSE} -.endif -.elif defined(USE_XAW3DLIB) -.if (${USE_XAW3DLIB} == "YES") +.elif defined(WITH_XAW3DLIB) LIB_DEPENDS+= Xaw3d.6:${PORTSDIR}/x11-toolkits/Xaw3d post-patch: @${ECHO_MSG} "===> Applying Xaw3d scrollbar patch" @${PATCH} ${PATCH_ARGS} < ${FILESDIR}/patch-Xaw3d -.endif -.elif defined(USE_NEXTAWLIB) -.if (${USE_NEXTAWLIB} == "YES") +.elif defined(WITH_NEXTAWLIB) LIB_DEPENDS+= neXtaw.6:${PORTSDIR}/x11-toolkits/neXtaw post-patch: @${ECHO_MSG} "===> Applying neXtaw scrollbar patch" @${PATCH} ${PATCH_ARGS} < ${FILESDIR}/patch-neXtaw .endif -.endif + .endif do-install: |