diff options
author | Aron Griffis <agriffis@gentoo.org> | 2004-05-12 12:16:25 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2004-05-12 12:16:25 +0000 |
commit | 56e5f5abde25d78c98b2ec9c20249671f50f7e85 (patch) | |
tree | e9963384727cc083647864447131f91afe46918d /dev-libs/librep | |
parent | changed hardened PIC PIE flag logic for all lilo ebuilds (diff) | |
download | historical-56e5f5abde25d78c98b2ec9c20249671f50f7e85.tar.gz historical-56e5f5abde25d78c98b2ec9c20249671f50f7e85.tar.bz2 historical-56e5f5abde25d78c98b2ec9c20249671f50f7e85.zip |
Restore sawfish-1.2 for gnome-1.4
Diffstat (limited to 'dev-libs/librep')
-rw-r--r-- | dev-libs/librep/ChangeLog | 7 | ||||
-rw-r--r-- | dev-libs/librep/Manifest | 8 | ||||
-rw-r--r-- | dev-libs/librep/files/digest-librep-0.16.2 | 1 | ||||
-rw-r--r-- | dev-libs/librep/librep-0.16.2.ebuild | 59 |
4 files changed, 71 insertions, 4 deletions
diff --git a/dev-libs/librep/ChangeLog b/dev-libs/librep/ChangeLog index 4ca6c5397cff..b15edae0f310 100644 --- a/dev-libs/librep/ChangeLog +++ b/dev-libs/librep/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-libs/librep # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/librep/ChangeLog,v 1.21 2004/05/10 21:26:58 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/librep/ChangeLog,v 1.22 2004/05/12 12:16:25 agriffis Exp $ + +*librep-0.16.2 (12 May 2004) + + 12 May 2004; Aron Griffis <agriffis@gentoo.org> +librep-0.16.2.ebuild: + Restore sawfish-1.2 for gnome-1.4 10 May 2004; Aron Griffis <agriffis@gentoo.org> -librep-0.16.2.ebuild: Prune old ebuild diff --git a/dev-libs/librep/Manifest b/dev-libs/librep/Manifest index 99a166c152e3..dc235046de5e 100644 --- a/dev-libs/librep/Manifest +++ b/dev-libs/librep/Manifest @@ -1,5 +1,7 @@ -MD5 8e173688a63c6800b3b957ce354826df ChangeLog 3322 -MD5 1652522405f5936eb29776ef8d5ffa5b metadata.xml 310 +MD5 9f3f4c8970f67b01918daf96693cc465 librep-0.16.2.ebuild 1234 MD5 f12a2f1d51f69dbe8c4721627491bf28 librep-0.17.ebuild 1235 -MD5 8c655620e7f5d0dc0ee9b8ef6351158d files/librep-0.15.2-exec.patch 425 +MD5 ba343bbef40035a1cbd9fc0535cb5b1f ChangeLog 3462 +MD5 1652522405f5936eb29776ef8d5ffa5b metadata.xml 310 MD5 07a234e62724c3d45a1b69f1c04cd0a9 files/digest-librep-0.17 64 +MD5 8c655620e7f5d0dc0ee9b8ef6351158d files/librep-0.15.2-exec.patch 425 +MD5 93ba6a49abdce2a3efd71bcb47bc6ca2 files/digest-librep-0.16.2 64 diff --git a/dev-libs/librep/files/digest-librep-0.16.2 b/dev-libs/librep/files/digest-librep-0.16.2 new file mode 100644 index 000000000000..69aced254109 --- /dev/null +++ b/dev-libs/librep/files/digest-librep-0.16.2 @@ -0,0 +1 @@ +MD5 b0f219f9f3d51bc06ebb1bd1861b6e5c librep-0.16.2.tar.gz 91148 diff --git a/dev-libs/librep/librep-0.16.2.ebuild b/dev-libs/librep/librep-0.16.2.ebuild new file mode 100644 index 000000000000..fc0215835e67 --- /dev/null +++ b/dev-libs/librep/librep-0.16.2.ebuild @@ -0,0 +1,59 @@ +# 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.8 2004/05/12 12:16:25 agriffis 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/* +} |