summaryrefslogtreecommitdiff
path: root/devel/tclreadline
diff options
context:
space:
mode:
authorJeremy Lea <reg@FreeBSD.org>2000-04-17 00:18:05 +0000
committerJeremy Lea <reg@FreeBSD.org>2000-04-17 00:18:05 +0000
commit877b8a533b44bb6324ebbaf65cd80a60d1572003 (patch)
treee1a018208ceade04ca56a70c5184978cac51853e /devel/tclreadline
parentReplace AWOL maintainer with an active one (Assar Westerlund <assar@stacken.k... (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 'devel/tclreadline')
-rw-r--r--devel/tclreadline/Makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/devel/tclreadline/Makefile b/devel/tclreadline/Makefile
index 0181694e9ee4..6b150e3c1d06 100644
--- a/devel/tclreadline/Makefile
+++ b/devel/tclreadline/Makefile
@@ -18,21 +18,21 @@ MANN= tclreadline.n
.include <bsd.port.pre.mk>
-.if (!defined(USE_TCL80) && !defined(USE_TCL82))
+.if (!defined(WITH_TCL80) && !defined(WITH_TCL82))
.if exists(${PREFIX}/bin/tclsh8.0)
-USE_TCL80= YES
+WITH_TCL80= yes
.else
-USE_TCL82= YES
+WITH_TCL82= yes
.endif
.endif
-.if defined(USE_TCL80)
+.if defined(WITH_TCL80)
LIB_DEPENDS= tcl80.1:${PORTSDIR}/lang/tcl80
CONFIGURE_ARGS= --with-tcl=${PREFIX}/lib/tcl8.0 --with-tcl-includes=${PREFIX}/include/tcl8.0
TCLVERMSG= "Building for Tcl 8.0"
.endif
-.if defined(USE_TCL82)
+.if defined(WITH_TCL82)
LIB_DEPENDS= tcl82.1:${PORTSDIR}/lang/tcl82
CONFIGURE_ARGS= --with-tcl=${PREFIX}/lib/tcl8.2 --with-tcl-includes=${PREFIX}/include/tcl8.2
TCLVERMSG= "Building for Tcl 8.2"
@@ -40,7 +40,7 @@ TCLVERMSG= "Building for Tcl 8.2"
pre-fetch:
@${ECHO} ${TCLVERMSG}
- @${ECHO} "Define USE_TCL80, or USE_TCL82"
+ @${ECHO} "Define WITH_TCL80, or WITH_TCL82"
@${ECHO} "To compile against a different version of TCL"
.include <bsd.port.post.mk>