diff options
author | 2010-05-29 16:57:37 +0000 | |
---|---|---|
committer | 2010-05-29 16:57:37 +0000 | |
commit | 97ae275bf0be753276e8b4f0dc219d4d02de97a5 (patch) | |
tree | 1434a8308b75e3412ded43154f6f8c92c1763c43 /dev-lisp/abcl | |
parent | Version bumped. (diff) | |
download | gentoo-2-97ae275bf0be753276e8b4f0dc219d4d02de97a5.tar.gz gentoo-2-97ae275bf0be753276e8b4f0dc219d4d02de97a5.tar.bz2 gentoo-2-97ae275bf0be753276e8b4f0dc219d4d02de97a5.zip |
Version bump to 0.20.0
(Portage version: 2.2_rc67/cvs/Linux i686)
Diffstat (limited to 'dev-lisp/abcl')
-rw-r--r-- | dev-lisp/abcl/ChangeLog | 9 | ||||
-rw-r--r-- | dev-lisp/abcl/abcl-0.20.0.ebuild | 35 |
2 files changed, 42 insertions, 2 deletions
diff --git a/dev-lisp/abcl/ChangeLog b/dev-lisp/abcl/ChangeLog index 191e9f48a7a7..ec52faef2631 100644 --- a/dev-lisp/abcl/ChangeLog +++ b/dev-lisp/abcl/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-lisp/abcl -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lisp/abcl/ChangeLog,v 1.7 2008/07/28 18:37:42 pchrist Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lisp/abcl/ChangeLog,v 1.8 2010/05/29 16:57:36 chiiph Exp $ + +*abcl-0.20.0 (29 May 2010) + + 29 May 2010; Tomas Touceda <chiiph@gentoo.org> +abcl-0.20.0.ebuild: + Version bump to 0.20.0 28 Jul 2008; Panagiotis Christopoulos <pchrist@gentoo.org> metadata.xml: Update metadata.xml to include USE flag descriptions. Entries taken from diff --git a/dev-lisp/abcl/abcl-0.20.0.ebuild b/dev-lisp/abcl/abcl-0.20.0.ebuild new file mode 100644 index 000000000000..5e2298be138e --- /dev/null +++ b/dev-lisp/abcl/abcl-0.20.0.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2010 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.1 2010/05/29 16:57:37 chiiph 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" +} |