blob: 307787e424b5fb0e31115f9d6ee257a795c1a33c (
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
# Copyright 1999-2004 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.60.1.ebuild,v 1.9 2004/06/24 22:33:19 agriffis Exp $
S=${WORKDIR}/docbook-xsl-${PV}
DESCRIPTION="XSL Stylesheets for Docbook"
SRC_URI="mirror://sourceforge/docbook/docbook-xsl-${PV}.tar.gz"
HOMEPAGE="http://www.oasis-open.org/docbook/"
DEPEND="dev-libs/libxml2"
SLOT="0"
LICENSE="as-is | BSD"
KEYWORDS="x86 hppa ~amd64"
src_install() {
DEST="/usr/share/sgml/docbook/xsl-stylesheets-${PV}"
dodir ${DEST} /usr/share/doc/${P}
cp -af doc ${D}/usr/share/doc/${P}/html
cp VERSION ${D}/${DEST}
for i in common extensions fo html htmlhelp images javahelp lib template xhtml
do
cd ${S}
cp -af ${i} ${D}/${DEST}
cd ${D}/${DEST}/${i}
for j in ChangeLog LostLog README
do
if [ -e ${j} ]
then
mv ${j} ${D}/usr/share/doc/${P}/${j}.${i}
fi
done
done
cd ${S}
dodoc BUGS TODO WhatsNew
# 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,LostLog}.*
dodir /etc/xml
}
pkg_postinst() {
CATALOG=/etc/xml/catalog
[ -e $CATALOG ] || /usr/bin/xmlcatalog --noout --create $CATALOG
# Ok, so the next version is out and we still have to manually delete them.
# I'm working on an xml-catalog eclass. When that's ready, we'll use it.
/usr/bin/xmlcatalog --noout --del \
"/usr/share/sgml/docbook/xsl-stylesheets-1.52.2" $CATALOG
/usr/bin/xmlcatalog --noout --del \
"/usr/share/sgml/docbook/xsl-stylesheets-1.57.0" $CATALOG
/usr/bin/xmlcatalog --noout --del \
"/usr/share/sgml/docbook/xsl-stylesheets-1.59.1" $CATALOG
/usr/bin/xmlcatalog --noout --del \
"/usr/share/sgml/docbook/xsl-stylesheets-1.59.2" $CATALOG
/usr/bin/xmlcatalog --noout --del \
"/usr/share/sgml/docbook/xsl-stylesheets-1.60.1" $CATALOG
/usr/bin/xmlcatalog --noout --add "rewriteSystem" \
"http://docbook.sourceforge.net/release/xsl/${PV}" \
"/usr/share/sgml/docbook/xsl-stylesheets-${PV}" $CATALOG
/usr/bin/xmlcatalog --noout --add "rewriteURI" \
"http://docbook.sourceforge.net/release/xsl/${PV}" \
"/usr/share/sgml/docbook/xsl-stylesheets-${PV}" $CATALOG
/usr/bin/xmlcatalog --noout --add "rewriteSystem" \
"http://docbook.sourceforge.net/release/xsl/current" \
"/usr/share/sgml/docbook/xsl-stylesheets-${PV}" $CATALOG
/usr/bin/xmlcatalog --noout --add "rewriteURI" \
"http://docbook.sourceforge.net/release/xsl/current" \
"/usr/share/sgml/docbook/xsl-stylesheets-${PV}" $CATALOG
}
pkg_postrm() {
CATALOG=/etc/xml/catalog
# Let's clean up after ourselves.
/usr/bin/xmlcatalog --noout --del \
"/usr/share/sgml/docbook/xsl-stylesheets-${PV}" $CATALOG
}
|