diff options
author | Fabian Köster <fabian.koester@bringnow.com> | 2015-10-28 16:11:20 +0100 |
---|---|---|
committer | Fabian Köster <fabian.koester@bringnow.com> | 2015-10-28 16:11:20 +0100 |
commit | 76a796ab5634dbb10e57822e127bf155b707663c (patch) | |
tree | d27b5c3c74dc523bdb1d0966ba38a48cd61bb7e9 /dev-java/super-csv/super-csv-1.52.ebuild | |
parent | Fix dev-java/h2 SRC_URI (see bug https://bugs.gentoo.org/show_bug.cgi?id=463732) (diff) | |
download | hibiscus-76a796ab5634dbb10e57822e127bf155b707663c.tar.gz hibiscus-76a796ab5634dbb10e57822e127bf155b707663c.tar.bz2 hibiscus-76a796ab5634dbb10e57822e127bf155b707663c.zip |
Major cleanup and add compiling live ebuilds
Diffstat (limited to 'dev-java/super-csv/super-csv-1.52.ebuild')
-rw-r--r-- | dev-java/super-csv/super-csv-1.52.ebuild | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/dev-java/super-csv/super-csv-1.52.ebuild b/dev-java/super-csv/super-csv-1.52.ebuild deleted file mode 100644 index 3178aa2..0000000 --- a/dev-java/super-csv/super-csv-1.52.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -EAPI="5" - -JAVA_PKG_IUSE="doc source test" - -MY_PN="SuperCSV" -MY_P="${MY_PN}-${PV}" - -inherit eutils java-pkg-2 java-pkg-simple - -DESCRIPTION="CSV processing library for Java" -HOMEPAGE="http://supercsv.sourceforge.net/" -SRC_URI="mirror://sourceforge/supercsv/v1-branch/v${PV}/${MY_P}.zip" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -CDEPEND="dev-java/spiffy" - -DEPEND="${CDEPEND} - app-arch/unzip - >=virtual/jdk-1.5 - test? ( - dev-java/junit:4 - dev-java/hamcrest-core - )" -RDEPEND="${CDEPEND} - >=virtual/jre-1.5" - -JAVA_SRC_DIR="src" -JAVA_GENTOO_CLASSPATH="spiffy,junit-4,hamcrest-core" - -src_unpack() { - unpack ${A} - unpack ./${MY_P}-source.zip - rm -v *.jar *.zip || die -} - -src_test() { - JAVA_SRC_DIR="test" \ - JAVA_CLASSPATH_EXTRA="${PN}.jar" \ - PN="${PN}-test" \ - java-pkg-simple_src_compile - - local tests - tests=$(find test -name '*.java' | sed -e 's/\//./g;s/^test.//;s/.java$//' || die) - - ejunit4 -cp "${PN}.jar:${PN}-test.jar:$(java-pkg_getjars ${JAVA_GENTOO_CLASSPATH})" $tests -} |