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/files | |
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/files')
-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 |
2 files changed, 65 insertions, 0 deletions
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 |