diff options
author | Vlastimil Babka <caster@gentoo.org> | 2010-01-22 11:17:17 +0000 |
---|---|---|
committer | Vlastimil Babka <caster@gentoo.org> | 2010-01-22 11:17:17 +0000 |
commit | a2f3521f404b4fbb8acee38d77958874b000ad0b (patch) | |
tree | be0a84511c4d4875a843a26950e0e569e65c0da5 /dev-java/backport-util-concurrent | |
parent | Remove old. (diff) | |
download | gentoo-2-a2f3521f404b4fbb8acee38d77958874b000ad0b.tar.gz gentoo-2-a2f3521f404b4fbb8acee38d77958874b000ad0b.tar.bz2 gentoo-2-a2f3521f404b4fbb8acee38d77958874b000ad0b.zip |
Remove old.
(Portage version: 2.2_rc61/cvs/Linux x86_64)
Diffstat (limited to 'dev-java/backport-util-concurrent')
-rw-r--r-- | dev-java/backport-util-concurrent/ChangeLog | 6 | ||||
-rw-r--r-- | dev-java/backport-util-concurrent/backport-util-concurrent-3.0.ebuild | 62 |
2 files changed, 5 insertions, 63 deletions
diff --git a/dev-java/backport-util-concurrent/ChangeLog b/dev-java/backport-util-concurrent/ChangeLog index fbcf5a83995a..1eac6cbd7b2c 100644 --- a/dev-java/backport-util-concurrent/ChangeLog +++ b/dev-java/backport-util-concurrent/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-java/backport-util-concurrent # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-java/backport-util-concurrent/ChangeLog,v 1.26 2010/01/05 03:44:45 josejx Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-java/backport-util-concurrent/ChangeLog,v 1.27 2010/01/22 11:17:17 caster Exp $ + + 22 Jan 2010; Vlastimil Babka <caster@gentoo.org> + -backport-util-concurrent-3.0.ebuild: + Remove old. 05 Jan 2010; Joseph Jezak <josejx@gentoo.org> backport-util-concurrent-3.0-r1.ebuild: diff --git a/dev-java/backport-util-concurrent/backport-util-concurrent-3.0.ebuild b/dev-java/backport-util-concurrent/backport-util-concurrent-3.0.ebuild deleted file mode 100644 index 82829af654b4..000000000000 --- a/dev-java/backport-util-concurrent/backport-util-concurrent-3.0.ebuild +++ /dev/null @@ -1,62 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-java/backport-util-concurrent/backport-util-concurrent-3.0.ebuild,v 1.8 2009/11/17 14:55:40 caster Exp $ - -JAVA_PKG_IUSE="doc java5 source test" -inherit java-pkg-2 java-ant-2 - -DESCRIPTION="A backport of java.util.concurrent API, from Java 5.0, to 1.4, and from Java 6.0 to 5.0" -HOMEPAGE="http://www.mathcs.emory.edu/dcl/util/backport-util-concurrent/" -SRC_URI="!java5? ( http://dcl.mathcs.emory.edu/util/${PN}/dist/${P}/Java14/${P}-src.zip ) - java5? ( http://dcl.mathcs.emory.edu/util/${PN}/dist/${P}/Java50/${PN}-Java50-${PV}-src.zip )" - -LICENSE="public-domain" -SLOT="0" -KEYWORDS="ppc" -IUSE="" - -DEPEND="java5? ( =virtual/jdk-1.5* ) - !java5? ( =virtual/jdk-1.4* ) - test? ( =dev-java/junit-3* ) - app-arch/unzip" -RDEPEND="java5? ( >=virtual/jdk-1.5 ) - !java5? ( >=virtual/jre-1.4 )" - -S="${WORKDIR}/${P}-src" - -src_unpack() { - unpack ${A} - # This is just workaround because setting ${S} in pkg_setup doesn't currently - # work and this seems better than doing it in global scope - if use java5; then - mv ${PN}-Java50-${PV}-src ${P}-src || die - fi - cd "${S}" - - if use test; then - # make test not dependo n make - epatch "${FILESDIR}/${P}-test.patch" - else - # don't compile test classes - epatch "${FILESDIR}/${P}-notest.patch" - fi - - cd "${S}/external" - rm -v *.jar || die - - use test && java-pkg_jar-from --build-only junit -} - -EANT_BUILD_TARGET="javacompile archive" - -src_test() { - eant test -} - -src_install() { - java-pkg_dojar ${PN}.jar - dohtml README.html || die - - use doc && java-pkg_dojavadoc doc/api - use source && java-pkg_dosrc src/* -} |