blob: e69d417b84c99bb8e6d17b01205c8ef3f6b644bf (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Achim Gottinger <achim@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/app-text/sgml2x/sgml2x-0.11-r1.ebuild,v 1.9 2002/04/27 09:32:57 seemant Exp $
S=${WORKDIR}/${P}
DESCRIPTION="Frontend for jade and jadetex"
SRC_URI="ftp://sgml2x.sourceforge.net/pub/sgml2x/${P}.tar.gz"
HOMEPAGE="http://sgml2x.sourceforge.net/"
DEPEND=">=sys-devel/perl-5"
SLOT="0"
src_compile() {
make || die
}
src_install() {
dodir /usr/bin
dodir /etc
make PREFIX=${D}/usr prefix=${D}/usr sysconfdir=${D}/etc install
echo <<END > ${D}/sgml2x.conf
# Path to dsssl-stylesheets
stylepath=/usr/share/sgml/docbook/dsssl-stylesheets-1.64
END
dodoc README
dohtml -r doc
}
|