summaryrefslogtreecommitdiff
path: root/dev-tcltk/tclperl/tclperl-3.2-r1.ebuild
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:57:42 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:57:42 +0100
commit1798c4aeca70ac8d0a243684d6a798fbc65735f8 (patch)
treee48e19cb6fa03de18e1c63e1a93371b7ebc4eb56 /dev-tcltk/tclperl/tclperl-3.2-r1.ebuild
parentd87262dd706fec50cd150aab3e93883b6337466d (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'dev-tcltk/tclperl/tclperl-3.2-r1.ebuild')
-rw-r--r--dev-tcltk/tclperl/tclperl-3.2-r1.ebuild41
1 files changed, 0 insertions, 41 deletions
diff --git a/dev-tcltk/tclperl/tclperl-3.2-r1.ebuild b/dev-tcltk/tclperl/tclperl-3.2-r1.ebuild
deleted file mode 100644
index b151af67051a..000000000000
--- a/dev-tcltk/tclperl/tclperl-3.2-r1.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit flag-o-matic multilib toolchain-funcs
-
-DESCRIPTION="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:0
- >=dev-lang/perl-5.6.0"
-RDEPEND="${DEPEND}"
-
-src_compile() {
- append-flags -fPIC
-
- # ./build.sh
- perl Makefile.PL || die
- emake OPTIMIZE="${CFLAGS}" Tcl.o
-
- $(tc-getCC) -shared ${LDFLAGS} ${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}
- doexe pkgIndex.tcl
-
- dodoc CHANGES README
- dohtml tclperl.htm
-}