blob: 0b903894f139f01f634e5f985944e5b74d775730 (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lisp/abcl/abcl-0.20.0.ebuild,v 1.2 2014/07/11 08:45:40 patrick Exp $
EAPI="2"
inherit java-pkg-2 java-ant-2
MY_P=${PN}-src-${PV}
DESCRIPTION="Armed Bear Common Lisp is a Common Lisp implementation for the JVM."
HOMEPAGE="http://common-lisp.net/project/armedbear/"
SRC_URI="http://common-lisp.net/project/armedbear/releases/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~x86"
IUSE="jad"
DEPEND=">=virtual/jdk-1.5"
RDEPEND=">=virtual/jre-1.5
jad? ( dev-java/jad-bin )"
S="${WORKDIR}"/${MY_P}
src_compile() {
eant abcl.compile || die "Can't compile ABCL"
eant abcl.jar || die "Can't make ABCL jar archive"
}
src_install() {
java-pkg_dojar dist/abcl.jar
java-pkg_dolauncher ${PN} --java_args "-server -Xrs" --main org.armedbear.lisp.Main
dodoc README || die "Can't install README"
}
|