diff options
author | obrien <obrien@FreeBSD.org> | 2002-02-05 17:49:36 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2002-02-05 17:49:36 +0000 |
commit | d2a26094c6ace6bfdd72b77bde7176692e9233c1 (patch) | |
tree | 18bb7a834cd74c3a500b9cdc656ea09af6772142 | |
parent | a35337a988520f38b84e57fac63b025d5d97bc6e (diff) | |
download | FreeBSD-ports-d2a26094c6ace6bfdd72b77bde7176692e9233c1.zip FreeBSD-ports-d2a26094c6ace6bfdd72b77bde7176692e9233c1.tar.gz |
Add the ability to select any of the interpreters and the GNOME GUI.
This adds the knobs WITH_PYTHON, WITH_PERL, WITH_TCL, WITH_RUBY,
and WITH_GNOME :-(
Submitted by: Matthew Hawkins <matthew@topic.com.au>
(reworked by me)
-rw-r--r-- | editors/vim/Makefile | 46 |
1 files changed, 34 insertions, 12 deletions
diff --git a/editors/vim/Makefile b/editors/vim/Makefile index 68cad4f..5ea59d3 100644 --- a/editors/vim/Makefile +++ b/editors/vim/Makefile @@ -37,10 +37,10 @@ MAINTAINER?= obrien@FreeBSD.org SLAVEDIRS= editors/vim-lite .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 +WITH_TCL= yes +WITH_PERL= yes +WITH_PYTHON= yes +WITH_CSCOPE= yes .endif USE_BZIP2= yes @@ -55,13 +55,14 @@ PLIST_SUB= VIM_VER=${DISTNAME:S/-//:S/.//} DATADIR= ${PREFIX}/share/vim/${DISTNAME:S/-//:S/.//} MAN1= evim.1 vim.1 vimdiff.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 \ eview.1 gvimdiff.1 +.endif + +.include <bsd.port.pre.mk> +.if !defined(LITE) MAKE_ARGS+= CONF_OPT_FEAT="--with-features=big" I18N= CONF_OPT_MULTIBYTE="--enable-multibyte --enable-fontset --enable-xim" @@ -74,6 +75,27 @@ RUN_DEPENDS+= cscope:${PORTSDIR}/devel/cscope CSCOPE_ARG= --enable-cscope .endif +.if defined(WITH_PYTHON) +USE_PYTHON= yes +MAKE_ARGS+= CONF_OPT_PYTHON="--enable-pythoninterp" +.endif + +.if defined(WITH_PERL) +USE_PERL5= yes +MAKE_ARGS+= CONF_OPT_PERL="--enable-perlinterp" +.endif + +.if defined(WITH_TCL) +BUILD_DEPENDS= tclsh8.0:${PORTSDIR}/lang/tcl80 +LIB_DEPENDS= tcl80.1:${PORTSDIR}/lang/tcl80 +MAKE_ARGS+= CONF_OPT_TCL="--enable-tclinterp" +.endif + +.if defined(WITH_RUBY) +USE_RUBY= yes +MAKE_ARGS+= CONF_OPT_RUBY="--enable-rubyinterp" +.endif + .if !defined(WITHOUT_X11) # for now default the GUI to the GTK+ one # will be reviewed when the GTK+ 1.{3,4} behemoth is released @@ -87,6 +109,10 @@ MAKE_ARGS+= CONF_OPT_GUI="--enable-gui=athena" ${I18N} USE_GTK= yes MAKE_ARGS+= CONF_OPT_GUI="--enable-gui=gtk --with-gtk-prefix=${X11BASE}" ${I18N} MAKE_ARGS+= X_LIBS="$(X_LIBS) -lXt" +.elif defined(WITH_GNOME) +USE_GNOME= yes +MAKE_ARGS+= CONF_OPT_GUI="--enable-gui=gnome --with-gtk-prefix=${X11BASE}" ${I18N} +MAKE_ARGS+= X_LIBS="$(X_LIBS) -lXt" .elif defined(WITH_MOTIF) USE_MOTIF= yes MAKE_ARGS+= CONF_OPT_GUI="--enable-gui=motif --with-motif-lib=\"${MOTIFLIB}\"" MOTIFHOME=${X11BASE} ${I18N} @@ -95,14 +121,10 @@ MAKE_ARGS+= CONF_OPT_GUI="--enable-gui=motif --with-motif-lib=\"${MOTIFLIB}\"" M MAKE_ARGS+= CONF_OPT_GUI="--enable-gui=no --without-x" ${I18N} .endif # WITHOUT_X11 -.if defined(PACKAGE_BUILDING) -MAKE_ARGS+= CONF_OPT_PERL="--enable-perlinterp --enable-pythoninterp --enable-tclinterp --enable-cscope" -.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" +MAKE_ARGS+= CONF_OPT_PERL="--disable-perlinterp --disable-pythoninterp --disable-tclinterp --disable-rubyinterp" .endif # LITE pre-build: |