mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-05 22:43:24 +00:00
87322138a9
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.
41 lines
1.1 KiB
Makefile
41 lines
1.1 KiB
Makefile
# 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>
|