You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-text/docbook2X/docbook2X-0.8.8-r4.ebuild

62 lines
1.4 KiB

# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit autotools
DESCRIPTION="Tools to convert docbook to man and info"
SRC_URI="mirror://sourceforge/docbook2x/${P}.tar.gz"
HOMEPAGE="http://docbook2x.sourceforge.net/"
SLOT="0"
KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86 ~x86-linux ~x64-macos"
IUSE="test"
RESTRICT="!test? ( test )"
LICENSE="MIT"
# dev-perl/XML-LibXML - although not mentioned upstream is required
# for make check to complete.
DEPEND="dev-lang/perl
dev-libs/libxslt
dev-perl/XML-NamespaceSupport
dev-perl/XML-SAX
dev-perl/XML-LibXML
app-text/docbook-xsl-stylesheets
=app-text/docbook-xml-dtd-4.2*"
RDEPEND="${DEPEND}"
PATCHES=(
# Patches from debian, for description see patches itself.
"${FILESDIR}/${P}-filename_whitespace_handling.patch"
"${FILESDIR}/${P}-preprocessor_declaration_syntax.patch"
"${FILESDIR}/${P}-error_on_missing_refentry.patch"
# bug #296112
"${FILESDIR}/${P}-drop-htmldir.patch"
)
src_prepare() {
default
sed -i -e 's/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/' configure.ac || die 'sed on configure.ac failed'
# bug #290284
eautoreconf
}
src_configure() {
local myeconfargs=(
--with-xslt-processor=libxslt
--program-transform-name='/^docbook2/s,$,.pl,'
)
econf "${myeconfargs[@]}"
}
src_install() {
default
dosym docbook2man.pl /usr/bin/docbook2x-man
dosym docbook2texi.pl /usr/bin/docbook2x-texi
}