diff options
author | Johann Schmitz <ercpe@gentoo.org> | 2014-09-07 15:28:47 +0000 |
---|---|---|
committer | Johann Schmitz <ercpe@gentoo.org> | 2014-09-07 15:28:47 +0000 |
commit | 01e2a3cb3fe1376795d8e6c36f98661232ec2645 (patch) | |
tree | 80d639751fae24568ab895e52bde2dea594ebf6d /dev-java | |
parent | sparc, ppc, ppc64 stable (diff) | |
download | gentoo-2-01e2a3cb3fe1376795d8e6c36f98661232ec2645.tar.gz gentoo-2-01e2a3cb3fe1376795d8e6c36f98661232ec2645.tar.bz2 gentoo-2-01e2a3cb3fe1376795d8e6c36f98661232ec2645.zip |
Dropped old build.xml files
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 77C501ED)
Diffstat (limited to 'dev-java')
-rw-r--r-- | dev-java/jgoodies-animation/ChangeLog | 5 | ||||
-rw-r--r-- | dev-java/jgoodies-animation/files/build.xml | 64 |
2 files changed, 4 insertions, 65 deletions
diff --git a/dev-java/jgoodies-animation/ChangeLog b/dev-java/jgoodies-animation/ChangeLog index 599646377974..fd82834e1c58 100644 --- a/dev-java/jgoodies-animation/ChangeLog +++ b/dev-java/jgoodies-animation/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-java/jgoodies-animation # Copyright 2000-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-java/jgoodies-animation/ChangeLog,v 1.12 2014/09/07 15:26:13 ercpe Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-java/jgoodies-animation/ChangeLog,v 1.13 2014/09/07 15:28:46 ercpe Exp $ + + 07 Sep 2014; Johann Schmitz <ercpe@gentoo.org> -files/build.xml: + Dropped old build.xml files *jgoodies-animation-1.2.0-r1 (07 Sep 2014) diff --git a/dev-java/jgoodies-animation/files/build.xml b/dev-java/jgoodies-animation/files/build.xml deleted file mode 100644 index 7af7b03f8cef..000000000000 --- a/dev-java/jgoodies-animation/files/build.xml +++ /dev/null @@ -1,64 +0,0 @@ -<?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-${imp.version}.jar" manifest="MANIFEST.MF"> - <fileset dir="${build}"/> - </jar> - </target> -</project> |