diff options
author | Karl Trygve Kalleberg <karltk@gentoo.org> | 2002-01-30 18:08:27 +0000 |
---|---|---|
committer | Karl Trygve Kalleberg <karltk@gentoo.org> | 2002-01-30 18:08:27 +0000 |
commit | a8a29ae2c7007a0672576654d94df8656059c2b0 (patch) | |
tree | 6275adc4652c8cceda803a2184f62466a7f65bda /dev-lang/swig | |
parent | Superceded by 0.8.7 (diff) | |
download | gentoo-2-a8a29ae2c7007a0672576654d94df8656059c2b0.tar.gz gentoo-2-a8a29ae2c7007a0672576654d94df8656059c2b0.tar.bz2 gentoo-2-a8a29ae2c7007a0672576654d94df8656059c2b0.zip |
Already added
Diffstat (limited to 'dev-lang/swig')
-rw-r--r-- | dev-lang/swig/files/digest-swig-1.3_alpha5-r2 | 1 | ||||
-rw-r--r-- | dev-lang/swig/swig-1.3_alpha5-r2.ebuild | 65 |
2 files changed, 0 insertions, 66 deletions
diff --git a/dev-lang/swig/files/digest-swig-1.3_alpha5-r2 b/dev-lang/swig/files/digest-swig-1.3_alpha5-r2 deleted file mode 100644 index ac1da438c6ff..000000000000 --- a/dev-lang/swig/files/digest-swig-1.3_alpha5-r2 +++ /dev/null @@ -1 +0,0 @@ -MD5 96249f9614ae31d328661d0e3d9cd615 swig1.3a5.tar.gz 602112 diff --git a/dev-lang/swig/swig-1.3_alpha5-r2.ebuild b/dev-lang/swig/swig-1.3_alpha5-r2.ebuild deleted file mode 100644 index cc961647b8e7..000000000000 --- a/dev-lang/swig/swig-1.3_alpha5-r2.ebuild +++ /dev/null @@ -1,65 +0,0 @@ -# Copyright 1999-2000 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# Author Achim Gottinger <achim@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/dev-lang/swig/swig-1.3_alpha5-r2.ebuild,v 1.3 2001/11/10 11:31:53 hallski Exp $ - -P=swig1.3a5 -S=${WORKDIR}/SWIG1.3a5 -DESCRIPTION="Simplified wrapper and interface generator" -SRC_URI="http://download.sourceforge.net/swig/${P}.tar.gz" -HOMEPAGE="http://www.swig.org" - -DEPEND="virtual/glibc >=sys-devel/gcc-2.95.2 - python? ( >=dev-lang/python-2.0 ) - java? ( >=dev-lang/jdk-1.3 ) - ruby? ( >=dev-lang/ruby-1.6.1 ) - guile? ( >=dev-util/guile-1.4 ) - tcltk? ( >=dev-lang/tcl-tk-8.4.2 ) - perl? ( >=sys-devel/perl-5.6.1 )" - -src_compile() { - local myconf - - if [ "`use python`" ] ; then - myconf="--with-py" - else - myconf="--without-py" - fi - if [ "`use java`" ] ; then - myconf="$myconf --with-java" - else - myconf="$myconf --without-java" - fi - if [ -z "`use ruby`" ] ; then - myconf="$myconf --without-ruby" - fi - if [ "`use guile`" ] ; then - myconf="$myconf --with-guile" - else - myconf="$myconf --without-guile" - fi - if [ "`use tcltk`" ] ; then - myconf="$myconf --with-tcl --with-tcllib=/usr/lib/tcl-8.4" - else - myconf="$myconf --without-tcltk" - fi - if [ "`use perl`" ] - then - myconf="$myconf --with-perl" - else - myconf="$myconf --without-perl" - fi - - unset CXXFLAGS - unset CFLAGS - ./configure --host=${CHOST} \ - --prefix=/usr \ - --with-doc=html \ - $myconf || die - - make || die -} - -src_install () { - make prefix=${D}/usr install || die -} |