summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Schlemmer <azarah@gentoo.org>2002-11-18 21:04:25 +0000
committerMartin Schlemmer <azarah@gentoo.org>2002-11-18 21:04:25 +0000
commit6f26d13b753de7efe7ca209a708d9cee9e8cd75c (patch)
tree3d1144b6f6ad2b64e082f813c3ef68a1a8ab39f8 /sys-apps/texinfo
parentAdded link to glibc email post (diff)
downloadhistorical-6f26d13b753de7efe7ca209a708d9cee9e8cd75c.tar.gz
historical-6f26d13b753de7efe7ca209a708d9cee9e8cd75c.tar.bz2
historical-6f26d13b753de7efe7ca209a708d9cee9e8cd75c.zip
new version
Diffstat (limited to 'sys-apps/texinfo')
-rw-r--r--sys-apps/texinfo/ChangeLog7
-rw-r--r--sys-apps/texinfo/files/digest-texinfo-4.2-r41
-rw-r--r--sys-apps/texinfo/files/digest-texinfo-4.2b1
-rw-r--r--sys-apps/texinfo/files/digest-texinfo-4.31
-rw-r--r--sys-apps/texinfo/texinfo-4.2-r4.ebuild69
-rw-r--r--sys-apps/texinfo/texinfo-4.3.ebuild (renamed from sys-apps/texinfo/texinfo-4.2b.ebuild)2
6 files changed, 8 insertions, 73 deletions
diff --git a/sys-apps/texinfo/ChangeLog b/sys-apps/texinfo/ChangeLog
index b1c92711b9ae..3e7c8e4feba9 100644
--- a/sys-apps/texinfo/ChangeLog
+++ b/sys-apps/texinfo/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for sys-apps/texinfo
# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/texinfo/ChangeLog,v 1.10 2002/10/20 08:59:36 azarah Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/texinfo/ChangeLog,v 1.11 2002/11/18 21:04:25 azarah Exp $
+
+*texinfo-4.3 (18 Nov 2002)
+
+ 18 Nov 2002; Martin Schlemmer <azarah@gentoo.org> :
+ Update version.
*texinfo-4.2b (20 Oct 2002)
diff --git a/sys-apps/texinfo/files/digest-texinfo-4.2-r4 b/sys-apps/texinfo/files/digest-texinfo-4.2-r4
deleted file mode 100644
index c3b196a597a0..000000000000
--- a/sys-apps/texinfo/files/digest-texinfo-4.2-r4
+++ /dev/null
@@ -1 +0,0 @@
-MD5 41a97498d34ddbf245df40a95977be7f texinfo-4.2.tar.gz 1666333
diff --git a/sys-apps/texinfo/files/digest-texinfo-4.2b b/sys-apps/texinfo/files/digest-texinfo-4.2b
deleted file mode 100644
index b15dc59cc9f3..000000000000
--- a/sys-apps/texinfo/files/digest-texinfo-4.2b
+++ /dev/null
@@ -1 +0,0 @@
-MD5 3fa4b7aab8e4d2d7df0a8c45fdd44fd3 texinfo-4.2b.tar.gz 1727679
diff --git a/sys-apps/texinfo/files/digest-texinfo-4.3 b/sys-apps/texinfo/files/digest-texinfo-4.3
new file mode 100644
index 000000000000..85de720f7c72
--- /dev/null
+++ b/sys-apps/texinfo/files/digest-texinfo-4.3
@@ -0,0 +1 @@
+MD5 9a8f8ef8b7f8323bb985ab12fcdb2f0b texinfo-4.3.tar.gz 1808898
diff --git a/sys-apps/texinfo/texinfo-4.2-r4.ebuild b/sys-apps/texinfo/texinfo-4.2-r4.ebuild
deleted file mode 100644
index 71c969099b63..000000000000
--- a/sys-apps/texinfo/texinfo-4.2-r4.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2002 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/texinfo/texinfo-4.2-r4.ebuild,v 1.6 2002/10/05 05:39:25 drobbins Exp $
-
-IUSE="nls build"
-
-S=${WORKDIR}/${P}
-DESCRIPTION="The GNU info program and utilities"
-SRC_URI="ftp://gatekeeper.dec.com/pub/GNU/texinfo/${P}.tar.gz
- ftp://ftp.gnu.org/pub/gnu/texinfo/${P}.tar.gz"
-HOMEPAGE="http://www.gnu.org/software/texinfo/"
-KEYWORDS="x86 ppc sparc sparc64"
-SLOT="0"
-LICENSE="GPL-2"
-
-if [ "`use build`" ] ; then
- DEPEND="virtual/glibc"
-else
- DEPEND="virtual/glibc
- >=sys-libs/ncurses-5.2-r2
- nls? ( sys-devel/gettext )"
-# >=sys-devel/automake-1.6"
- RDEPEND="virtual/glibc
- >=sys-libs/ncurses-5.2-r2"
-fi
-
-src_compile() {
- local myconf=""
- if [ -z "`use nls`" ] || [ "`use build`" ] ; then
- myconf="--disable-nls"
- fi
-
- export WANT_AUTOMAKE_1_6=1
- ./configure --host=${CHOST} \
- --prefix=/usr \
- --mandir=/usr/share/man \
- --infodir=/usr/share/info \
- ${myconf} || die
-
- make ${MAKEOPTS} || die
-}
-
-src_install() {
- if [ "`use build`" ] ; then
- dobin makeinfo/makeinfo util/{install-info,texi2dvi,texindex}
- else
- make DESTDIR=${D} \
- infodir=/usr/share/info \
- install || die
-
- exeinto /usr/sbin
- doexe ${FILESDIR}/mkinfodir
-
- cd ${D}/usr/share/info
- mv texinfo texinfo.info
- for i in texinfo-*
- do
- mv ${i} texinfo.info-${i#texinfo-*}
- done
- cd ${S}
-
- dodoc AUTHORS ChangeLog COPYING INTRODUCTION NEWS README TODO
- docinto info
- dodoc info/README
- docinto makeinfo
- dodoc makeinfo/README
- fi
-}
-
diff --git a/sys-apps/texinfo/texinfo-4.2b.ebuild b/sys-apps/texinfo/texinfo-4.3.ebuild
index ece572fa56fd..ebf4abf37a0f 100644
--- a/sys-apps/texinfo/texinfo-4.2b.ebuild
+++ b/sys-apps/texinfo/texinfo-4.3.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/texinfo/texinfo-4.2b.ebuild,v 1.1 2002/10/20 08:59:36 azarah Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/texinfo/texinfo-4.3.ebuild,v 1.1 2002/11/18 21:04:25 azarah Exp $
IUSE="nls build"