diff options
author | Martin Schlemmer <azarah@gentoo.org> | 2002-10-20 08:18:28 +0000 |
---|---|---|
committer | Martin Schlemmer <azarah@gentoo.org> | 2002-10-20 08:18:28 +0000 |
commit | b7bd20b476333562f5f9513ff6a83074df2d14e4 (patch) | |
tree | ad863af369f588f962e32ee8812fc6947d9dee5d /sys-libs | |
parent | new version (diff) | |
download | historical-b7bd20b476333562f5f9513ff6a83074df2d14e4.tar.gz historical-b7bd20b476333562f5f9513ff6a83074df2d14e4.tar.bz2 historical-b7bd20b476333562f5f9513ff6a83074df2d14e4.zip |
add some patches
Diffstat (limited to 'sys-libs')
-rw-r--r-- | sys-libs/readline/ChangeLog | 7 | ||||
-rw-r--r-- | sys-libs/readline/files/digest-readline-4.3-r2 | 3 | ||||
-rw-r--r-- | sys-libs/readline/readline-4.3-r2.ebuild | 70 |
3 files changed, 79 insertions, 1 deletions
diff --git a/sys-libs/readline/ChangeLog b/sys-libs/readline/ChangeLog index 4997999dce68..c67e357f9cb4 100644 --- a/sys-libs/readline/ChangeLog +++ b/sys-libs/readline/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-libs/readline # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/sys-libs/readline/ChangeLog,v 1.6 2002/08/31 23:13:03 azarah Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/readline/ChangeLog,v 1.7 2002/10/20 08:18:28 azarah Exp $ + +*readline-4.3-r2 (20 Oct 2002) + + 20 Oct 2002; Martin Schlemmer <azarah@gentoo.org> readline-4.3-r2.ebuild : + Add some official patches. *readline-4.3-r1 (1 Sep 2002) diff --git a/sys-libs/readline/files/digest-readline-4.3-r2 b/sys-libs/readline/files/digest-readline-4.3-r2 new file mode 100644 index 000000000000..3ce983e2b2f1 --- /dev/null +++ b/sys-libs/readline/files/digest-readline-4.3-r2 @@ -0,0 +1,3 @@ +MD5 f86f7cb717ab321fe15f1bbcb058c11e readline-4.3.tar.gz 961662 +MD5 aacf1c41717f305ab5ce45e9d028821d readline43-001 1126 +MD5 8df4bf2c7e77e05c4ecd949b9b5dedf3 readline43-002 738 diff --git a/sys-libs/readline/readline-4.3-r2.ebuild b/sys-libs/readline/readline-4.3-r2.ebuild new file mode 100644 index 000000000000..de590735156a --- /dev/null +++ b/sys-libs/readline/readline-4.3-r2.ebuild @@ -0,0 +1,70 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/readline/readline-4.3-r2.ebuild,v 1.1 2002/10/20 08:18:28 azarah Exp $ + +# Official patches +PLEVEL="x001 x002" + +S=${WORKDIR}/${P} +DESCRIPTION="Another cute console display library" +SRC_URI="ftp://ftp.gnu.org/gnu/readline/${P}.tar.gz + ftp://gatekeeper.dec.com/pub/GNU/readline/${P}.tar.gz + ${PLEVEL//x/ftp://ftp.gnu.org/gnu/${PN}/${PN}-${PV}-patches/${PN}${PV/\.}-}" +HOMEPAGE="http://cnswww.cns.cwru.edu/php/chet/readline/rltop.html" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86 ~ppc ~sparc ~sparc64 ~alpha" + +# We must be sertain that we have a bash that is linked +# to its internal readline, else we may get problems. +DEPEND=">=sys-apps/bash-2.05b-r2 + >=sys-libs/ncurses-5.2-r2" + +src_unpack() { + + unpack ${P}.tar.gz + + cd ${S} + for x in ${PLEVEL//x} + do + patch -p0 < ${DISTDIR}/${PN}${PV/\.}-${x} || die + done + +} + +src_compile() { + + econf --with-curses || die + + emake || die + cd shlib + emake || die +} + + +src_install() { + + make prefix=${D}/usr mandir=${D}/usr/share/man \ + infodir=${D}/usr/share/info install || die + cd ${S}/shlib + make prefix=${D}/usr mandir=${D}/usr/share/man \ + infodir=${D}/usr/share/info install || die + + cd ${S} + + dodir /lib + mv ${D}/usr/lib/*.so* ${D}/lib + dosym libhistory.so.${PV/a/} /lib/libhistory.so + dosym libreadline.so.${PV/a/} /lib/libreadline.so + # Needed because make install uses ${D} for the link + dosym libhistory.so.${PV/a/} /lib/libhistory.so.4 + dosym libreadline.so.${PV/a/} /lib/libreadline.so.4 + chmod 755 ${D}/lib/*.${PV/a/} + + dodoc CHANGELOG CHANGES COPYING MANIFEST README USAGE + docinto ps + dodoc doc/*.ps + dohtml -r doc +} + |