summaryrefslogtreecommitdiff
path: root/editors/vim5/Makefile
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>1998-09-03 11:35:12 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>1998-09-03 11:35:12 +0000
commit22ab2b8f0635e2dcf717423d5fed5f9936ebe9a4 (patch)
tree62f7a343d151ed70e7b6a39c3a54d82f64ac6fb7 /editors/vim5/Makefile
parentegcs 1.1 HAS BEEN RELEASED!! (diff)
upgrade to version 5.3
Notes
Notes: svn path=/head/; revision=12994
Diffstat (limited to 'editors/vim5/Makefile')
-rw-r--r--editors/vim5/Makefile23
1 files changed, 19 insertions, 4 deletions
diff --git a/editors/vim5/Makefile b/editors/vim5/Makefile
index 452e28cc7544..2c302251ef03 100644
--- a/editors/vim5/Makefile
+++ b/editors/vim5/Makefile
@@ -4,26 +4,36 @@
# Date created: Sat June 29, 1996
# Whom: David O'Brien (obrien@cs.ucdavis.edu)
#
-# $Id: Makefile,v 1.23 1998/03/22 22:13:58 obrien Exp $
+# $Id: Makefile,v 1.37 1998/09/03 11:29:35 obrien Exp $
#
-DISTNAME= vim-5.1
+DISTNAME= vim-5.3
CATEGORIES= editors
MASTER_SITES= ftp://nuxi.ucdavis.edu/pub/vim/unix/ \
ftp://ftp.nuxi.com/pub/vim/unix/ \
- ftp://ftp.oce.nl/pub/vim/unix/ \
+ ftp://ftp.oce.nl/pub/misc/vim/unix/ \
ftp://ftp.prz.tu-berlin.de/pub/unix/editors/vim/unix/ \
ftp://ftp.is.co.za/applications/editors/vim/ \
ftp://ftp.progsoc.uts.edu.au/pub/vim/
+DISTFILES= ${DISTNAME}-src${EXTRACT_SUFX} ${DISTNAME}-rt${EXTRACT_SUFX}
MAINTAINER= obrien@FreeBSD.org
+.if defined(BATCH)
+USE_PERL5= yes
+BUILD_DEPENDS= tclsh8.0:${PORTSDIR}/lang/tcl80 \
+ python:${PORTSDIR}/lang/python
+LIB_DEPENDS= tcl80\\.1\\.2:${PORTSDIR}/lang/tcl80
+RUN_DEPENDS= python:${PORTSDIR}/lang/python
+.endif
+
WRKSRC= ${WRKDIR}/${DISTNAME}/src
PATCH_DIST_ARGS= -d ${WRKDIR}/${DISTNAME} --forward --quiet -E ${PATCH_DIST_STRIP}
-MAKE_FLAGS= CONF_ARGS=--prefix=${PREFIX} -f
+MAKE_FLAGS= CONF_ARGS="--prefix=${PREFIX} --enable-max-features" -f
ALL_TARGET= #
MAN1= vim.1 xxd.1 ctags.1
+
.if defined(HAVE_MOTIF)
REQUIRES_MOTIF= yes
MAKE_FLAGS:= CONF_OPT_GUI="--enable-gui=motif" MOTIFHOME=${X11BASE} ${MAKE_FLAGS}
@@ -31,11 +41,16 @@ MAKE_FLAGS:= CONF_OPT_GUI="--enable-gui=motif" MOTIFHOME=${X11BASE} ${MAKE_FLAGS
MAKE_FLAGS:= CONF_OPT_GUI="--enable-gui=yes" ${MAKE_FLAGS}
.endif
+.if defined(BATCH)
+MAKE_FLAGS:= CONF_OPT_PERL="--enable-perlinterp --enable-pythoninterp --enable-tclinterp" ${MAKE_FLAGS}
+.endif
+
pre-build:
@(cd ${WRKSRC}; ${MAKE} distclean)
post-install:
[ -e ${PREFIX}/bin/gvim ] || /bin/ln -s ${PREFIX}/bin/vim ${PREFIX}/bin/gvim
+ @${RM} -f ${PREFIX}/man/man1/etags.1
@/bin/ln -sf ${PREFIX}/man/man1/ctags.1.gz ${PREFIX}/man/man1/etags.1.gz
.include <bsd.port.mk>