OpenPKG CVS Repository
http://cvs.openpkg.org/
____________________________________________________________________________
Server: cvs.openpkg.org Name: Ralf S. Engelschall
Root: /v/openpkg/cvs Email: [EMAIL PROTECTED]
Module: openpkg-src Date: 25-Mar-2005 17:40:21
Branch: HEAD Handle: 2005032516402000
Modified files:
openpkg-src/vim vim.spec
Log:
fix perl and python interpreter support; add ruby and tcl interpreter
support, too.
Summary:
Revision Changes Path
1.375 +18 -2 openpkg-src/vim/vim.spec
____________________________________________________________________________
patch -p0 <<'@@ .'
Index: openpkg-src/vim/vim.spec
============================================================================
$ cvs diff -u -r1.374 -r1.375 vim.spec
--- openpkg-src/vim/vim.spec 25 Mar 2005 08:39:24 -0000 1.374
+++ openpkg-src/vim/vim.spec 25 Mar 2005 16:40:20 -0000 1.375
@@ -46,6 +46,8 @@
%option with_multibyte no
%option with_perl no
%option with_python no
+%option with_tcl no
+%option with_ruby no
# list of sources
Source0: ftp://ftp.vim.org/pub/vim/unix/vim-%{V_vl}-src1.tar.gz
@@ -140,6 +142,14 @@
BuildPreReq: python
PreReq: python
%endif
+%if "%{with_tcl}" == "yes"
+BuildPreReq: tcl
+PreReq: tcl
+%endif
+%if "%{with_ruby}" == "yes"
+BuildPreReq: ruby
+PreReq: ruby
+%endif
AutoReq: no
AutoReqProv: no
@@ -250,10 +260,16 @@
--enable-multibyte \
%endif
%if "%{with_perl}" == "yes"
- --enable-perlinterp=%{l_prefix}/bin/perl \
+ --enable-perlinterp \
%endif
%if "%{with_python}" == "yes"
- --enable-pythoninterp=%{l_prefix}/bin/python \
+ --enable-pythoninterp \
+%endif
+%if "%{with_tcl}" == "yes"
+ --enable-tclinterp \
+%endif
+%if "%{with_ruby}" == "yes"
+ --enable-rubyinterp \
%endif
--disable-nls
%{l_shtool} subst \
@@ .
______________________________________________________________________
The OpenPKG Project www.openpkg.org
CVS Repository Commit List [email protected]