summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Seifert <soap@gentoo.org>2023-08-27 16:24:22 +0200
committerDavid Seifert <soap@gentoo.org>2023-08-27 16:24:22 +0200
commit74265938f6caa677925d62122ff8cf7c19732575 (patch)
tree22ee74606520227c9621a6ec164220adff7cba98 /app-text/xmlto
parentapp-text/xdvik: drop 22.87.03-r4, 22.87.06 (diff)
downloadgentoo-74265938f6caa677925d62122ff8cf7c19732575.tar.gz
gentoo-74265938f6caa677925d62122ff8cf7c19732575.tar.bz2
gentoo-74265938f6caa677925d62122ff8cf7c19732575.zip
app-text/xmlto: drop 0.0.28-r9
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'app-text/xmlto')
-rw-r--r--app-text/xmlto/xmlto-0.0.28-r9.ebuild56
1 files changed, 0 insertions, 56 deletions
diff --git a/app-text/xmlto/xmlto-0.0.28-r9.ebuild b/app-text/xmlto/xmlto-0.0.28-r9.ebuild
deleted file mode 100644
index 9443db4607c7..000000000000
--- a/app-text/xmlto/xmlto-0.0.28-r9.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools
-
-DESCRIPTION="Script for converting XML and DocBook documents to a variety of output formats"
-HOMEPAGE="https://pagure.io/xmlto"
-SRC_URI="https://releases.pagure.org/${PN}/${P}.tar.bz2"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
-IUSE="latex text"
-
-RDEPEND="
- app-text/docbook-xsl-stylesheets
- app-text/docbook-xml-dtd:4.2
- dev-libs/libxslt
- || ( sys-apps/util-linux app-misc/getopt )
- text? ( || ( virtual/w3m www-client/elinks www-client/links www-client/lynx ) )
- latex? ( dev-texlive/texlive-formatsextra )
-"
-DEPEND="${RDEPEND}"
-# We only depend on flex when we patch the input lexer.
-# We touch it in fix-warnings.patch.
-BDEPEND="sys-devel/flex"
-
-DOCS=( AUTHORS ChangeLog FAQ NEWS README THANKS )
-
-PATCHES=(
- "${FILESDIR}"/${PN}-0.0.22-format_fo_passivetex_check.patch
- "${FILESDIR}"/${PN}-0.0.28-allow-links.patch
- "${FILESDIR}"/${P}-dont-hardcode-paths.patch
- "${FILESDIR}"/${P}-fix-warnings.patch
-)
-
-src_prepare() {
- default
-
- # fix symbol clash on Solaris
- if [[ ${CHOST} == *-solaris* ]] ; then
- sed -i -e 's/\(attrib\|val\)/XMLTO\1/g' xmlif/xmlif.l || die
- fi
-
- eautoreconf
-}
-
-src_configure() {
- # We don't want the script to detect /bin/sh if it is bash.
- export ac_cv_path_BASH="${BASH}"
- has_version sys-apps/util-linux || export GETOPT=getopt-long
-
- econf
-}