summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-libs/librep/librep-0.15.2-r1.ebuild')
-rw-r--r--dev-libs/librep/librep-0.15.2-r1.ebuild52
1 files changed, 0 insertions, 52 deletions
diff --git a/dev-libs/librep/librep-0.15.2-r1.ebuild b/dev-libs/librep/librep-0.15.2-r1.ebuild
deleted file mode 100644
index 509db2db4f6e..000000000000
--- a/dev-libs/librep/librep-0.15.2-r1.ebuild
+++ /dev/null
@@ -1,52 +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.15.2-r1.ebuild,v 1.10 2004/03/14 12:22:52 mr_bones_ Exp $
-
-IUSE="readline"
-
-DESCRIPTION="Shared library implementing a Lisp dialect"
-SRC_URI="http://download.sourceforge.net/librep/${P}.tar.gz"
-HOMEPAGE="http://librep.sourceforge.net/"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="x86 sparc"
-
-DEPEND=">=sys-libs/gdbm-1.8.0
- >=dev-libs/gmp-3.1.1
- readline? ( >=sys-libs/readline-4.1
- >=sys-libs/ncurses-5.2 )
- sys-apps/texinfo"
-
-src_unpack() {
- unpack ${A}
-
- cd ${S}
- #patch buggy makefile for newer libtool
- patch -p1 <${FILESDIR}/librep-${PV}-exec.patch || die
-
- #update libtool to fix "relink" bug
- libtoolize --copy --force
- aclocal
-}
-
-src_compile() {
- local myconf
-
- use readline \
- && myconf="--with-readline" \
- || myconf="--without-readline"
-
- econf --libexecdir=/usr/lib || die
- emake || die
-}
-
-src_install() {
- make DESTDIR=${D} install || die
-
- insinto /usr/include
- doins src/rep_config.h
- dodoc AUTHORS BUGS COPYING ChangeLog NEWS README THANKS TODO DOC
- docinto doc
- dodoc doc/*
-}