diff options
author | Andreas K. Hüttel <dilfridge@gentoo.org> | 2024-10-29 17:18:31 +0100 |
---|---|---|
committer | Andreas K. Hüttel <dilfridge@gentoo.org> | 2024-10-29 17:18:48 +0100 |
commit | 55fe62a7123518d0d742eb084bc423f7e70ebef9 (patch) | |
tree | d266aa55ac3aca726839b5f845f778ec904d9ecc /app-text | |
parent | mail-client/aerc: drop 0.14.0, 0.15.2, 0.16.0, 0.17.0 (diff) | |
download | gentoo-55fe62a7123518d0d742eb084bc423f7e70ebef9.tar.gz gentoo-55fe62a7123518d0d742eb084bc423f7e70ebef9.tar.bz2 gentoo-55fe62a7123518d0d742eb084bc423f7e70ebef9.zip |
app-text/linuxdoc-tools: drop 0.9.73-r1
Bug: https://bugs.gentoo.org/883203
Signed-off-by: Andreas K. Hüttel <dilfridge@gentoo.org>
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/linuxdoc-tools/Manifest | 1 | ||||
-rw-r--r-- | app-text/linuxdoc-tools/linuxdoc-tools-0.9.73-r1.ebuild | 88 |
2 files changed, 0 insertions, 89 deletions
diff --git a/app-text/linuxdoc-tools/Manifest b/app-text/linuxdoc-tools/Manifest index e5ce01ec717c..b3de8a2c0e42 100644 --- a/app-text/linuxdoc-tools/Manifest +++ b/app-text/linuxdoc-tools/Manifest @@ -1,2 +1 @@ -DIST linuxdoc-tools-0.9.73.tar.gz 613971 BLAKE2B e2e04aaa44d5e2cea5af266e38b476381f87a02b9704e03ae5943f7714634d5d214350abd5b193f2efe656a264403c679495af5f954870b30d32b8b799ad7206 SHA512 b26896316e259cf4ef170814d410b1e39e58f61db49b03b4b9c1f767f8459d84214e92d9dcc09ad739508fd9c3c5fe4a2264cbb3c693a11362e59fd221655252 DIST linuxdoc-tools-0.9.82.tar.bz2 550046 BLAKE2B 3bf9b9680659a3a6873e31116975fca7372167a701e630d762d37fcacf7acb9f1df4031558c4db24769e598a17b206e1c09607e341fc90f91497c15ff0cb05a1 SHA512 82560d9dc4db231e0a2c1fa3732d062bfd6af2cd3c5ffa0960939b2888533882437ddeeb54219e31acc7eaa10fdeee84ba206d32516cc5ed4f3fba2eab1ec0e4 diff --git a/app-text/linuxdoc-tools/linuxdoc-tools-0.9.73-r1.ebuild b/app-text/linuxdoc-tools/linuxdoc-tools-0.9.73-r1.ebuild deleted file mode 100644 index 1ad64a2dfc85..000000000000 --- a/app-text/linuxdoc-tools/linuxdoc-tools-0.9.73-r1.ebuild +++ /dev/null @@ -1,88 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools latex-package perl-functions sgml-catalog-r1 toolchain-funcs - -DESCRIPTION="A toolset for processing LinuxDoc DTD SGML files" -HOMEPAGE="https://gitlab.com/agmartin/linuxdoc-tools" -SRC_URI="https://gitlab.com/agmartin/linuxdoc-tools/-/archive/${PV}/${P}.tar.gz" - -LICENSE="GPL-3+ MIT SGMLUG" -SLOT="0" -KEYWORDS="amd64 ppc ~sparc x86" -IUSE="doc" - -RDEPEND=" - || ( app-text/openjade app-text/opensp ) - app-text/sgml-common - dev-lang/perl:= - sys-apps/groff -" -DEPEND="${RDEPEND} - app-alternatives/lex - app-alternatives/awk - doc? ( - dev-texlive/texlive-fontsrecommended - virtual/latex-base - ) -" - -src_prepare() { - default_src_prepare - # Pregenerated configure scripts fail. - eautoreconf -} - -src_configure() { - perl_set_version - tc-export CC - local myeconfargs=( - --disable-docs - --with-texdir="${TEXMF}/tex/latex/${PN}" - --with-perllibdir="${VENDOR_ARCH}" - --with-installed-iso-entities - ) - use doc && myeconfargs+=(--enable-docs="txt pdf html") - - econf "${myeconfargs[@]}" -} - -src_compile() { - # Prevent access violations from bitmap font files generation. - use doc && export VARTEXFONTS="${T}/fonts" - default_src_compile -} - -src_install() { - # Makefile ignores docdir configuration option. - emake DESTDIR="${D}" docdir="${EPREFIX}/usr/share/doc/${PF}" install - dodoc ChangeLog README - - insinto /etc/sgml - newins - linuxdoc.cat <<-EOF - CATALOG "${EPREFIX}/usr/share/linuxdoc-tools/linuxdoc-tools.catalog" - EOF -} - -pkg_preinst() { - # work around sgml-catalog.eclass removing it - cp "${ED}"/etc/sgml/linuxdoc.cat "${T}" || die -} - -pkg_postinst() { - local backup=${T}/linuxdoc.cat - local real=${EROOT}/etc/sgml/linuxdoc.cat - if ! cmp -s "${backup}" "${real}"; then - cp "${backup}" "${real}" || die - fi - - latex-package_pkg_postinst - sgml-catalog-r1_pkg_postinst -} - -pkg_postrm() { - latex-package_pkg_postrm - sgml-catalog-r1_pkg_postrm -} |