diff options
author | William Thomson <wltjr@gentoo.org> | 2007-10-24 05:14:58 +0000 |
---|---|---|
committer | William Thomson <wltjr@gentoo.org> | 2007-10-24 05:14:58 +0000 |
commit | 49b9f2241d2d0721096e591c9c8d25e4e1a81226 (patch) | |
tree | c917fa3d16b55bf93bb546b6cc66a7c2dff762f6 /dev-java/jgoodies-animation | |
parent | Removed java gen 1 ebuild, quoted vars. (diff) | |
download | historical-49b9f2241d2d0721096e591c9c8d25e4e1a81226.tar.gz historical-49b9f2241d2d0721096e591c9c8d25e4e1a81226.tar.bz2 historical-49b9f2241d2d0721096e591c9c8d25e4e1a81226.zip |
Removed java gen 1 ebuild.
Package-Manager: portage-2.1.3.15
Diffstat (limited to 'dev-java/jgoodies-animation')
-rw-r--r-- | dev-java/jgoodies-animation/ChangeLog | 6 | ||||
-rw-r--r-- | dev-java/jgoodies-animation/files/digest-jgoodies-animation-1.1.3 | 3 | ||||
-rw-r--r-- | dev-java/jgoodies-animation/jgoodies-animation-1.1.3.ebuild | 55 |
3 files changed, 5 insertions, 59 deletions
diff --git a/dev-java/jgoodies-animation/ChangeLog b/dev-java/jgoodies-animation/ChangeLog index 642cdac0ef8b..213840e42a38 100644 --- a/dev-java/jgoodies-animation/ChangeLog +++ b/dev-java/jgoodies-animation/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-java/jgoodies-animation # Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-java/jgoodies-animation/ChangeLog,v 1.10 2007/09/28 22:35:13 philantrop Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-java/jgoodies-animation/ChangeLog,v 1.11 2007/10/24 05:11:59 wltjr Exp $ + + 24 Oct 2007; William L. Thomson Jr. <wltjr@gentoo.org> + -jgoodies-animation-1.1.3.ebuild: + Removed java gen 1 ebuild. 28 Sep 2007; Wulf C. Krueger <philantrop@gentoo.org> jgoodies-animation-1.2.0.ebuild: diff --git a/dev-java/jgoodies-animation/files/digest-jgoodies-animation-1.1.3 b/dev-java/jgoodies-animation/files/digest-jgoodies-animation-1.1.3 deleted file mode 100644 index e21ad3c1c265..000000000000 --- a/dev-java/jgoodies-animation/files/digest-jgoodies-animation-1.1.3 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 4834815d9bed1f553ac88c9f4b1f2800 animation-1_1_3.zip 469042 -RMD160 0e41acfbe2939ea26f55e002660717ebb9d8e622 animation-1_1_3.zip 469042 -SHA256 718580d546adc97c5ffcf4097e63c3f79b17b7c2f368940a0a13cd2f0f3b9e4d animation-1_1_3.zip 469042 diff --git a/dev-java/jgoodies-animation/jgoodies-animation-1.1.3.ebuild b/dev-java/jgoodies-animation/jgoodies-animation-1.1.3.ebuild deleted file mode 100644 index 0b1ee32fa6e9..000000000000 --- a/dev-java/jgoodies-animation/jgoodies-animation-1.1.3.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-java/jgoodies-animation/jgoodies-animation-1.1.3.ebuild,v 1.5 2005/07/16 09:51:14 axxo Exp $ - -inherit java-pkg - -MY_V=${PV//./_} -DESCRIPTION="JGoodies Animation Library" -HOMEPAGE="http://www.jgoodies.com/" -SRC_URI="http://www.jgoodies.com/download/libraries/animation-${MY_V}.zip" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="x86 amd64 ~ppc" -IUSE="doc jikes" - -DEPEND=">=virtual/jdk-1.4 - >=dev-java/ant-core-1.4 - app-arch/unzip - jikes? ( >=dev-java/jikes-1.21 )" -RDEPEND=">=virtual/jre-1.4" - -S="${WORKDIR}/animation-${PV}" - -src_unpack() { - unpack ${A} - cd ${S} - - # Remove the packaged jar - rm *.jar - - # Extract the sources - unzip animation-${PV}-src.zip &> /dev/null || die "Unpack Failed" - - # No JUNIT support yet :-( - rm -rf ${S}/src/test - - # Copy the Gentoo'ized build.xml - cp ${FILESDIR}/build.xml ${S} -} - -src_compile() { - local antflags="jar" - use jikes && antflags="${antflags} -Dbuild.compiler=jikes" - use doc && antflags="${antflags} javadoc" - - ant ${antflags} || die "Compile failed" -} - -src_install() { - java-pkg_newjar animation-${PV}.jar animation.jar - - dodoc RELEASE-NOTES.txt - use doc && java-pkg_dohtml -r build/doc -} |