summaryrefslogtreecommitdiff
path: root/app-text/xml2doc/xml2doc-20030510-r1.ebuild
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2023-03-19 06:33:49 +0000
committerV3n3RiX <venerix@koprulu.sector>2023-03-19 06:33:49 +0000
commit78634f348a30a55cc55606ee1ecde032241ceaeb (patch)
tree528e39df571e37b31bfca1811c69bcc06c4af22f /app-text/xml2doc/xml2doc-20030510-r1.ebuild
parent434fbe89e81a1fe06d92676be72ab7f862cc3f53 (diff)
gentoo auto-resync : 19:03:2023 - 06:33:49
Diffstat (limited to 'app-text/xml2doc/xml2doc-20030510-r1.ebuild')
-rw-r--r--app-text/xml2doc/xml2doc-20030510-r1.ebuild50
1 files changed, 0 insertions, 50 deletions
diff --git a/app-text/xml2doc/xml2doc-20030510-r1.ebuild b/app-text/xml2doc/xml2doc-20030510-r1.ebuild
deleted file mode 100644
index 919ecba3c27c..000000000000
--- a/app-text/xml2doc/xml2doc-20030510-r1.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit toolchain-funcs
-
-DESCRIPTION="Tool to convert simple XML to a variety of formats (pdf, html, txt, manpage)"
-HOMEPAGE="http://xml2doc.sourceforge.net"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tgz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86"
-
-DEPEND="dev-libs/libxml2:2"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${PN}"
-
-PATCHES=(
- # Fix pointer-related bug detected by a QA notice
- "${FILESDIR}"/${PN}-pointer_fix.patch
- # Don't strip symbols from binary (bug #152266)
- "${FILESDIR}"/${P}-makefile.patch
- # fix GCC 10 -fno-common change
- "${FILESDIR}"/${P}-gcc10-no-common.patch
-)
-
-src_configure() {
- tc-export CC
- econf --disable-pdf
-}
-
-src_compile() {
- default
-
- cd doc || die
- "${S}"/src/xml2doc -oM manpage.xml xml2doc.1 || die
-}
-
-src_install() {
- dobin src/xml2doc
-
- einstalldocs
- docinto examples
- dodoc examples/*.{xml,png}
-
- doman doc/xml2doc.1
-}