blob: 914899c6039ca4a03d75a54e46d8cbde50503ae8 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tclperl/tclperl-3.2.ebuild,v 1.1 2007/05/01 23:43:09 matsuu Exp $
inherit flag-o-matic multilib toolchain-funcs
DESCRIPTION="a Perl package for Tcl"
HOMEPAGE="http://jfontain.free.fr/tclperl.htm"
SRC_URI="http://jfontain.free.fr/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
DEPEND=">=dev-lang/tcl-8.3.3
>=dev-lang/perl-5.6.0"
src_compile() {
append-flags -fPIC
# ./build.sh
perl Makefile.PL || die
make OPTIMIZE="${CFLAGS}" Tcl.o || die
$(tc-getCC) -shared ${CFLAGS} -o tclperl.so.${PV} -DUSE_TCL_STUBS \
tclperl.c tclthread.c `perl -MExtUtils::Embed -e ccopts -e ldopts` \
/usr/$(get_libdir)/libtclstub`echo 'puts $tcl_version' | tclsh`.a Tcl.o || die
}
src_install() {
exeinto /usr/$(get_libdir)/${P}
doexe tclperl.so.${PV} || die "lib"
doexe pkgIndex.tcl || die "tcl"
dodoc CHANGES README
dohtml tclperl.htm
}
|