commit: 9e8dcaa6ff6609af0da67977845e2b395f632c1b Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org> AuthorDate: Sat Nov 2 22:27:43 2024 +0000 Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org> CommitDate: Sat Nov 2 22:28:13 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e8dcaa6
sys-apps/man2html: drop 1.6g Bug: https://bugs.gentoo.org/879769 Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org> sys-apps/man2html/man2html-1.6g.ebuild | 51 ---------------------------------- 1 file changed, 51 deletions(-) diff --git a/sys-apps/man2html/man2html-1.6g.ebuild b/sys-apps/man2html/man2html-1.6g.ebuild deleted file mode 100644 index de0853bbe7c4..000000000000 --- a/sys-apps/man2html/man2html-1.6g.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit edo toolchain-funcs - -MY_P="man-${PV}" - -DESCRIPTION="Standard commands to read man pages" -HOMEPAGE="http://primates.ximian.com/~flucifredi/man/" -SRC_URI="http://primates.ximian.com/~flucifredi/man/${MY_P}.tar.gz" -S="${WORKDIR}/${MY_P}" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86" - -RDEPEND="!sys-apps/man" - -PATCHES=( - "${FILESDIR}"/man-1.6f-man2html-compression-2.patch - "${FILESDIR}"/man-1.6-cross-compile.patch - "${FILESDIR}"/man-1.6g-compress.patch #205147 -) - -src_configure() { - tc-export CC BUILD_CC - - # Just a stub to disable configure check. man2html doesn't use it. - export COMPRESS=true - edo ./configure \ - -confdir=/etc \ - +sgid +fhs \ - +lang none -} - -src_compile() { - emake {src,man2html}/Makefile - emake -C src version.h - emake -C man2html -} - -src_install() { - # A little faster to run this by hand than `emake install`. - cd man2html || die - - dobin man2html - doman man2html.1 - dodoc README TODO -}