1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-29 21:39:24 +00:00
freebsd-ports/editors/vim/Makefile
David E. O'Brien e6ca1f4e0b I shouldn't have been removing `gvim' from the non-GUI PLIST.
Also make the gvim link relative rather than absolute, in case someone
specifies a different prefix when installing the package.  Note there are
some burned in paths in the vim binary, but there is no reason to totally
make this not work, when it could somewhat.
2001-02-15 12:12:43 +00:00

81 lines
2.6 KiB
Makefile

# ex:ts=8
# Ports collection makefile for: vim
# Date created: Sat June 29, 1996
# Whom: David O'Brien (obrien@cs.ucdavis.edu)
#
# $FreeBSD$
#
PORTNAME?= vim
PORTVERSION= 6.0u
PORTREVISION= 0
CATEGORIES?= editors
MASTER_SITES= ftp://nuxi.ucdavis.edu/pub/vim/unreleased/unix/ \
ftp://ftp.nuxi.com/pub/vim/unreleased/unix/ \
ftp://ftp.freesoftware.com/pub/vim/unreleased/unix/ \
ftp://ftp.vim.org/pub/vim/unreleased/unix/ \
ftp://ftp.is.co.za/applications/editors/unreleased/vim/ \
ftp://ftp.prz.tu-berlin.de/pub/unix/editors/vim/unreleased/unix/ \
ftp://ftp.progsoc.uts.edu.au/pub/vim/unreleased/unix/
DISTNAME= vim-${PORTVERSION}
DISTFILES= ${DISTNAME}-src${EXTRACT_SUFX} ${DISTNAME}-rt${EXTRACT_SUFX}
#PATCH_SITES= ${MASTER_SITES:S/unix/patches/}
#.for p in 01
#PATCHFILES+= 6.0.0${p}
#.endfor
MAINTAINER= obrien@FreeBSD.org
.if defined(PACKAGE_BUILDING) && !defined(LITE)
BUILD_DEPENDS= tclsh8.0:${PORTSDIR}/lang/tcl80
LIB_DEPENDS= tcl80.1:${PORTSDIR}/lang/tcl80
USE_PERL5= yes
USE_PYTHON= yes
.endif
DIST_SUBDIR= vim
WRKSRC= ${WRKDIR}/vim${PORTVERSION:S/.//g}/src
PATCH_DIST_ARGS= -d ${WRKDIR}/${PORTNAME}${PORTVERSION:S/.//g} --forward --quiet -E ${PATCH_DIST_STRIP}
MAKE_ARGS+= CONF_ARGS="--prefix=${PREFIX} --with-tlib=termlib"
ALL_TARGET= #
PLIST_SUB= VIM_VER=${DISTNAME:S/-//:S/.//}
MAN1= vim.1 vimtutor.1 xxd.1
MLINKS= vim.1 rvim.1 vim.1 rview.1
.include <bsd.port.pre.mk>
.if !defined(LITE)
MLINKS+= vim.1 gvim.1 vim.1 gview.1 vim.1 rgvim.1 vim.1 rgview.1
MAKE_ARGS+= X_LIBS=-lxpg4 CONF_OPT_MAX="--enable-max-features"
.if defined(WITH_ATHENA)
MAKE_ARGS+= CONF_OPT_GUI="--enable-gui=athena --enable-multibyte --enable-fontset --enable-multibyte --enable-xim"
#MAKE_ARGS+= CONF_OPT_GUI="--enable-gui=yes" ${I18N}
.elif defined(WITH_GTK)
MAKE_ARGS+= CONF_OPT_GUI="--enable-gui=gtk --enable-multibyte --enable-fontset --enable-xim"
MAKE_ARGS+= CONF_OPT_PERL="--enable-pythoninterp"
MAKE_ARGS+= X_LIBS="$(X_LIBS) -lXt"
.else
USE_MOTIF= yes
MAKE_ARGS+= CONF_OPT_GUI="--enable-gui=motif --with-motif-lib=\"${MOTIFLIB}\" --enable-multibyte --enable-fontset --enable-multibyte --enable-xim" MOTIFHOME=${X11BASE}
.endif
.if defined(PACKAGE_BUILDING)
MAKE_ARGS+= CONF_OPT_PERL="--enable-perlinterp --enable-pythoninterp --enable-tclinterp --enable-cscope"
.endif
.else # LITE
MAKE_ARGS+= CONF_OPT_GUI="--enable-gui=no --without-x"
MAKE_ARGS+= CONF_OPT_PERL="--disable-perlinterp --disable-pythoninterp --disable-tclinterp"
.endif # LITE
pre-build:
@(cd ${WRKSRC}; ${MAKE} distclean)
post-install:
[ -e ${PREFIX}/bin/gvim ] || (cd ${PREFIX}/bin ; ${LN} -s vim gvim)
.include <bsd.port.post.mk>