# 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.12 2003/03/11 21:11:45 seemant 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 }