diff options
author | obrien <obrien@FreeBSD.org> | 1997-05-25 02:59:06 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 1997-05-25 02:59:06 +0000 |
commit | 4d89de6ea681d3162eee17ea8584e7a8b122611c (patch) | |
tree | 01650469784fa26461652de6351ffd88a1d86d1f /editors/vim5/Makefile | |
parent | 6153bd3da700c0c0e01973fee0a601fd286f19cc (diff) | |
download | FreeBSD-ports-4d89de6ea681d3162eee17ea8584e7a8b122611c.zip FreeBSD-ports-4d89de6ea681d3162eee17ea8584e7a8b122611c.tar.gz |
Beta version of Vim 5.0.
Vim 5.0 beta is still under development (hasn't really reached a final beta
stage). Until that point, I don't want to change the stable vim-4.6 port.
Note that Vim5.0 has syntax coloring and Perl 5.004 support.
Diffstat (limited to 'editors/vim5/Makefile')
-rw-r--r-- | editors/vim5/Makefile | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/editors/vim5/Makefile b/editors/vim5/Makefile new file mode 100644 index 0000000..5169d23 --- /dev/null +++ b/editors/vim5/Makefile @@ -0,0 +1,40 @@ +# ex:ts=8 +# New ports collection makefile for: vim +# Version required: 5.x +# Date created: Sat June 29, 1996 +# Whom: David O'Brien (obrien@cs.ucdavis.edu) +# +# $Id: Makefile,v 1.7 1997/03/27 05:42:13 obrien Exp $ +# + +DISTNAME= vim-5.0h +CATEGORIES= editors +MASTER_SITES= ftp://nuxi.ucdavis.edu/pub/vim/beta-test/unix/ \ + ftp://ftp.nuxi.com/pub/vim/beta-test/unix/ \ + ftp://ftp.oce.nl/pub/misc/vim/beta-test/unix/ \ + ftp://ftp.prz.tu-berlin.de/pub/unix/editors/vim/beta-test/unix/ \ + ftp://ftp.is.co.za/applications/editors/beta-test/vim/ \ + ftp://ftp.progsoc.uts.edu.au/pub/beta-test/vim/ + +MAINTAINER= obrien@FreeBSD.org + +WRKSRC= ${WRKDIR}/${DISTNAME}/src +USE_GMAKE= yes +ALL_TARGET= +MAN1= vim.1 xxd.1 ctags.1 etags.1 + +.if defined(HAVE_MOTIF) +REQUIRES_MOTIF= yes +MAKE_FLAGS+= CONF_OPT_GUI="--enable-gui=motif" MOTIFHOME=${X11BASE} -f +.else +MAKE_FLAGS+= CONF_OPT_GUI="--enable-gui=yes" -f +.endif + +pre-build: + @(cd ${WRKSRC}; ${GMAKE} distclean) + +post-install: + [ -e ${PREFIX}/bin/gvim ] || /bin/ln -s ${PREFIX}/bin/vim ${PREFIX}/bin/gvim + + +.include <bsd.port.mk> |