blob: b9d8c585459533f109cd86262c8377bb7e97a1b5 (
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
# Copyright 1999-2004 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.21.ebuild,v 1.11 2004/05/15 08:54:20 kloeri 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? ( virtual/ruby )
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="alpha ~hppa sparc x86 ~amd64 ~ppc ~mips ~ia64 s390"
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=/usr/bin/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
use ruby && local rubyver="`ruby --version | cut -d '.' -f 1,2`"
use ruby && RUBY="/usr/lib/ruby/${rubyver/ruby /}/"
./configure \
--host=${CHOST} \
--prefix=/usr \
--infodir=/usr/share/info \
--mandir=/usr/share/man \
$myc || die "./configure failed"
# fix the broken configure script
use tcltk || sed -i -e "s:am__append_1 =:#am__append_1 =:" Runtime/Makefile
`has_version dev-lisp/plt` && PLT=/usr/share/plt/collects
`has_version dev-lisp/mzscheme` && PLT=/usr/share/mzscheme/collects
emake || die
emake runtime PLTCOLLECTS=$PLT || die
}
src_install () {
make prefix=${D}/usr install || die
make prefix=${D}/usr install-runtime || die
}
|