forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docbook2X-0.8.8-r4.ebuild
56 lines (47 loc) · 1.53 KB
/
docbook2X-0.8.8-r4.ebuild
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
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="5"
AUTOTOOLS_AUTORECONF=1 #290284
inherit autotools-utils
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 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-linux ~x86-solaris"
IUSE="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() {
sed -i -e 's/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/' configure.ac || die 'sed on configure.ac failed'
autotools-utils_src_prepare
}
src_configure() {
local myeconfargs=(
--htmldir="${EPREFIX}/usr/share/doc/${PF}/html"
--with-xslt-processor=libxslt
--program-transform-name='/^docbook2/s,$,.pl,'
)
autotools-utils_src_configure
}
src_install() {
autotools-utils_src_install
dosym docbook2man.pl /usr/bin/docbook2x-man
dosym docbook2texi.pl /usr/bin/docbook2x-texi
}