| 1 |
# Copyright 1999-2003 Gentoo Technologies, Inc.
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /home/cvsroot/gentoo-x86/app-text/sablotron/sablotron-0.95.ebuild,v 1.7 2003/02/13 09:44:38 vapier 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 |
SLOT="0"
|
| 12 |
LICENSE="MPL-1.1"
|
| 13 |
KEYWORDS="x86 sparc "
|
| 14 |
|
| 15 |
DEPEND=">=dev-libs/expat-1.95.1 "
|
| 16 |
|
| 17 |
src_compile() {
|
| 18 |
local myconf="--enable-javascript"
|
| 19 |
use perl && myconf="${myconf} --enable-perlconnect"
|
| 20 |
econf ${myconf}
|
| 21 |
emake || die
|
| 22 |
}
|
| 23 |
|
| 24 |
src_install() {
|
| 25 |
einstall
|
| 26 |
dodoc README* RELEASE
|
| 27 |
dodoc src/TODO
|
| 28 |
}
|