summaryrefslogtreecommitdiff
blob: b7a7cf713336c10d3dd306692852f16e22143a58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# Copyright 1999-2001 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Maintainer: Tools Team <tools@gentoo.org>
# Author: Karl Trygve Kalleberg <karltk@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/dev-lang/swig/swig-1.3.10-r1.ebuild,v 1.1 2002/01/15 01:27:50 gbevin Exp $

S=${WORKDIR}/SWIG-${PV}
DESCRIPTION="Simplied Wrapper and Interface Generator"
SRC_URI="http://telia.dl.sourceforge.net/swig/swig-${PV}.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? ( >=sys-devel/perl-5.6.1 )"
	
RDEPEND=""

src_compile() {
	local myc

	use python && myc="$myc --with-py" || myc="$myc --without-py"
	use java && myc="$myc --with-java=$JAVA_HOME" || 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 \
		$myconf || die "./configure failed"

	make || die
}

src_install () {
	make prefix=${D}/usr install || die
}