| 1 |
# Copyright 1999-2002 Gentoo Technologies, Inc.
|
| 2 |
# Distributed under the terms of the GNU General Public License, v2 or later
|
| 3 |
# $Header: /home/cvsroot/gentoo-x86/app-text/sablotron/sablotron-0.90.ebuild,v 1.2 2002/07/11 06:30:19 drobbins Exp $
|
| 4 |
|
| 5 |
MY_P="Sablot-${PV}"
|
| 6 |
S=${WORKDIR}/${MY_P}
|
| 7 |
DESCRIPTION="An XSLT Parser in C++"
|
| 8 |
SRC_URI="http://www.gingerall.com/perl/rd?url=sablot/${MY_P}.tar.gz"
|
| 9 |
HOMEPAGE="http://www.gingerall.com/charlie-bin/get/webGA/act/sablotron.act"
|
| 10 |
|
| 11 |
DEPEND=">=sys-devel/gcc-2.95.2
|
| 12 |
>=dev-libs/expat-1.95.1
|
| 13 |
virtual/glibc"
|
| 14 |
|
| 15 |
|
| 16 |
src_compile() {
|
| 17 |
./configure --prefix=/usr --host=${CHOST} || die
|
| 18 |
pmake || die
|
| 19 |
}
|
| 20 |
|
| 21 |
src_install () {
|
| 22 |
make prefix=${D}/usr install || die
|
| 23 |
dodoc README* RELEASE
|
| 24 |
dodoc src/TODO
|
| 25 |
}
|