summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Schlemmer <azarah@gentoo.org>2004-02-08 13:39:14 +0000
committerMartin Schlemmer <azarah@gentoo.org>2004-02-08 13:39:14 +0000
commit0a07c7e3890d36a20781fda60fb13c5f364644bf (patch)
tree34ad23720cfe4235110f01484491d1486e0f899d /sys-apps/help2man
parentVersion bumped. (Manifest recommit) (diff)
downloadgentoo-2-0a07c7e3890d36a20781fda60fb13c5f364644bf.tar.gz
gentoo-2-0a07c7e3890d36a20781fda60fb13c5f364644bf.tar.bz2
gentoo-2-0a07c7e3890d36a20781fda60fb13c5f364644bf.zip
Update version. New version is done by Mr. Bones. <mr_bones_@gentoo.org>. This
closes bug #40162.
Diffstat (limited to 'sys-apps/help2man')
-rw-r--r--sys-apps/help2man/ChangeLog10
-rw-r--r--sys-apps/help2man/Manifest6
-rw-r--r--sys-apps/help2man/files/digest-help2man-1.33.11
-rw-r--r--sys-apps/help2man/help2man-1.33.1.ebuild29
4 files changed, 42 insertions, 4 deletions
diff --git a/sys-apps/help2man/ChangeLog b/sys-apps/help2man/ChangeLog
index 21db018c9346..5647ce73dfa4 100644
--- a/sys-apps/help2man/ChangeLog
+++ b/sys-apps/help2man/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for sys-apps/help2man
-# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/help2man/ChangeLog,v 1.11 2003/06/24 14:30:04 agriffis Exp $
+# Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/help2man/ChangeLog,v 1.12 2004/02/08 13:39:13 azarah Exp $
+
+*help2man-1.33.1 (08 Feb 2004)
+
+ 08 Feb 2004; Martin Schlemmer <azarah@gentoo.org> help2man-1.33.1.ebuild:
+ Update version. New version is done by Mr. Bones. <mr_bones_@gentoo.org>. This
+ closes bug #40162.
24 Jun 2003; Aron Griffis <agriffis@gentoo.org> help2man-1.29.ebuild:
Mark stable on alpha
diff --git a/sys-apps/help2man/Manifest b/sys-apps/help2man/Manifest
index 9935c18570bb..21d2381ea35c 100644
--- a/sys-apps/help2man/Manifest
+++ b/sys-apps/help2man/Manifest
@@ -1,5 +1,7 @@
-MD5 6da3242e041f865b2523b9a12bcad64e files/digest-help2man-1.29 64
-MD5 8ddb180a8924b6b00bec873c106310e6 .#Manifest.1.8 235
MD5 fc9fb13bc96d7b44d1c3ed85858a4303 help2man-1.29.ebuild 594
MD5 3826faf2e7a195474025c46d31b8f46e ChangeLog 1404
+MD5 3013ca6b3e2b75b702066b4b47c65b79 help2man-1.33.1.ebuild 855
+MD5 a9c0a743e3afbdd058807c1239a497c4 .help2man-1.33.1.ebuild.swp 12288
MD5 9a09f8d531c582e78977dbfd96edc1f2 metadata.xml 164
+MD5 6da3242e041f865b2523b9a12bcad64e files/digest-help2man-1.29 64
+MD5 a646ae235e082e137b9f8c7b8a6efe12 files/digest-help2man-1.33.1 66
diff --git a/sys-apps/help2man/files/digest-help2man-1.33.1 b/sys-apps/help2man/files/digest-help2man-1.33.1
new file mode 100644
index 000000000000..a2841494d282
--- /dev/null
+++ b/sys-apps/help2man/files/digest-help2man-1.33.1
@@ -0,0 +1 @@
+MD5 4fd9c94cda2572735790e22e7fce3928 help2man_1.33.1.tar.gz 75293
diff --git a/sys-apps/help2man/help2man-1.33.1.ebuild b/sys-apps/help2man/help2man-1.33.1.ebuild
new file mode 100644
index 000000000000..625bb0a75190
--- /dev/null
+++ b/sys-apps/help2man/help2man-1.33.1.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2004 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/help2man/help2man-1.33.1.ebuild,v 1.1 2004/02/08 13:39:13 azarah Exp $
+
+MY_P="${P/-/_}"
+DESCRIPTION="GNU utility to convert program --help output to a man page"
+HOMEPAGE="http://www.gnu.org/software/help2man"
+SRC_URI="http://ftp.gnu.org/gnu/help2man/${MY_P}.tar.gz"
+
+KEYWORDS="~x86 ~ppc ~sparc ~alpha"
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="nls"
+
+DEPEND="dev-lang/perl
+ nls? ( dev-perl/Locale-gettext
+ >=sys-devel/gettext-0.12.1-r1 )"
+
+src_compile() {
+ econf \
+ `use_enable nls` \
+ || die
+ emake || die "emake failed"
+}
+
+src_install(){
+ make DESTDIR="${D}" install || die "make install failed"
+ dodoc ChangeLog NEWS README THANKS || die "dodoc failed"
+}