81cd9d5949
can't load library 'crtend.o' when running vim; thanks drahn@ and Marc Matteo <marcm@lectroid.net>
118 lines
3.3 KiB
Makefile
118 lines
3.3 KiB
Makefile
# $OpenBSD: Makefile,v 1.57 2002/07/31 15:52:33 lebel Exp $
|
|
|
|
COMMENT= "vi clone, many additional features"
|
|
COMMENT-lang= "vi clone, NLS subpackage"
|
|
|
|
DISTNAME= vim-6.1
|
|
REVISION= 141
|
|
VERSION= 6.1.${REVISION}
|
|
PKGNAME= vim-${VERSION}
|
|
CATEGORIES= editors
|
|
MASTER_SITES= ftp://ftp.vim.org/pub/vim/unix/ \
|
|
ftp://ftp.home.vim.org/pub/vim/unix/ \
|
|
ftp://ftp.berlin.de.vim.org/misc/editors/vim/unix/ \
|
|
ftp://ftp.is.co.za/applications/editors/vim/unix/ \
|
|
ftp://ftp.progsoc.uts.edu.au/pub/vim/unix/
|
|
MASTER_SITES0= ${MASTER_SITES:S/unix/patches/}
|
|
MASTER_SITES1= ${MASTER_SITES:S/unix/extra/}
|
|
DISTFILES= ${DISTNAME}.tar.bz2 \
|
|
${DISTNAME}-extra.tar.gz:1 \
|
|
${DISTNAME}-lang.tar.gz:1
|
|
DIST_SUBDIR= vim6
|
|
|
|
HOMEPAGE= http://www.vim.org/
|
|
|
|
MAINTAINER= David Lebel <lebel@openbsd.org>
|
|
|
|
PATCHFILES= 6.1.1-100.gz:0
|
|
_patches!= jot -w%03d - 101 ${REVISION} 1
|
|
.for p in ${_patches}
|
|
PATCHFILES+= 6.1.${p}:0
|
|
.endfor
|
|
|
|
# allow vim to build on m68k and vax
|
|
.if (${MACHINE_ARCH} == "m68k")
|
|
PATCH_LIST= patch-* sup-m68k-*
|
|
.elif (${MACHINE_ARCH} == "vax")
|
|
PATCH_LIST= patch-* sup-vax-*
|
|
.endif
|
|
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MODULES= gettext iconv
|
|
|
|
MULTI_PACKAGES= -lang
|
|
SUBPACKAGE?=
|
|
.if defined(PACKAGING) && ${SUBPACKAGE} == "-lang"
|
|
. for i in ${FLAVOR:L}
|
|
_flavor:=${_flavor},$i
|
|
. endfor
|
|
RUN_DEPENDS=::editors/vim/stable${_flavor}
|
|
.endif
|
|
|
|
.for i in ${MULTI_PACKAGES}
|
|
PKGNAME$i= vim$i-${VERSION}
|
|
.endfor
|
|
|
|
FLAVORS= huge gtk athena motif no_x11 perl python
|
|
FLAVOR?= gtk
|
|
|
|
CONFIGURE_STYLE= gnu
|
|
CONFIGURE_ARGS+=--with-tlib="curses" --enable-multibyte
|
|
|
|
.if ${FLAVOR:L:Mhuge}
|
|
CONFIGURE_ARGS+=--with-features=huge
|
|
.endif
|
|
|
|
.if ${FLAVOR:L:Mperl}
|
|
CONFIGURE_ARGS+=--enable-perlinterp
|
|
.endif
|
|
|
|
.if ${FLAVOR:L:Mpython}
|
|
PYTHON_VER= 2.2
|
|
CONFIGURE_ENV+= vi_cv_path_python=${LOCALBASE}/bin/python${PYTHON_VER}
|
|
CONFIGURE_ARGS+=--enable-pythoninterp \
|
|
--with-python-config-dir=${LOCALBASE}/lib/python${PYTHON_VER}/config
|
|
LIB_DEPENDS+= python${PYTHON_VER}.0.0:python-${PYTHON_VER}*:lang/python/${PYTHON_VER}
|
|
.endif
|
|
|
|
.if ${FLAVOR:L:Mno_x11} && \
|
|
!${FLAVOR:L:Mgtk} && !${FLAVOR:L:Mmotif} && !${FLAVOR:L:Mathena}
|
|
CONFIGURE_ARGS+=--disable-gui --without-x
|
|
.elif ${FLAVOR:L:Mmotif} && \
|
|
!${FLAVOR:L:Mgtk} && !${FLAVOR:L:Mno_x11} && !${FLAVOR:L:Mathena}
|
|
CONFIGURE_ARGS+=--enable-gui="motif" --with-x --enable-fontset --enable-xim
|
|
CONFIGURE_ENV+= MOTIFHOME=${X11BASE}
|
|
USE_MOTIF=any
|
|
.elif ${FLAVOR:L:Mathena} && \
|
|
!${FLAVOR:L:Mgtk} && !${FLAVOR:L:Mno_x11} && !${FLAVOR:L:Mmotif}
|
|
CONFIGURE_ARGS+=--enable-gui="athena" --with-x --enable-fontset --enable-xim
|
|
.elif ${FLAVOR:L:Mgtk} && \
|
|
!${FLAVOR:L:Mmotif} && !${FLAVOR:L:Mno_x11} && !${FLAVOR:L:Mathena}
|
|
LIB_DEPENDS+= gtk.1.2,gdk.1.2::x11/gtk+
|
|
CONFIGURE_ARGS+=--enable-gui="gtk" --with-x --enable-fontset --enable-xim
|
|
.else
|
|
ERRORS+="Fatal: You must select one GUI interface: no_x11, gtk, athena or motif"
|
|
.endif
|
|
|
|
WRKDIST= ${WRKDIR}/vim61
|
|
WRKSRC= ${WRKDIST}/src
|
|
|
|
SUBST_VARS= VERSION
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
# don't try to regenerate the configure script. Works around the fact that
|
|
# auto/configure.in is newer than auto/configure.
|
|
post-patch:
|
|
touch ${WRKBUILD}/auto/configure
|
|
# link.sh messes up the final executables when linking under ELF
|
|
.if ${ELF_TOOLCHAIN} == yes
|
|
touch ${WRKBUILD}/auto/link.sed
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|