blob: da0eee08990b5b586805b22f83c61c4b1ac0e0b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
# Copyright 1999-2023 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 ~loong 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
}
|