summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabian Groffen <grobian@gentoo.org>2023-05-28 11:42:01 +0200
committerFabian Groffen <grobian@gentoo.org>2023-05-28 11:42:01 +0200
commitb56363705086818bcc46958fe5e7d6fc15e7ca1d (patch)
tree536f3cda4d75a28a6e007539c2d750d2899c4e7a /sys-apps/help2man/help2man-1.48.5.ebuild
parentsys-apps/coreutils: sync with gx86 (diff)
downloadprefix-b56363705086818bcc46958fe5e7d6fc15e7ca1d.tar.gz
prefix-b56363705086818bcc46958fe5e7d6fc15e7ca1d.tar.bz2
prefix-b56363705086818bcc46958fe5e7d6fc15e7ca1d.zip
sys-apps/help2man: migrate to gx86
Signed-off-by: Fabian Groffen <grobian@gentoo.org>
Diffstat (limited to 'sys-apps/help2man/help2man-1.48.5.ebuild')
-rw-r--r--sys-apps/help2man/help2man-1.48.5.ebuild44
1 files changed, 0 insertions, 44 deletions
diff --git a/sys-apps/help2man/help2man-1.48.5.ebuild b/sys-apps/help2man/help2man-1.48.5.ebuild
deleted file mode 100644
index 0e344537a3..0000000000
--- a/sys-apps/help2man/help2man-1.48.5.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="GNU utility to convert program --help output to a man page"
-HOMEPAGE="https://www.gnu.org/software/help2man/"
-SRC_URI="mirror://gnu/${PN}/${P}.tar.xz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris"
-IUSE="nls"
-
-RDEPEND="dev-lang/perl
- nls? ( dev-perl/Locale-gettext )"
-DEPEND="${RDEPEND}"
-
-DOCS=( debian/changelog NEWS README THANKS ) #385753
-
-PATCHES=(
- "${FILESDIR}"/${PN}-1.46.1-linguas.patch
-)
-
-src_prepare() {
- default
-
- if [[ ${CHOST} == *-darwin* ]] ; then
- sed -i \
- -e 's/-shared/-bundle/' \
- Makefile.in || die
- fi
-
- use elibc_Cygwin && eapply -p2 "${FILESDIR}"/${PN}-1.48.5-cygwin.patch
-}
-
-src_configure() {
- # Disable gettext requirement as the release includes the gmo files #555018
- local myeconfargs=(
- ac_cv_path_MSGFMT=$(type -P false)
- $(use_enable nls)
- )
- econf "${myeconfargs[@]}"
-}