diff options
author | Karl Trygve Kalleberg <karltk@gentoo.org> | 2004-12-23 00:24:52 +0000 |
---|---|---|
committer | Karl Trygve Kalleberg <karltk@gentoo.org> | 2004-12-23 00:24:52 +0000 |
commit | 214f53fb353a05af63884f63fff1bcd4fa8d1e8a (patch) | |
tree | 8cf9a0b02884026566651ad2d52cc786251c5f38 /dev-java/jgoodies-animation | |
parent | Stable on sparc wrt #75203 (Manifest recommit) (diff) | |
download | gentoo-2-214f53fb353a05af63884f63fff1bcd4fa8d1e8a.tar.gz gentoo-2-214f53fb353a05af63884f63fff1bcd4fa8d1e8a.tar.bz2 gentoo-2-214f53fb353a05af63884f63fff1bcd4fa8d1e8a.zip |
Initial import. Fixes #75003.
Diffstat (limited to 'dev-java/jgoodies-animation')
-rw-r--r-- | dev-java/jgoodies-animation/ChangeLog | 9 | ||||
-rw-r--r-- | dev-java/jgoodies-animation/Manifest | 5 | ||||
-rw-r--r-- | dev-java/jgoodies-animation/files/build.xml | 64 | ||||
-rw-r--r-- | dev-java/jgoodies-animation/files/digest-jgoodies-animation-1.1.3 | 1 | ||||
-rw-r--r-- | dev-java/jgoodies-animation/jgoodies-animation-1.1.3.ebuild | 55 | ||||
-rw-r--r-- | dev-java/jgoodies-animation/metadata.xml | 13 |
6 files changed, 147 insertions, 0 deletions
diff --git a/dev-java/jgoodies-animation/ChangeLog b/dev-java/jgoodies-animation/ChangeLog new file mode 100644 index 000000000000..f651a37c430b --- /dev/null +++ b/dev-java/jgoodies-animation/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for dev-java/jgoodies-animation +# Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-java/jgoodies-animation/ChangeLog,v 1.1 2004/12/23 00:24:52 karltk Exp $ + +*jgoodies-animation-1.1.3 (23 Dec 2004) + + 23 Dec 2004; Karl Trygve Kalleberg <karltk@gentoo.org> jgoodies-animation-1.1.3.ebuild: + Initial import. Ebuild submitted by the up and coming Saleem A + <compnerd@compnerd.org>. Fixes #75003. diff --git a/dev-java/jgoodies-animation/Manifest b/dev-java/jgoodies-animation/Manifest new file mode 100644 index 000000000000..4f1200fbc9ed --- /dev/null +++ b/dev-java/jgoodies-animation/Manifest @@ -0,0 +1,5 @@ +MD5 5719c236b1e6e585db39f68ccaf7d619 jgoodies-animation-1.1.3.ebuild 1020 +MD5 bd8300c26d9e7f92508f07bf903a08f5 ChangeLog 305 +MD5 0637a933ecb6e8cedfc4ddfcf3491728 metadata.xml 310 +MD5 1927a2ddc87063bc3a874c03869761bf files/digest-jgoodies-animation-1.1.3 64 +MD5 30f6503f163576de2e78312d08d249a8 files/build.xml 2284 diff --git a/dev-java/jgoodies-animation/files/build.xml b/dev-java/jgoodies-animation/files/build.xml new file mode 100644 index 000000000000..900189300d79 --- /dev/null +++ b/dev-java/jgoodies-animation/files/build.xml @@ -0,0 +1,64 @@ +<?xml version="1.0"?> + +<project name="animation" default="jar" basedir="."> + + <!-- This is a customized build.xml for portage! --> + <!-- + <property file="${basedir}/build.properties"/> + <property file="${basedir}/default.properties"/> + --> + + <property name="build" value="${basedir}/build"/> + + <property name="spec.title" value="JGoodies Animation"/> + <property name="spec.version" value="1.1"/> + <property name="spec.vendor" value="Apache Software Foundation"/> + <property name="imp.title" value="com.jgoodies.animation"/> + <property name="imp.version" value="1.1.3"/> + <property name="imp.vendor" value="Apache Software Foundation"/> + + <property name="animation.src" value="${basedir}"/> + + <property name="animation.javadoc" value="${build}/doc"/> + <property name="animation.packages" value="com.jgoodies.animation.*"/> + + <target name="init"> + <tstamp /> + <mkdir dir="${build}"/> + <mkdir dir="${build}/doc"/> + </target> + + <target name="compile" depends="init"> + <javac srcdir="${animation.src}" + destdir="${build}" + source="1.4" + target="1.4"/> + </target> + + <target name="manifest" depends="init"> + <manifest file="MANIFEST.MF" mode="update"> + <attribute name="Built-By" value="Gentoo Portage"/> + + <section name="com/jgoodies/forms"> + <attribute name="Specification-Title" value="${spec.title}"/> + <attribute name="Specification-Version" value="${spec.version}"/> + <attribute name="Specification-Vendor" value="${spec.vendor}"/> + <attribute name="Implementation-Title" value="${imp.title}"/> + <attribute name="Implementation-Version" value="${imp.version}"/> + <attribute name="Implementation-Vendor" value="${imp.vendor}"/> + </section> + </manifest> + </target> + + <target name="javadoc" depends="compile"> + <javadoc sourcepath="${animation.src}" + destdir="${animation.javadoc}" + packagenames="${animation.packages}"/> + </target> + + <target name="jar" depends="compile,manifest"> + <jar jarfile="animation.jar" manifest="MANIFEST.MF"> + <fileset dir="${build}"/> + </jar> + </target> +</project> 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 new file mode 100644 index 000000000000..0682b31860f0 --- /dev/null +++ b/dev-java/jgoodies-animation/files/digest-jgoodies-animation-1.1.3 @@ -0,0 +1 @@ +MD5 4834815d9bed1f553ac88c9f4b1f2800 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 new file mode 100644 index 000000000000..aaf9418e2bfd --- /dev/null +++ b/dev-java/jgoodies-animation/jgoodies-animation-1.1.3.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2004 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.1 2004/12/23 00:24:52 karltk Exp $ + +inherit java-pkg + +DESCRIPTION="JGoodies Animation Library" +HOMEPAGE="http://www.jgoodies.com/" +SRC_URI="http://www.jgoodies.com/download/libraries/animation-1_1_3.zip" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~x86" +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-1.1.3" + +src_unpack() { + unpack ${A} + cd ${S} + + rm *.jar + unzip animation-1.1.3-src.zip &> /dev/null || die "Unpack Failed" + cp ${FILESDIR}/build.xml . +} + +src_compile() { + local antflags="jar" + + if use jikes ; then + antflags="${antflags} -Dbuild.compiler=jikes" + fi + + if use doc ; then + antflags="${antflags} javadoc" + fi + + ant ${antflags} || die "Compile failed" +} + +src_install() { + java-pkg_dojar animation.jar + + dodoc LICENSE.txt RELEASE-NOTES.txt + + if use doc ; then + java-pkg_dohtml -r build/doc + fi +} diff --git a/dev-java/jgoodies-animation/metadata.xml b/dev-java/jgoodies-animation/metadata.xml new file mode 100644 index 000000000000..287f0de65f66 --- /dev/null +++ b/dev-java/jgoodies-animation/metadata.xml @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> + +<pkgmetadata> +<herd>java</herd> + +<longdescription> + +JGoodies animation is a library that allows for real time animation in java +applications. + +</longdescription> +</pkgmetadata> |