diff options
author | Aron Griffis <agriffis@gentoo.org> | 2003-02-27 19:24:41 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2003-02-27 19:24:41 +0000 |
commit | 827b68a74245abc217fa10146091f669530bc4d5 (patch) | |
tree | 9b8eef9b628fc1eb6148167f9cddf0ecca71bda2 /dev-libs/librep | |
parent | marked stable on x86 (diff) | |
download | historical-827b68a74245abc217fa10146091f669530bc4d5.tar.gz historical-827b68a74245abc217fa10146091f669530bc4d5.tar.bz2 historical-827b68a74245abc217fa10146091f669530bc4d5.zip |
update to 0.16.2 for gnome bug #106637
Diffstat (limited to 'dev-libs/librep')
-rw-r--r-- | dev-libs/librep/ChangeLog | 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 | 61 |
3 files changed, 69 insertions, 1 deletions
diff --git a/dev-libs/librep/ChangeLog b/dev-libs/librep/ChangeLog index 5d5527a25163..24d2e6fe1eec 100644 --- a/dev-libs/librep/ChangeLog +++ b/dev-libs/librep/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-libs/librep # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/librep/ChangeLog,v 1.13 2003/02/22 13:08:54 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/librep/ChangeLog,v 1.14 2003/02/27 19:24:41 agriffis Exp $ + +*librep-0.16.2 (27 Feb 2003) + + 27 Feb 2003; Aron Griffis <agriffis@gentoo.org> librep-0.16.2.ebuild: + Update to 0.16.2 which fixes resizing of xterms. See Gnome bug #106637. + http://bugzilla.gnome.org/show_bug.cgi?id=106637 *librep-0.16.1-r1 (22 Feb 2003) 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..bfcb258b5b20 --- /dev/null +++ b/dev-libs/librep/librep-0.16.2.ebuild @@ -0,0 +1,61 @@ +# Copyright 1999-2003 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.1 2003/02/27 19:24:41 agriffis Exp $ + +IUSE="readline" + +inherit libtool + +S=${WORKDIR}/${P} + +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" + +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/* +} |