diff options
Diffstat (limited to 'dev-tcltk/otcl/otcl-1.8-r1.ebuild')
-rw-r--r-- | dev-tcltk/otcl/otcl-1.8-r1.ebuild | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/dev-tcltk/otcl/otcl-1.8-r1.ebuild b/dev-tcltk/otcl/otcl-1.8-r1.ebuild deleted file mode 100644 index 237f21e8361a..000000000000 --- a/dev-tcltk/otcl/otcl-1.8-r1.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2004 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/otcl/otcl-1.8-r1.ebuild,v 1.6 2004/08/07 22:26:35 slarti Exp $ - -inherit eutils - -DESCRIPTION="MIT Object extension to Tcl" -SF_PN="otcl-tclcl" -HOMEPAGE="http://sourceforge.net/projects/${SF_PN}/" -SRC_URI="mirror://sourceforge/${SF_PN}/${P}.tar.gz" -LICENSE="MIT" -SLOT="0" -KEYWORDS="x86 ~sparc" -IUSE="" -DEPEND=">=dev-lang/tcl-8.3.2 - >=dev-lang/tk-8.3.2" - -src_unpack() { - unpack ${A} - epatch ${FILESDIR}/otcl-1.8-badfreefix.patch -} - -src_compile() { - #local myconf="--with-tcl=/usr/lib --enable-shared" - local myconf="--enable-shared" - CFLAGS="${CFLAGS} -I`ls /usr/lib/tcl8.*/include/generic/tclInt.h | tail -n1 | xargs dirname`" - econf ${myconf} || die "econf failed" - emake all || die - emake libotcl.so || die -} - -src_install() { - into /usr - dobin otclsh owish - dolib libotcl.so - dolib.a libotcl.a - insinto /usr/include - doins otcl.h - - # docs - dodoc VERSION - dohtml README.html CHANGES.html - docinto doc - dodoc doc/* -} |