f8501b421c
I cannot trigger a failure up to MAKE_JOBS=24.
59 lines
1.7 KiB
Text
59 lines
1.7 KiB
Text
# $NetBSD: Makefile.common,v 1.150 2014/09/01 20:28:48 jperkin Exp $
|
|
|
|
# used by editors/vim/Makefile
|
|
# used by editors/vim-gtk/Makefile
|
|
# used by editors/vim-gtk2/Makefile
|
|
# used by editors/vim-lang/Makefile
|
|
# used by editors/vim-motif/Makefile
|
|
# used by editors/vim-xaw/Makefile
|
|
|
|
.include "../../editors/vim-share/version.mk"
|
|
|
|
DISTNAME= vim-${VIM_VERSION}.${VIM_PATCHLEVEL}
|
|
CATEGORIES= editors
|
|
MASTER_SITES= ${MASTER_SITE_LOCAL}
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
MAINTAINER= morr@NetBSD.org
|
|
HOMEPAGE= http://www.vim.org/
|
|
LICENSE= vim-license
|
|
|
|
CONFLICTS+= vim-kde-[0-9]*
|
|
|
|
WRKSRC= ${WRKDIR}/${VIM_SUBDIR}/src
|
|
GNU_CONFIGURE= yes
|
|
|
|
# http://www.netbsd.org/cgi-bin/query-pr-single.pl?number=38710
|
|
CHECK_INTERPRETER_SKIP= share/vim/vim74/tools/vim132
|
|
|
|
.include "options.mk"
|
|
|
|
CONFIGURE_ARGS+= --with-modified-by=${MAINTAINER:Q}
|
|
|
|
# See "configure --help" extra options. These might affect the installed
|
|
# files (and PLIST might not include all files) so use at your own risk!
|
|
CONFIGURE_ARGS+= ${VIM_EXTRA_OPTS}
|
|
CONFIGURE_ARGS+= --enable-multibyte
|
|
CONFIGURE_ARGS+= --enable-cscope
|
|
|
|
PATCH_ARGS= -d ${WRKDIR}/${VIM_SUBDIR} --forward --quiet \
|
|
-E ${PATCH_STRIP:Q}
|
|
PATCH_DIST_ARGS= -d ${WRKDIR}/${VIM_SUBDIR} --forward --quiet \
|
|
-E ${PATCH_DIST_STRIP:Q}
|
|
PATCHDIR= ${.CURDIR}/../../editors/vim-share/patches
|
|
DISTINFO_FILE?= ${.CURDIR}/../../editors/vim-share/distinfo
|
|
|
|
.if ${OPSYS} == "Darwin" && exists(/Developer/Headers/FlatCarbon)
|
|
BUILDLINK_PASSTHRU_DIRS+= /Developer/Headers/FlatCarbon
|
|
.endif
|
|
|
|
.if empty(PKGNAME:Mvim-share*)
|
|
ALTERNATIVES_SRC= ${.CURDIR}/../../editors/vim-share/ALTERNATIVES
|
|
.else
|
|
ALTERNATIVES_SRC=
|
|
.endif
|
|
|
|
post-patch:
|
|
find ${WRKDIR} -name '*.orig_dist' -exec rm -f {} \;
|