blob: 133f2ef77a22956720e3a6d3f66e6cf3a0373ae0 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# 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-r1.ebuild,v 1.9 2004/07/22 04:52:13 obz Exp $
inherit sgml-catalog
MY_P=${P/-stylesheets/}
S=${WORKDIR}/${MY_P}
DESCRIPTION="DSSSL Stylesheets for DocBook."
SRC_URI="mirror://sourceforge/docbook/${MY_P}.tar.gz"
HOMEPAGE="http://docbook.sourceforge.net/"
RDEPEND="app-text/sgml-common"
SLOT="0"
LICENSE="as-is"
KEYWORDS="x86 ppc sparc alpha hppa amd64"
IUSE=""
sgml-catalog_cat_include "/etc/sgml/dsssl-docbook-stylesheets.cat" \
"/usr/share/sgml/docbook/dsssl-stylesheets-${PV}/catalog"
sgml-catalog_cat_include "/etc/sgml/sgml-docbook.cat" \
"/etc/sgml/dsssl-docbook-stylesheets.cat"
src_unpack() {
unpack ${A}
cd ${S}
cp ${FILESDIR}/${P}.Makefile Makefile
}
src_compile() {
return 0
}
src_install () {
make \
BINDIR="${D}/usr/bin" \
DESTDIR="${D}/usr/share/sgml/docbook/dsssl-stylesheets-${PV}" \
install || die
}
|