diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 2001-02-16 06:53:46 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 2001-02-16 06:53:46 +0000 |
commit | 7f44992f9ae204853d77857c89e610ed84920515 (patch) | |
tree | 605792600cc38271fd7951505c70572453ff418e /editors | |
parent | 63335a36485bcbb41217251aa82fb93419080ac3 (diff) | |
download | ports-7f44992f9ae204853d77857c89e610ed84920515.tar.gz ports-7f44992f9ae204853d77857c89e610ed84920515.zip |
Notes
Diffstat (limited to 'editors')
-rw-r--r-- | editors/vim-lite/Makefile | 2 | ||||
-rw-r--r-- | editors/vim5/Makefile | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/editors/vim-lite/Makefile b/editors/vim-lite/Makefile index afa63934af00..4385a0ff0119 100644 --- a/editors/vim-lite/Makefile +++ b/editors/vim-lite/Makefile @@ -6,8 +6,6 @@ # $FreeBSD$ # -PORTNAME= vim-lite - LITE= yes MASTERDIR= ${.CURDIR}/../vim5 diff --git a/editors/vim5/Makefile b/editors/vim5/Makefile index 247261cf566a..19a3defdbf2d 100644 --- a/editors/vim5/Makefile +++ b/editors/vim5/Makefile @@ -50,7 +50,7 @@ MLINKS+= vim.1 gvim.1 vim.1 gview.1 vim.1 rgvim.1 vim.1 rgview.1 # Determine if we need xpg4. # No xpg4 in libc below 400020 and 500005 .if ${OSVERSION} < 400020 && ${OSVERSION} < 500005 -LIBS=-lxpg4 +MAKE_ARGS+= LIBS=-lxpg4 .endif .if !defined(LITE) @@ -77,6 +77,7 @@ MAKE_ARGS+= CONF_OPT_PERL="--enable-perlinterp --enable-pythoninterp --enable-tc .endif .else # LITE +PKGNAMESUFFIX= -lite MAKE_ARGS+= CONF_OPT_GUI="--enable-gui=no --without-x --enable-multibyte" MAKE_ARGS+= CONF_OPT_PERL="--disable-perlinterp --disable-pythoninterp --disable-tclinterp" .endif # LITE |