summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-01-04 02:35:13 +0000
committerMike Frysinger <vapier@gentoo.org>2005-01-04 02:35:13 +0000
commit3444b0fc3799bbd5d8b2b3fc3fedfcb700507ce8 (patch)
tree00d8b6b232b376290c812db9ae241f21365c49a1 /sys-apps/texinfo
parentVersion bump. Magically fixes #74841 by lison. (diff)
downloadhistorical-3444b0fc3799bbd5d8b2b3fc3fedfcb700507ce8.tar.gz
historical-3444b0fc3799bbd5d8b2b3fc3fedfcb700507ce8.tar.bz2
historical-3444b0fc3799bbd5d8b2b3fc3fedfcb700507ce8.zip
old
Diffstat (limited to 'sys-apps/texinfo')
-rw-r--r--sys-apps/texinfo/Manifest12
-rw-r--r--sys-apps/texinfo/files/digest-texinfo-4.61
-rw-r--r--sys-apps/texinfo/texinfo-4.6.ebuild74
3 files changed, 10 insertions, 77 deletions
diff --git a/sys-apps/texinfo/Manifest b/sys-apps/texinfo/Manifest
index 1db3c3e2b7b9..7360ece54b70 100644
--- a/sys-apps/texinfo/Manifest
+++ b/sys-apps/texinfo/Manifest
@@ -1,8 +1,16 @@
+-----BEGIN PGP SIGNED MESSAGE-----
+Hash: SHA1
+
MD5 be7fc3797edff0f7695422e5e96d120c ChangeLog 5901
MD5 9a09f8d531c582e78977dbfd96edc1f2 metadata.xml 164
-MD5 307657baa4ddac78d07c19bd9bd6e7aa texinfo-4.6.ebuild 1717
MD5 a96a564140ac4b23c3800e7ac7a2f6f5 texinfo-4.7-r1.ebuild 1979
-MD5 247b349c3d22ddbd4288247e611bb186 files/digest-texinfo-4.6 65
MD5 690fb86d0c0215155b1d18671099115a files/mkinfodir 7318
MD5 a2c21c53079eb65c306a08d230d15b2b files/digest-texinfo-4.7-r1 65
MD5 a0df107ca9e3036e2ee2d501343cbf2b files/makeinfo.patch 790
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1.9.10 (GNU/Linux)
+
+iD8DBQFB2gD0roRuSHgZdywRAuuYAJ0bd/yyXNn3u7j9BQwiFLjiwMLbdwCeLQ2x
+Mq7uOn9v93MnGLES+7muR3w=
+=LqqM
+-----END PGP SIGNATURE-----
diff --git a/sys-apps/texinfo/files/digest-texinfo-4.6 b/sys-apps/texinfo/files/digest-texinfo-4.6
deleted file mode 100644
index bb4a8776d9c1..000000000000
--- a/sys-apps/texinfo/files/digest-texinfo-4.6
+++ /dev/null
@@ -1 +0,0 @@
-MD5 d6a771de9e05efd8c1c9152f8b8686d6 texinfo-4.6.tar.bz2 1348113
diff --git a/sys-apps/texinfo/texinfo-4.6.ebuild b/sys-apps/texinfo/texinfo-4.6.ebuild
deleted file mode 100644
index c96dd7f6b433..000000000000
--- a/sys-apps/texinfo/texinfo-4.6.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/texinfo/texinfo-4.6.ebuild,v 1.19 2004/09/08 15:15:09 vapier Exp $
-
-inherit flag-o-matic gnuconfig
-
-DESCRIPTION="The GNU info program and utilities"
-HOMEPAGE="http://www.gnu.org/software/texinfo/"
-SRC_URI="mirror://gnu/${PN}/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="x86 ppc ppc64 sparc mips alpha arm hppa amd64 ia64 s390"
-IUSE="nls build static"
-
-DEPEND="virtual/libc
- !build? ( >=sys-libs/ncurses-5.2-r2
- >=sys-apps/sed-4.0.5
- nls? ( sys-devel/gettext ) )"
-
-RDEPEND="virtual/libc
- !build? ( >=sys-libs/ncurses-5.2-r2 )"
-
-src_unpack() {
- unpack ${A}
-
- cd ${S}/doc
- # Get the texinfo info page to have a proper name of texinfo.info
- sed -i 's:setfilename texinfo:setfilename texinfo.info:' texinfo.txi
-
- sed -i \
- -e 's:INFO_DEPS = texinfo:INFO_DEPS = texinfo.info:' \
- -e 's:texinfo\::texinfo.info\::' \
- Makefile.in
-
- gnuconfig_update
-}
-
-src_compile() {
- local myconf=
- if ! use nls || use build ; then
- myconf="--disable-nls"
- fi
-
- use static && append-ldflags -static
-
- export WANT_AUTOMAKE=1.6
- econf ${myconf} || die
- emake || die
-}
-
-src_install() {
- if use build ; then
- mv util/ginstall-info util/install-info
- dobin makeinfo/makeinfo util/{install-info,texi2dvi,texindex}
- else
- make DESTDIR=${D} \
- infodir=/usr/share/info \
- install || die
-
- exeinto /usr/sbin
- doexe ${FILESDIR}/mkinfodir
-
- if [ ! -f ${D}/usr/share/info/texinfo.info ] ; then
- die "Could not install texinfo.info!!!"
- fi
-
- dodoc AUTHORS ChangeLog INTRODUCTION NEWS README TODO
- docinto info
- dodoc info/README
- docinto makeinfo
- dodoc makeinfo/README
- fi
-}