diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-01-12 18:34:13 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-01-12 18:34:13 +0000 |
commit | 091cd90c429cbb5cdc79409a644337245f122cbb (patch) | |
tree | f47ed0f692111104e570df537702927d604e43d7 /sys-apps/help2man | |
parent | stabilize (Manifest recommit) (diff) | |
download | gentoo-2-091cd90c429cbb5cdc79409a644337245f122cbb.tar.gz gentoo-2-091cd90c429cbb5cdc79409a644337245f122cbb.tar.bz2 gentoo-2-091cd90c429cbb5cdc79409a644337245f122cbb.zip |
Version bump.
Diffstat (limited to 'sys-apps/help2man')
-rw-r--r-- | sys-apps/help2man/ChangeLog | 8 | ||||
-rw-r--r-- | sys-apps/help2man/files/digest-help2man-1.35.1 | 1 | ||||
-rw-r--r-- | sys-apps/help2man/help2man-1.33.1.ebuild | 7 | ||||
-rw-r--r-- | sys-apps/help2man/help2man-1.35.1.ebuild | 27 |
4 files changed, 38 insertions, 5 deletions
diff --git a/sys-apps/help2man/ChangeLog b/sys-apps/help2man/ChangeLog index 9fe64a14fbb2..2a478887ab31 100644 --- a/sys-apps/help2man/ChangeLog +++ b/sys-apps/help2man/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sys-apps/help2man # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/help2man/ChangeLog,v 1.17 2005/01/02 23:21:26 ciaranm Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/help2man/ChangeLog,v 1.18 2005/01/12 18:30:57 vapier Exp $ + +*help2man-1.35.1 (12 Jan 2005) + + 12 Jan 2005; Mike Frysinger <vapier@gentoo.org> help2man-1.33.1.ebuild, + +help2man-1.35.1.ebuild: + Version bump. 02 Jan 2005; Ciaran McCreesh <ciaranm@gentoo.org> : Change encoding to UTF-8 for GLEP 31 compliance diff --git a/sys-apps/help2man/files/digest-help2man-1.35.1 b/sys-apps/help2man/files/digest-help2man-1.35.1 new file mode 100644 index 000000000000..f0790765ae61 --- /dev/null +++ b/sys-apps/help2man/files/digest-help2man-1.35.1 @@ -0,0 +1 @@ +MD5 e3c9e846dd163eb7f1d1661e2d0baa07 help2man-1.35.1.tar.gz 76472 diff --git a/sys-apps/help2man/help2man-1.33.1.ebuild b/sys-apps/help2man/help2man-1.33.1.ebuild index 6bfe48154dd0..6320b7585fbd 100644 --- a/sys-apps/help2man/help2man-1.33.1.ebuild +++ b/sys-apps/help2man/help2man-1.33.1.ebuild @@ -1,15 +1,14 @@ # Copyright 1999-2005 Gentoo Foundation # 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.8 2005/01/02 23:21:26 ciaranm Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/help2man/help2man-1.33.1.ebuild,v 1.9 2005/01/12 18:30:57 vapier 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" +SRC_URI="http://ftp.gnu.org/gnu/help2man/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="alpha ~amd64 arm ~hppa ~ia64 ~mips ~ppc ~ppc64 s390 sh ~sparc ~x86" +KEYWORDS="alpha amd64 arm hppa ia64 mips ppc ppc64 s390 sh sparc x86" IUSE="nls" DEPEND="dev-lang/perl diff --git a/sys-apps/help2man/help2man-1.35.1.ebuild b/sys-apps/help2man/help2man-1.35.1.ebuild new file mode 100644 index 000000000000..718f6ea6f640 --- /dev/null +++ b/sys-apps/help2man/help2man-1.35.1.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/help2man/help2man-1.35.1.ebuild,v 1.1 2005/01/12 18:30:57 vapier Exp $ + +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/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +IUSE="nls" + +RDEPEND="dev-lang/perl" +DEPEND="${RDEPEND} + 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 +} |