commit: dc24e0748039c6b65e9edb6052df1121fced0574
Author: Chema Alonso <nimiux <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 30 08:15:37 2014 +0000
Commit: José María Alonso <nimiux <AT> gentoo <DOT> org>
CommitDate: Wed Apr 30 08:15:37 2014 +0000
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/lisp.git;a=commit;h=dc24e074
dev-lisp/abcl: version bump
---
dev-lisp/abcl/abcl-1.3.1.ebuild | 35 +++++++++++++++++++++++++++++++++++
1 file changed, 35 insertions(+)
diff --git a/dev-lisp/abcl/abcl-1.3.1.ebuild b/dev-lisp/abcl/abcl-1.3.1.ebuild
new file mode 100644
index 0000000..9078228
--- /dev/null
+++ b/dev-lisp/abcl/abcl-1.3.1.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=2
+inherit eutils 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://abcl.org/releases/${PV}/${MY_P}.tar.gz"
+RESTRICT="mirror"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~sparc ~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"
+}