blob: fed1581e373cd5c77a7477d99a961d3742976b55 (
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
36
37
38
39
40
41
42
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/xml2/xml2-0.3-r1.ebuild,v 1.2 2006/04/30 05:58:42 grobian Exp $
inherit eutils
DESCRIPTION="Converts XML to line-oriented file format"
HOMEPAGE="http://dan.egnor.name/xml2/"
SRC_URI="http://download.gale.org/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~ppc-macos ~x86"
IUSE=""
DEPEND="dev-libs/libxml2"
src_unpack() {
unpack "${A}"
cd "${S}"
epatch ${FILESDIR}/${P}-libxml2.patch
sed -i -e "s:CFLAGS=-g -Wall:CFLAGS=${CFLAGS}:" makefile || \
die "Sed expression failed"
}
src_compile() {
emake || die "make failed"
}
src_install() {
dobin 2csv 2xml csv2 xml2
# HTML support symlinks, upstream considers it be necessary
dosym /usr/bin/2xml /usr/bin/2html
dosym /usr/bin/xml2 /usr/bin/html2
}
|