diff options
author | Tom Wijsman <tomwij@gentoo.org> | 2013-07-11 22:08:37 +0000 |
---|---|---|
committer | Tom Wijsman <tomwij@gentoo.org> | 2013-07-11 22:08:37 +0000 |
commit | a61aff556de0196d8c6727d74afcddf9c77270ea (patch) | |
tree | 8ed3d532133f202d41c6d7575ae4a513bf2df3ce /dev-java | |
parent | Version bump to 0.8.4. (diff) | |
download | gentoo-2-a61aff556de0196d8c6727d74afcddf9c77270ea.tar.gz gentoo-2-a61aff556de0196d8c6727d74afcddf9c77270ea.tar.bz2 gentoo-2-a61aff556de0196d8c6727d74afcddf9c77270ea.zip |
Version bump to 0.8.3.
(Portage version: 2.1.12.13/cvs/Linux x86_64, signed Manifest commit with key 6D34E57D)
Diffstat (limited to 'dev-java')
-rw-r--r-- | dev-java/jgrapht/ChangeLog | 9 | ||||
-rw-r--r-- | dev-java/jgrapht/jgrapht-0.8.3.ebuild | 50 |
2 files changed, 57 insertions, 2 deletions
diff --git a/dev-java/jgrapht/ChangeLog b/dev-java/jgrapht/ChangeLog index 5c9719da9434..e29faf2afa50 100644 --- a/dev-java/jgrapht/ChangeLog +++ b/dev-java/jgrapht/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-java/jgrapht -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-java/jgrapht/ChangeLog,v 1.9 2012/08/09 19:55:21 johu Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-java/jgrapht/ChangeLog,v 1.10 2013/07/11 22:08:37 tomwij Exp $ + +*jgrapht-0.8.3 (11 Jul 2013) + + 11 Jul 2013; Tom Wijsman <TomWij@gentoo.org> +jgrapht-0.8.3.ebuild: + Version bump to 0.8.3. 09 Aug 2012; Johannes Huber <johu@gentoo.org> jgrapht-0.8.2.ebuild: Stable for x86, wrt bug #418717 diff --git a/dev-java/jgrapht/jgrapht-0.8.3.ebuild b/dev-java/jgrapht/jgrapht-0.8.3.ebuild new file mode 100644 index 000000000000..862c5d46a008 --- /dev/null +++ b/dev-java/jgrapht/jgrapht-0.8.3.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-java/jgrapht/jgrapht-0.8.3.ebuild,v 1.1 2013/07/11 22:08:37 tomwij Exp $ + +EAPI="5" + +JAVA_PKG_IUSE="doc source test" + +inherit java-pkg-2 java-ant-2 eutils + +DESCRIPTION="Graph library that is a simpler and faster alternative to JGraph" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" +HOMEPAGE="http://jgrapht.sourceforge.net" + +KEYWORDS="~amd64 ~ppc ~x86" +SLOT="0" +LICENSE="LGPL-2.1" + +CDEPEND="dev-java/touchgraph-graphlayout:0 + dev-java/jgraph:0" + +DEPEND="${CDEPEND} + >=virtual/jdk-1.6 + test? ( dev-java/ant-junit:0 + dev-java/xmlunit:1 )" + +RDEPEND="${CDEPEND} + >=virtual/jre-1.6" + +JAVA_ANT_REWRITE_CLASSPATH="true" +EANT_GENTOO_CLASSPATH="touchgraph-graphlayout jgraph" +EANT_DOC_TARGET="javadoc" + +java_prepare() { + rm -rf "${S}/lib" || die + rm -v "${S}"/*.jar || die +} + +src_test() { + EANT_GENTOO_CLASSPATH="${EANT_GENTOO_CLASSPATH} xmlunit:1" ANT_TASKS="ant-junit" eant test +} + +src_install() { + java-pkg_newjar ${PN}*.jar || die + + dohtml README.html || die + use doc && java-pkg_dojavadoc javadoc + use source && java-pkg_dosrc src/org +} + |