blob: e819aff7c6e2cca6ffa6133de00297e08bb57937 (
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
62
63
64
65
66
67
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/docbook-xsl-stylesheets/docbook-xsl-stylesheets-1.75.2.ebuild,v 1.4 2009/08/30 16:49:10 nixnut Exp $
DESCRIPTION="XSL Stylesheets for Docbook"
HOMEPAGE="http://wiki.docbook.org/topic/DocBookXslStylesheets"
SRC_URI="mirror://sourceforge/docbook/docbook-xsl-${PV}.tar.bz2"
LICENSE="BSD"
SLOT="0"
KEYWORDS="alpha ~amd64 ~arm hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd"
IUSE="test"
DEPEND="
test? (
dev-libs/libxml2
dev-libs/libxslt )"
RDEPEND=">=app-text/build-docbook-catalog-1.1"
S=${WORKDIR}/docbook-xsl-${PV}
# Makefile is broken in this release
RESTRICT=test
# The makefile runs tests, not builds.
src_compile() { :; }
src_test() {
emake check || die "test failed"
}
src_install() {
# Create the installation directory
DEST="/usr/share/sgml/docbook/xsl-stylesheets"
insinto ${DEST}
local i
for sheet in $(find . -maxdepth 1 -mindepth 1 -type d); do
i=$(basename $sheet)
cd "${S}"/${i}
for doc in ChangeLog README; do
if [ -e "$doc" ]; then
mv ${doc} ${doc}.${i}
dodoc ${doc}.${i}
rm ${doc}.${i}
fi
done
doins -r "${S}"/${i}
done
# Install misc. docs
# The changelog is now zipped, and copied as the RELEASE-NOTES, so we
# don't need to install it
cd "${S}"
dodoc AUTHORS BUGS NEWS README RELEASE-NOTES.txt TODO
doins VERSION
}
pkg_postinst() {
build-docbook-catalog
}
pkg_postrm() {
build-docbook-catalog
}
|