summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2022-01-01 09:37:16 +0000
committerSam James <sam@gentoo.org>2022-01-01 09:38:34 +0000
commitc94fd2639c28d829963b46dc993e230aeda2f2b0 (patch)
treef7d0ea8c4458a8133a04aa3c52f01269ea06f2d2 /app-text
parentdev-db/redis: drop 5.0.13, 6.0.15, 6.2.5 (diff)
downloadgentoo-c94fd2639c28d829963b46dc993e230aeda2f2b0.tar.gz
gentoo-c94fd2639c28d829963b46dc993e230aeda2f2b0.tar.bz2
gentoo-c94fd2639c28d829963b46dc993e230aeda2f2b0.zip
app-text/xmlto: drop 0.0.28-r3
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-text')
-rw-r--r--app-text/xmlto/xmlto-0.0.28-r3.ebuild49
1 files changed, 0 insertions, 49 deletions
diff --git a/app-text/xmlto/xmlto-0.0.28-r3.ebuild b/app-text/xmlto/xmlto-0.0.28-r3.ebuild
deleted file mode 100644
index 6b8268c5f689..000000000000
--- a/app-text/xmlto/xmlto-0.0.28-r3.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-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 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE="latex text"
-
-RDEPEND=">=app-text/docbook-xsl-stylesheets-1.62.0-r1
- app-text/docbook-xml-dtd:4.2
- app-shells/bash:0
- dev-libs/libxslt
- sys-apps/sed
- >=sys-apps/coreutils-6.10-r1
- || ( sys-apps/util-linux app-misc/getopt )
- sys-apps/which
- text? ( || ( virtual/w3m www-client/lynx www-client/elinks ) )
- latex? ( dev-texlive/texlive-formatsextra )"
-# We only depend on flex when we patch the imput lexer.
-DEPEND="${RDEPEND}"
-
-DOCS="AUTHORS ChangeLog FAQ NEWS README THANKS"
-
-PATCHES=(
- "${FILESDIR}"/${PN}-0.0.22-format_fo_passivetex_check.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
-}
-
-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
-}