blob: 470095e18adb5e4b7b10c39b301806590ef66e8d (
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
43
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/tuprolog/tuprolog-2.0.ebuild,v 1.1 2006/10/31 08:06:59 keri Exp $
inherit eutils java-pkg-2 java-ant-2
MY_P="2p-${PV}"
MY_SRC_P="src-J2SE-${PV}"
DESCRIPTION="tuProlog is a light-weight Prolog for Internet applications and infrastructures"
HOMEPAGE="http://www.alice.unibo.it:8080/tuProlog/"
SRC_URI="http://www.alice.unibo.it/download/tuprolog/files/core/${MY_P}.zip"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~ppc ~x86"
IUSE="doc"
DEPEND=">=virtual/jdk-1.3
app-arch/unzip
dev-java/ant-core"
RDEPEND=">=virtual/jdk-1.3"
S="${WORKDIR}"
src_unpack() {
unpack ${A}
cd "${S}"
cp "${FILESDIR}"/build.xml "${S}"
}
src_compile() {
eant jar $(use_doc)
}
src_install() {
java-pkg_dojar dist/${PN}.jar
if use doc ; then
java-pkg_dohtml -r docs/*
dodoc doc/*.pdf
fi
}
|