summaryrefslogtreecommitdiff
blob: beb9dbc367d794e49dbb27c7a6e597791beba051 (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/sablotron/sablotron-0.52.ebuild,v 1.2 2002/04/28 03:59:29 seemant Exp $

MY_P="Sablot-${PV}"
S=${WORKDIR}/${MY_P}
DESCRIPTION="An XSLT Parser in C++"
SRC_URI="http://www.gingerall.com/perl/rd?url=sablot/${MY_P}.tar.gz"
HOMEPAGE="http://www.gingerall.com/charlie-bin/get/webGA/act/sablotron.act"

DEPEND=">=sys-devel/gcc-2.95.2 >=dev-libs/expat-1.95.1 virtual/glibc"


src_compile() {
	./configure --prefix=/usr --host=${CHOST} || die
	emake || die

}

src_install () {
	dodir /usr/lib
	dodir /usr/include
	dodir /usr/bin
	make prefix=${D}/usr install || die
	dodoc README RELEASE 
	dodoc Sablot/TODO
}