Gentoo Archives: gentoo-commits

From: "José María Alonso" <nimiux@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/lisp:master commit in: dev-lisp/abcl/
Date: Wed, 30 Apr 2014 08:14:54
Message-Id: 1398845737.dc24e0748039c6b65e9edb6052df1121fced0574.nimiux@gentoo
1 commit: dc24e0748039c6b65e9edb6052df1121fced0574
2 Author: Chema Alonso <nimiux <AT> gentoo <DOT> org>
3 AuthorDate: Wed Apr 30 08:15:37 2014 +0000
4 Commit: José María Alonso <nimiux <AT> gentoo <DOT> org>
5 CommitDate: Wed Apr 30 08:15:37 2014 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/lisp.git;a=commit;h=dc24e074
7
8 dev-lisp/abcl: version bump
9
10 ---
11 dev-lisp/abcl/abcl-1.3.1.ebuild | 35 +++++++++++++++++++++++++++++++++++
12 1 file changed, 35 insertions(+)
13
14 diff --git a/dev-lisp/abcl/abcl-1.3.1.ebuild b/dev-lisp/abcl/abcl-1.3.1.ebuild
15 new file mode 100644
16 index 0000000..9078228
17 --- /dev/null
18 +++ b/dev-lisp/abcl/abcl-1.3.1.ebuild
19 @@ -0,0 +1,35 @@
20 +# Copyright 1999-2014 Gentoo Foundation
21 +# Distributed under the terms of the GNU General Public License v2
22 +# $Header: $
23 +
24 +EAPI=2
25 +inherit eutils java-pkg-2 java-ant-2
26 +
27 +MY_P=${PN}-src-${PV}
28 +
29 +DESCRIPTION="Armed Bear Common Lisp is a Common Lisp implementation for the JVM."
30 +HOMEPAGE="http://common-lisp.net/project/armedbear/"
31 +SRC_URI="http://abcl.org/releases/${PV}/${MY_P}.tar.gz"
32 +RESTRICT="mirror"
33 +
34 +LICENSE="GPL-2"
35 +SLOT="0"
36 +KEYWORDS="~amd64 ~ppc ~sparc ~x86"
37 +IUSE="jad"
38 +
39 +DEPEND=">=virtual/jdk-1.5"
40 +RDEPEND=">=virtual/jre-1.5
41 + jad? ( dev-java/jad-bin )"
42 +
43 +S="${WORKDIR}"/${MY_P}
44 +
45 +src_compile() {
46 + eant abcl.compile || die "Can't compile ABCL"
47 + eant abcl.jar || die "Can't make ABCL jar archive"
48 +}
49 +
50 +src_install() {
51 + java-pkg_dojar dist/abcl.jar
52 + java-pkg_dolauncher ${PN} --java_args "-server -Xrs" --main org.armedbear.lisp.Main
53 + dodoc README || die "Can't install README"
54 +}