diff options
Diffstat (limited to 'dev-lang/swig/swig-1.3.10-r1.ebuild')
-rw-r--r-- | dev-lang/swig/swig-1.3.10-r1.ebuild | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/dev-lang/swig/swig-1.3.10-r1.ebuild b/dev-lang/swig/swig-1.3.10-r1.ebuild deleted file mode 100644 index 7d9c6e1d11ca..000000000000 --- a/dev-lang/swig/swig-1.3.10-r1.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/swig/swig-1.3.10-r1.ebuild,v 1.13 2003/09/06 22:27:51 msterret Exp $ - -IUSE="java guile python tcltk ruby perl" - -S=${WORKDIR}/SWIG-${PV} -DESCRIPTION="Simplied Wrapper and Interface Generator" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" -HOMEPAGE="http://www.swig.org" - -DEPEND="virtual/glibc - >=sys-devel/gcc-2.95.2 - python? ( >=dev-lang/python-2.0 ) - java? ( virtual/jdk ) - ruby? ( >=dev-lang/ruby-1.6.1 ) - guile? ( >=dev-util/guile-1.4 ) - tcltk? ( >=dev-lang/tk-8.3 ) - perl? ( >=dev-lang/perl-5.6.1 )" - - -SLOT="0" -LICENSE="as-is" -KEYWORDS="x86 sparc " - -src_compile() { - local myc - - use python && myc="$myc --with-py" || myc="$myc --without-py" - use java && myc="$myc --with-java=$JAVA_HOME --with-javaincl=${JAVA_HOME}/include" || myc="$myc --without-java" - use ruby && myc="$myc --with-ruby" || myc="$myc --without-ruby" - use guile && myc="$myc --with-guile" || myc="$myc --without-guile" - use tcltk && myc="$myc --with-tcl" || myc="$myc --without-tcl" - use perl && myc="$myc --with-perl" || myc="$myc --without-perl" - - unset CXXFLAGS - unset CFLAGS - - ./configure \ - --host=${CHOST} \ - --prefix=/usr \ - --infodir=/usr/share/info \ - --mandir=/usr/share/man \ - $myc || die "./configure failed" - - make || die -} - -src_install () { - make prefix=${D}/usr install || die -} |