diff options
author | Mamoru Komachi <usata@gentoo.org> | 2005-02-08 11:52:42 +0000 |
---|---|---|
committer | Mamoru Komachi <usata@gentoo.org> | 2005-02-08 11:52:42 +0000 |
commit | cff8d643563b1ca555f640e989fef885d36d4ece (patch) | |
tree | 065ec2d3277369e5a06600170b0600d95408ff1e /app-text/texi2html | |
parent | ~amd64 (diff) | |
download | historical-cff8d643563b1ca555f640e989fef885d36d4ece.tar.gz historical-cff8d643563b1ca555f640e989fef885d36d4ece.tar.bz2 historical-cff8d643563b1ca555f640e989fef885d36d4ece.zip |
Version bumped. See also bug #74307.
Package-Manager: portage-2.0.51-r15
Diffstat (limited to 'app-text/texi2html')
-rw-r--r-- | app-text/texi2html/ChangeLog | 7 | ||||
-rw-r--r-- | app-text/texi2html/Manifest | 6 | ||||
-rw-r--r-- | app-text/texi2html/files/digest-texi2html-1.76 | 1 | ||||
-rw-r--r-- | app-text/texi2html/texi2html-1.76.ebuild | 28 |
4 files changed, 39 insertions, 3 deletions
diff --git a/app-text/texi2html/ChangeLog b/app-text/texi2html/ChangeLog index 3242301b7003..72b34973e5bf 100644 --- a/app-text/texi2html/ChangeLog +++ b/app-text/texi2html/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-text/texi2html # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/texi2html/ChangeLog,v 1.23 2005/01/01 16:38:25 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/texi2html/ChangeLog,v 1.24 2005/02/08 11:52:42 usata Exp $ + +*texi2html-1.76 (08 Feb 2005) + + 08 Feb 2005; Mamoru KOMACHI <usata@gentoo.org> +texi2html-1.76.ebuild: + Version bumped. See also bug #74307. 16 Dec 2004; Markus Rothe <corsair@gentoo.org> texi2html-1.64-r1.ebuild, texi2html-1.70.ebuild: diff --git a/app-text/texi2html/Manifest b/app-text/texi2html/Manifest index 8043467f59d2..0b3a3276b45d 100644 --- a/app-text/texi2html/Manifest +++ b/app-text/texi2html/Manifest @@ -1,8 +1,10 @@ -MD5 90948b32e10610b917abd29e3865cf0b ChangeLog 2608 +MD5 c38f72ef15bda38ba30ce852201b0d43 texi2html-1.64.ebuild 932 +MD5 fe02214f2bb8b5ac25f331cb6cc388ed ChangeLog 2747 MD5 c472f5fd1646eb8bca71d8df5cb2bdcc metadata.xml 164 MD5 a294bbebe1bbad7e1864e41d0ec09639 texi2html-1.64-r1.ebuild 1038 -MD5 c38f72ef15bda38ba30ce852201b0d43 texi2html-1.64.ebuild 932 MD5 f1c3b2291a76b28cc42242057ab8f3ce texi2html-1.70.ebuild 825 +MD5 956dfacdc9bc1d54292365334531fe62 texi2html-1.76.ebuild 820 MD5 59e2094b0a438b711cb1687485e580a4 files/digest-texi2html-1.64 66 MD5 59e2094b0a438b711cb1687485e580a4 files/digest-texi2html-1.64-r1 66 MD5 6089420893ab2453c94d9874d0707292 files/digest-texi2html-1.70 67 +MD5 d8fd1ed3f116a101ab5d92c0182ed8c7 files/digest-texi2html-1.76 67 diff --git a/app-text/texi2html/files/digest-texi2html-1.76 b/app-text/texi2html/files/digest-texi2html-1.76 new file mode 100644 index 000000000000..fc68dabc5e54 --- /dev/null +++ b/app-text/texi2html/files/digest-texi2html-1.76 @@ -0,0 +1 @@ +MD5 e8286fc0c07ce684fcc3793a98832038 texi2html-1.76.tar.bz2 381851 diff --git a/app-text/texi2html/texi2html-1.76.ebuild b/app-text/texi2html/texi2html-1.76.ebuild new file mode 100644 index 000000000000..9c2a99b06a96 --- /dev/null +++ b/app-text/texi2html/texi2html-1.76.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/texi2html/texi2html-1.76.ebuild,v 1.1 2005/02/08 11:52:42 usata Exp $ + +DESCRIPTION="Perl script that converts Texinfo to HTML" +HOMEPAGE="https://texi2html.cvshome.org/" +SRC_URI="https://texi2html.cvshome.org/files/documents/70/758/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~sparc ~x86 ~ppc64" +IUSE="" + +DEPEND="virtual/libc + >=dev-lang/perl-5.6.1" + +src_install() { + #yes, htmldir line is correct, no ${D} + make DESTDIR=${D} \ + htmldir=/usr/share/doc/${PF}/html \ + install || die "Installation Failed" + + dodoc AUTHORS ChangeLog INSTALL INTRODUCTION NEWS README TODO +} + +pkg_preinst() { + rm -f ${ROOT}usr/bin/texi2html +} |