blob: d468254968d98743dfb105e9756178613a8c578c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/xmltoman/xmltoman-0.3.ebuild,v 1.5 2007/02/03 17:17:05 swegener Exp $
DESCRIPTION="Simple scripts for converting xml to groff or html"
HOMEPAGE="http://packages.debian.org/unstable/devel/xmltoman"
SRC_URI="mirror://debian/pool/main/${PN:0:1}/${PN}/${P/-/_}.orig.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE=""
DEPEND="dev-lang/perl
dev-perl/XML-Parser"
RDEPEND="${DEPEND}"
src_install() {
make install DESTDIR="${D}" PREFIX="/usr" || die "make install failed"
dodoc README
doman xmltoman.1 xmlmantohtml.1
}
|