commit:     7dffe7abb60654dc66d1ef5bc1578242973790ce
Author:     Olivier Diotte <olivier <AT> diotte <DOT> ca>
AuthorDate: Sun Jan 24 19:22:58 2016 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Sun Jan 24 22:14:09 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7dffe7ab

dev-java/piccolo2d-3.0: New release

-Updated HOMEPAGE and SRC_URI
-Rewritten for java-pkg-simple instead of eant (since package now uses mvn)
-Also fix use source and use example
-Remove use doc since there doesn't seem to be javadoc

 dev-java/piccolo2d/piccolo2d-3.0.ebuild | 52 +++++++++++++++++++++++++++++++++
 1 file changed, 52 insertions(+)

diff --git a/dev-java/piccolo2d/piccolo2d-3.0.ebuild 
b/dev-java/piccolo2d/piccolo2d-3.0.ebuild
new file mode 100644
index 0000000..0697b8e
--- /dev/null
+++ b/dev-java/piccolo2d/piccolo2d-3.0.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+JAVA_PKG_IUSE="doc source examples"
+
+inherit java-pkg-2 java-pkg-simple
+
+DESCRIPTION="A Structured 2D Graphics Framework"
+HOMEPAGE="https://github.com/piccolo2d/piccolo2d.java";
+SRC_URI="https://github.com/${PN}/${PN}.java/archive/${PN}-complete-${PV}.zip 
-> ${P}.zip"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+CDEPEND="dev-java/swt:3.7"
+
+RDEPEND="
+       ${CDEPEND}
+       >=virtual/jre-1.6"
+
+DEPEND="
+       ${CDEPEND}
+       app-arch/unzip
+       >=virtual/jdk-1.6"
+
+S="${WORKDIR}/${PN}.java-${PN}-complete-${PV}"
+
+JAVA_GENTOO_CLASSPATH="swt-3.7"
+
+JAVA_SRC_DIR="core extras swt"
+
+java_prepare() {
+       rm -rf core/src/test extras/src/test swt/src/test || die
+}
+
+src_install() {
+       java-pkg-simple_src_install
+       dodoc Readme.txt ReleaseNotes.txt
+
+       if use examples; then
+               local INSDESTTREE=/usr/share/doc/${PF}/examples
+               doins -r examples/src/main/java/org/piccolo2d/examples/*
+               doins -r examples/src/main/java/org/piccolo2d/tutorial
+               doins -r swt-examples/src/main/java/org/piccolo2d/extras
+               docompress -x "${INSDESTTREE}"
+       fi
+}

Reply via email to