diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 2005-10-30 07:13:12 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 2005-10-30 07:13:12 +0000 |
commit | d723f964955c9e60ef95b137302a6b40c904c20c (patch) | |
tree | e454364698ff3b0c19d9180f7edf117ee258af9b /editors/vim5 | |
parent | Find new distfile location. (diff) |
Update to use tcl 8.4.
Notes
Notes:
svn path=/head/; revision=146722
Diffstat (limited to 'editors/vim5')
-rw-r--r-- | editors/vim5/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/editors/vim5/Makefile b/editors/vim5/Makefile index 61611adfe548..2cffb909447f 100644 --- a/editors/vim5/Makefile +++ b/editors/vim5/Makefile @@ -22,8 +22,7 @@ MAINTAINER?= obrien@FreeBSD.org COMMENT= Vi "workalike", with many additional features .if defined(PACKAGE_BUILDING) && !defined(LITE) -BUILD_DEPENDS= tclsh8.0:${PORTSDIR}/lang/tcl80 -LIB_DEPENDS= tcl80.1:${PORTSDIR}/lang/tcl80 +WITH_TCL= yes #USE_PERL5= yes .endif @@ -71,6 +70,12 @@ MAKE_ARGS+= CONF_OPT_GUI="--enable-gui=no --without-x --enable-multibyte" MAKE_ARGS+= CONF_OPT_PERL="--disable-perlinterp --disable-pythoninterp --disable-tclinterp" .endif # LITE +.if defined(WITH_TCL) +BUILD_DEPENDS= tclsh8.4:${PORTSDIR}/lang/tcl84 +LIB_DEPENDS= tcl84.1:${PORTSDIR}/lang/tcl84 +MAKE_ARGS+= CONF_OPT_TCL="--enable-tclinterp --with-tclsh=${LOCALBASE}/bin/tclsh8.4" +.endif + .include <bsd.port.pre.mk> pre-build: |