blob: bb2e7e863ac6c279932e8aed8a0a52f20e955c7b (
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-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/html-xml-utils/html-xml-utils-2.8-r1.ebuild,v 1.2 2004/04/26 11:51:32 obz Exp $
DESCRIPTION="A number of simple utilities for manipulating HTML and XML files."
SRC_URI="http://www.w3.org/Tools/HTML-XML-utils/${P}.tar.gz"
HOMEPAGE="http://www.w3.org/Tools/HTML-XML-utils/"
LICENSE="W3C"
IUSE=""
KEYWORDS="x86 ~sparc"
SLOT="0"
DEPEND="virtual/glibc"
src_compile() {
econf || die
emake || die
}
src_install () {
make DESTDIR=${D} install || die
dodoc AUTHORS ChangeLog COPYING INSTALL README TODO
# Check bug #27399, the following binary conflicts with
# one provided by the 'normalize' package, so we're
# renaming this one <obz@gentoo.org>
mv ${D}/usr/bin/normalize ${D}/usr/bin/normalize-html
mv ${D}/usr/share/man/man1/normalize.1 \
${D}/usr/share/man/man1/normalize-html.1
}
|