diff options
author | Alistair Bush <ali_bush@gentoo.org> | 2009-08-07 14:23:25 +0000 |
---|---|---|
committer | Alistair Bush <ali_bush@gentoo.org> | 2009-08-07 14:23:25 +0000 |
commit | 74584ed68c0c587e2ee9518ec03f7407379ababa (patch) | |
tree | 8d7e4fdb7f8e7bba877e901050b3b1d0314ebaed /dev-java/constantine | |
parent | Version bump. Remove old. (diff) | |
download | gentoo-2-74584ed68c0c587e2ee9518ec03f7407379ababa.tar.gz gentoo-2-74584ed68c0c587e2ee9518ec03f7407379ababa.tar.bz2 gentoo-2-74584ed68c0c587e2ee9518ec03f7407379ababa.zip |
Version Bump.
(Portage version: 2.1.6.13/cvs/Linux x86_64)
Diffstat (limited to 'dev-java/constantine')
-rw-r--r-- | dev-java/constantine/ChangeLog | 7 | ||||
-rw-r--r-- | dev-java/constantine/constantine-0.6.ebuild | 34 |
2 files changed, 40 insertions, 1 deletions
diff --git a/dev-java/constantine/ChangeLog b/dev-java/constantine/ChangeLog index 950b38ad5ab1..15619299c902 100644 --- a/dev-java/constantine/ChangeLog +++ b/dev-java/constantine/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-java/constantine # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-java/constantine/ChangeLog,v 1.1 2009/05/23 07:38:01 caster Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-java/constantine/ChangeLog,v 1.2 2009/08/07 14:23:25 ali_bush Exp $ + +*constantine-0.6 (07 Aug 2009) + + 07 Aug 2009; Alistair Bush <ali_bush@gentoo.org> +constantine-0.6.ebuild: + Version Bump *constantine-0.5 (22 May 2009) diff --git a/dev-java/constantine/constantine-0.6.ebuild b/dev-java/constantine/constantine-0.6.ebuild new file mode 100644 index 000000000000..cb0b2ace721d --- /dev/null +++ b/dev-java/constantine/constantine-0.6.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-java/constantine/constantine-0.6.ebuild,v 1.1 2009/08/07 14:23:25 ali_bush Exp $ + +JAVA_PKG_IUSE="source test" +inherit base java-pkg-2 java-ant-2 + +DESCRIPTION="Provides Java values for common platform C constants" +HOMEPAGE="http://kenai.com/projects/constantine" +SRC_URI="mirror://gentoo/${P}.tar.bz2" +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=">=virtual/jre-1.5" + +DEPEND=">=virtual/jdk-1.5 + test? ( dev-java/ant-junit4 )" + +src_compile() { + # ecj doesn't like some cast for some reason + java-pkg_force-compiler javac + java-pkg-2_src_compile +} + +src_install() { + java-pkg_dojar dist/${PN}.jar + use source && java-pkg_dosrc src/* +} + +src_test() { + ANT_TASKS="ant-junit4" eant test -Dlibs.junit_4.classpath="$(java-pkg_getjars --with-dependencies junit-4)" +} |