diff options
author | Aron Griffis <agriffis@gentoo.org> | 2004-05-12 12:16:49 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2004-05-12 12:16:49 +0000 |
commit | 33040e69b1fbea684bbc2fac0ebdd2fdc1a78b64 (patch) | |
tree | f1dc381cd8284e17674086489d98eaaaf505f50b /dev-libs/librep | |
parent | changed hardened PIC PIE flag logic for all lilo ebuilds (Manifest recommit) (diff) | |
download | gentoo-2-33040e69b1fbea684bbc2fac0ebdd2fdc1a78b64.tar.gz gentoo-2-33040e69b1fbea684bbc2fac0ebdd2fdc1a78b64.tar.bz2 gentoo-2-33040e69b1fbea684bbc2fac0ebdd2fdc1a78b64.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/files/digest-librep-0.16.2 | 1 | ||||
-rw-r--r-- | dev-libs/librep/librep-0.16.2.ebuild | 59 |
3 files changed, 66 insertions, 1 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/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/* +} |