diff options
author | Aron Griffis <agriffis@gentoo.org> | 2004-05-10 21:26:58 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2004-05-10 21:26:58 +0000 |
commit | 571a0707240667de1e1250aadbe71b529390c312 (patch) | |
tree | 7cd5c9b6c571f0ae0df72e9d4f13ceeb5c5b1a2f /dev-libs/librep/librep-0.16.2.ebuild | |
parent | Fix bug #50625 (diff) | |
download | historical-571a0707240667de1e1250aadbe71b529390c312.tar.gz historical-571a0707240667de1e1250aadbe71b529390c312.tar.bz2 historical-571a0707240667de1e1250aadbe71b529390c312.zip |
Prune old ebuild
Diffstat (limited to 'dev-libs/librep/librep-0.16.2.ebuild')
-rw-r--r-- | dev-libs/librep/librep-0.16.2.ebuild | 59 |
1 files changed, 0 insertions, 59 deletions
diff --git a/dev-libs/librep/librep-0.16.2.ebuild b/dev-libs/librep/librep-0.16.2.ebuild deleted file mode 100644 index 2f2a52db5cdb..000000000000 --- a/dev-libs/librep/librep-0.16.2.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2004 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# # $Header: /var/cvsroot/gentoo-x86/dev-libs/librep/librep-0.16.2.ebuild,v 1.6 2004/04/27 18:12:05 pvdabeel Exp $ - -IUSE="readline" - -inherit libtool - -DESCRIPTION="Shared library implementing a Lisp dialect" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" -HOMEPAGE="http://librep.sourceforge.net/" - -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="x86 sparc -ppc alpha ia64" - -RDEPEND=">=sys-libs/gdbm-1.8.0 - readline? ( sys-libs/readline )" - -DEPEND="${RDEPEND} - sys-apps/texinfo - >=sys-devel/automake-1.6.1-r5" - -src_compile() { - elibtoolize - - local myconf - - use readline \ - && myconf='--with-readline' \ - || myconf='--without-readline' - - LC_ALL="" - LINGUAS="" - LANG="" - export LC_ALL LINGUAS LANG - - econf \ - --libexecdir=/usr/lib \ - --without-gmp \ - ${myconf} || die "configure failure" - - make host_type=${CHOST} || die "compile failure" -} - -src_install() { - make install \ - host_type=${CHOST} \ - DESTDIR=${D} \ - aclocaldir=/usr/share/aclocal \ - infodir=/usr/share/info || die - - insinto /usr/include - doins src/rep_config.h - - dodoc AUTHORS BUGS COPYING ChangeLog NEWS README THANKS TODO DOC TREE - docinto doc - dodoc doc/* -} |