blob: 20691d6a7f7e69e8af19503f2959d9dbd301fa50 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/docbook-sgml-utils/docbook-sgml-utils-0.6.9.ebuild,v 1.10 2003/03/11 21:11:45 seemant Exp $
MY_PN=${PN/-sgml/}
MY_P=${MY_PN}-${PV}
S=${WORKDIR}/${MY_P}
DESCRIPTION="Shell scripts to manage DocBook documents"
SRC_URI="http://ftp.debian.org/debian/pool/main/d/docbook-utils/${MY_PN}_${PV}.orig.tar.gz"
HOMEPAGE="http://sources.redhat.com/docbook-tools/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ppc sparc "
DEPEND=">=dev-lang/perl-5
app-text/docbook-dsssl-stylesheets"
src_compile() {
econf
make || die
}
src_install() {
einstall
dodoc AUTHORS COPYING ChangeLog NEWS README TODO
mv ${D}/usr/doc/html/${MY_P} ${D}/usr/share/doc/${PF}/html
rm -r ${D}/usr/doc/
}
|