| 1 |
# Copyright 1999-2000 Gentoo Technologies, Inc.
|
| 2 |
# Distributed under the terms of the GNU General Public License, v2 or later
|
| 3 |
# Author Your Name <your email>
|
| 4 |
# $Header: /home/cvsroot/gentoo-x86/dev-lang/entity/entity-pre-0.7.0.ebuild,v 1.3 2000/12/21 08:22:28 achim Exp $
|
| 5 |
|
| 6 |
P=entity-pre0.7.0
|
| 7 |
A=${P}.tar.gz
|
| 8 |
S=${WORKDIR}/${P}
|
| 9 |
DESCRIPTION="An XML Framework"
|
| 10 |
SRC_URI="http://entity.evilplan.org/Download/files/${A}"
|
| 11 |
HOMEPAGE="http://entity.evilplan.org"
|
| 12 |
|
| 13 |
DEPEND=">=media-libs/imlib-1.9.8.1
|
| 14 |
>=dev-libs/libpcre-3.2
|
| 15 |
>=dev-lang/tcl-tk-8.1.1
|
| 16 |
>=sys-devel/perl-5.6"
|
| 17 |
|
| 18 |
RDEPEND="$DEPEND
|
| 19 |
sys-apps/bash"
|
| 20 |
|
| 21 |
src_compile() {
|
| 22 |
|
| 23 |
cd ${S}
|
| 24 |
try DEBIAN_ENTITY_MAGIC=voodoo ./configure --prefix=/usr --host=${CHOST} \
|
| 25 |
--enable-exec-class=yes \
|
| 26 |
--enable-gtk=module \
|
| 27 |
--enable-perl=static --enable-python=no \
|
| 28 |
--enable-tcl=module --with-tcl=/usr/lib \
|
| 29 |
--enable-c=module \
|
| 30 |
--enable-javascript=yes --with-included-njs
|
| 31 |
try make
|
| 32 |
|
| 33 |
}
|
| 34 |
|
| 35 |
src_install () {
|
| 36 |
|
| 37 |
cd ${S}
|
| 38 |
make DESTDIR=${D} install
|
| 39 |
}
|
| 40 |
|