diff options
author | Mike Frysinger <vapier@gentoo.org> | 2010-12-29 22:04:30 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2010-12-29 22:04:30 +0000 |
commit | f8fd1df7b54d497bec373b07bfc7163744192aea (patch) | |
tree | 5bc6d9d1bad18f379f051faa27b237e1b9017412 /sys-apps/help2man | |
parent | arm stable, bug #344827 (diff) | |
download | gentoo-2-f8fd1df7b54d497bec373b07bfc7163744192aea.tar.gz gentoo-2-f8fd1df7b54d497bec373b07bfc7163744192aea.tar.bz2 gentoo-2-f8fd1df7b54d497bec373b07bfc7163744192aea.zip |
old
Diffstat (limited to 'sys-apps/help2man')
-rw-r--r-- | sys-apps/help2man/help2man-1.36.4-r1.ebuild | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/sys-apps/help2man/help2man-1.36.4-r1.ebuild b/sys-apps/help2man/help2man-1.36.4-r1.ebuild deleted file mode 100644 index 5785dcba816e..000000000000 --- a/sys-apps/help2man/help2man-1.36.4-r1.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/help2man/help2man-1.36.4-r1.ebuild,v 1.9 2010/01/11 04:23:03 vapier Exp $ - -inherit eutils - -DESCRIPTION="GNU utility to convert program --help output to a man page" -HOMEPAGE="http://www.gnu.org/software/help2man" -SRC_URI="mirror://gnu/help2man/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd" -IUSE="nls elibc_glibc" - -RDEPEND="dev-lang/perl" -DEPEND="${RDEPEND} - elibc_glibc? ( nls? ( dev-perl/Locale-gettext - >=sys-devel/gettext-0.12.1-r1 ) )" - -src_unpack() { - unpack ${A} - cd "${S}" - - epatch "${FILESDIR}/${P}-respect-LDFLAGS.patch" -} - -src_compile() { - local myconf - use elibc_glibc && myconf="${myconf} $(use_enable nls)" \ - || myconf="${myconf} --disable-nls" - - econf ${myconf} || die - emake || die "emake failed" -} - -src_install() { - emake -j1 DESTDIR="${D}" install || die "make install failed" - dodoc ChangeLog NEWS README THANKS -} |