forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
interprolog-2.1.2.ebuild
61 lines (47 loc) · 1.16 KB
/
interprolog-2.1.2.ebuild
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
inherit eutils java-pkg-2 java-ant-2 versionator
MY_PV="$(delete_all_version_separators)"
MY_P="${PN}${MY_PV}"
DESCRIPTION="InterProlog is a Java front-end and enhancement for Prolog"
HOMEPAGE="http://www.declarativa.com/interprolog/"
SRC_URI="http://www.declarativa.com/interprolog/interprolog212.zip"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="doc"
DEPEND=">=virtual/jdk-1.4
app-arch/unzip
dev-java/ant-core
=dev-java/junit-3.8*"
RDEPEND=">=virtual/jdk-1.4
=dev-java/junit-3.8*
|| (
dev-lang/xsb
dev-lang/swi-prolog
dev-lang/yap )"
S="${WORKDIR}"/${MY_P}
EANT_GENTOO_CLASSPATH="junit"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-java1.4.patch
cp "${FILESDIR}"/build.xml "${S}"
mkdir "${S}"/src
mv "${S}"/com "${S}"/src
rm interprolog.jar junit.jar
}
src_compile() {
java-pkg_jar-from junit
eant jar $(use_doc)
}
src_install() {
java-pkg_dojar dist/${PN}.jar
if use doc ; then
java-pkg_dohtml -r docs/*
dohtml INSTALL.htm faq.htm prologAPI.htm
dohtml -r images
dodoc PaperEPIA01.doc
fi
}