aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2013-07-01 05:56:26 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2013-07-01 05:56:26 +0000
commit0d44442a976a62359778f62920979913e1d55afa (patch)
treedd16a015f16b4ff50b66d9cfc74475366dd7adc8
parent4cb08bd677532c894c1f92d41f38159a98c85b10 (diff)
downloadports-0d44442a976a62359778f62920979913e1d55afa.tar.gz
ports-0d44442a976a62359778f62920979913e1d55afa.zip
Make vim-lite sane again by default
Always include bsd.port.options.mk which is necessary for properly handling of DOCS/NLS _even_ without options Remove specific default for PACKAGE_BUILDING settings which are not needed Keep maintianer preference for not having options at all by default.
Notes
Notes: svn path=/head/; revision=322114
-rw-r--r--editors/vim/Makefile9
1 files changed, 5 insertions, 4 deletions
diff --git a/editors/vim/Makefile b/editors/vim/Makefile
index 9ee4db3be550..19e0ed969833 100644
--- a/editors/vim/Makefile
+++ b/editors/vim/Makefile
@@ -43,19 +43,20 @@ COMMENT?= Vi "workalike", with many additional features
SLAVEDIRS= editors/vim-lite
-.if defined(WITH_OPTIONS) || defined(WITH_VIM_OPTIONS) || !defined(LITE) && defined(PACKAGE_BUILDING)
+.if !defined(LITE)
+.if defined(WITH_OPTIONS) || defined(WITH_VIM_OPTIONS)
.include "${.CURDIR}/../vim/options"
-. if !defined(LITE) && defined(PACKAGE_BUILDING)
OPTIONS_DEFAULT+= CSCOPE EXUBERANT_CTAGS PERL PYTHON RUBY \
TCL LUA X11 GTK2
-. endif
-.include <bsd.port.options.mk>
.else
VIM_PORT_SCRIPT_LANGS?= LUA PERL PYTHON RUBY TCL
VIM_PORT_OPTIONS= CSCOPE DOCS EXAMPLES EXUBERANT_CTAGS \
${VIM_PORT_SCRIPT_LANGS}
PORT_OPTIONS?= ${VIM_PORT_OPTIONS}
.endif
+.endif
+
+.include <bsd.port.options.mk>
CONFLICTS= vim6* vim*-gnome libsysinfo
.if defined(LITE)