blob: b66bdef3beb83447a633f09869c06497bd9942af (
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
|
# Copyright 1999-2005 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.66.1.ebuild,v 1.9 2005/10/13 00:06:56 leonardop Exp $
DESCRIPTION="XSL Stylesheets for Docbook"
HOMEPAGE="http://docbook.sourceforge.net/"
SRC_URI="mirror://sourceforge/docbook/docbook-xsl-${PV}.tar.gz"
LICENSE="|| ( as-is BSD )"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sparc x86"
IUSE=""
DEPEND="dev-libs/libxml2
>=app-text/build-docbook-catalog-1.1"
S=${WORKDIR}/docbook-xsl-${PV}
src_install() {
# Create the installation directory
DEST="/usr/share/sgml/docbook/xsl-stylesheets-${PV}"
dodir ${DEST} /usr/share/doc/${P}
# The list of stylesheets we want to install
sheets="common extensions fo html htmlhelp images \
javahelp lib manpages params profiling \
template xhtml"
for i in ${sheets}; do
cd ${S}
cp -pPRf ${i} ${D}/${DEST}
cd ${D}/${DEST}/${i}
[ -e ChangeLog ] && \
mv ChangeLog ${D}/usr/share/doc/${P}/ChangeLog.${i}
[ -e README ] && \
mv README ${D}/usr/share/doc/${P}/README.${i}
done
# Install the documentation
cd ${S}
dodoc BUGS TODO WhatsNew
cp -pPRf doc ${D}/usr/share/doc/${PF}/html
cp VERSION ${D}/${DEST}
# Only a few things in /usr/share/doc make sense to compress.
# Everything else needs to be uncompressed to be useful. (bug 23048)
find ${D}/usr/share/doc/${P} -name "ChangeLog" -exec gzip -f -9 \{\} \;
gzip -f -9 ${D}/usr/share/doc/${P}/{README,ChangeLog}.*
}
pkg_postinst() {
build-docbook-catalog
}
pkg_postrm() {
build-docbook-catalog
}
|