blob: 145ea1417721715d792f4b8642cff999cff16afc (
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
|
# Copyright 1999-2006 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.68.1-r1.ebuild,v 1.14 2006/03/21 02:53:36 vapier Exp $
DESCRIPTION="XSL Stylesheets for Docbook"
HOMEPAGE="http://docbook.sourceforge.net/projects/xsl/index.html"
SRC_URI="mirror://sourceforge/docbook/docbook-xsl-${PV}.tar.bz2"
LICENSE="|| ( as-is BSD )"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 m68k mips ppc ppc64 s390 sh 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}
# The list of stylesheets we want to install
local sheets="common eclipse extensions fo html htmlhelp images \
javahelp lib manpages params profiling \
template xhtml"
for i in ${sheets}; do
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
cd ${S}
cp -pPRf ${i} ${D}/${DEST}
done
# Install the documentation
cd ${S}
dodoc BUGS README RELEASE-NOTES.txt TODO WhatsNew
dohtml -r doc/*
cp VERSION ${D}/${DEST}
}
pkg_postinst() {
build-docbook-catalog
}
pkg_postrm() {
build-docbook-catalog
}
|