blob: 2e2421296faab61fb1c73e7d75ce6074a715eac3 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/docbook-dsssl-stylesheets/docbook-dsssl-stylesheets-1.77.ebuild,v 1.8 2002/12/15 10:44:11 bjb Exp $
MY_P=${P/-stylesheets/}
S=${WORKDIR}/${MY_P}
DESCRIPTION="DSSSL Stylesheets for DocBook."
SRC_URI="mirror://sourceforge/docbook/${MY_P}.tar.gz"
HOMEPAGE="http://www.sourceforge.net/docbook/"
RDEPEND="app-text/sgml-common"
SLOT="0"
LICENSE="as-is"
KEYWORDS="x86 ppc sparc alpha"
src_unpack() {
unpack ${A}
cd ${S}
cp ${FILESDIR}/${P}.Makefile Makefile
}
src_install () {
make \
BINDIR="${D}/usr/bin" \
DESTDIR="${D}/usr/share/sgml/docbook/dsssl-stylesheets-${PV}" \
install || die
}
pkg_postinst() {
if [ -x "/usr/bin/install-catalog" ] && [ "$ROOT" = "/" ]
then
install-catalog --add \
/etc/sgml/dsssl-docbook-stylesheets.cat \
/usr/share/sgml/docbook/dsssl-stylesheets-${PV}/catalog
install-catalog --add \
/etc/sgml/sgml-docbook.cat \
/etc/sgml/dsssl-docbook-stylesheets.cat
fi
}
pkg_prerm() {
if [ -x "/usr/bin/install-catalog" ] && [ "$ROOT" = "/" ]
then
if [ -e /etc/sgml/dsssl-docbook-stylesheets.cat ]
then
install-catalog --remove \
/etc/sgml/dsssl-docbook-stylesheets.cat \
/usr/share/sgml/docbook/dsssl-stylesheets-${PV}/catalog
fi
if [ -e /etc/sgml/sgml-docbook.cat ]
then
install-catalog --remove \
/etc/sgml/sgml-docbook.cat \
/etc/sgml/dsssl-docbook-stylesheets.cat
fi
fi
}
|