blob: 8e8c57709edf6b789094cd3639e4d51dd04341fa (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/xmlto/xmlto-0.0.15.ebuild,v 1.1 2003/10/22 10:58:59 obz Exp $
DESCRIPTION="A bash script for converting XML and DocBook formatted documents to a variety of output formats"
HOMEPAGE="http://cyberelk.net/tim/xmlto/"
SRC_URI="http://cyberelk.net/tim/data/${PN}/stable/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
IUSE=""
KEYWORDS="~x86"
DEPEND="app-shells/bash
dev-libs/libxslt"
# tetex? ( >=app-text/passivetex-1.4 )"
# Passivetex/xmltex need some sorting out, we'll include pdf/dvi/tex
# support in the first revision to xmlto <obz@gentoo.org>
src_compile() {
econf || die
emake || die
}
src_install() {
make DESTDIR=${D} prefix="/usr" install || die
dodoc AUTHORS COPYING ChangeLog INSTAL NEWS README
docinto xml
dodoc doc/*.xml
}
|