commit: af84bb700444e89113bf1ac701346dea25949537 Author: Michael Mair-Keimberger (asterix) <m.mairkeimberger <AT> gmail <DOT> com> AuthorDate: Sat Jan 21 18:33:49 2017 +0000 Commit: David Seifert <soap <AT> gentoo <DOT> org> CommitDate: Thu Jan 26 22:36:05 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af84bb70
net-im/kouchat: remove unused xml file Closes: https://github.com/gentoo/gentoo/pull/3583 net-im/kouchat/files/build.xml | 52 ------------------------------------------ 1 file changed, 52 deletions(-) diff --git a/net-im/kouchat/files/build.xml b/net-im/kouchat/files/build.xml deleted file mode 100644 index a413586..00000000 --- a/net-im/kouchat/files/build.xml +++ /dev/null @@ -1,52 +0,0 @@ -<project name="kouchat" default="jar"> - <property name="dest.jar" value="kouchat.jar"/> - <property name="build.app" value="build/app"/> - <property name="build.test" value="build/test"/> - <target name="compile"> - <mkdir dir="${build.app}"/> - <javac srcdir="src" destdir="${build.app}"/> - <copy todir="${build.app}/icons"> - <fileset dir="resources/icons"/> - </copy> - <copy todir="${build.app}/sounds"> - <fileset dir="resources/sounds"/> - </copy> - <copy file="kou_shortcut.ico" todir="${build.app}"/> - <copy file="kou_shortcut.png" todir="${build.app}"/> - <copy file="CHANGES" todir="${build.app}"/> - <copy file="COPYING" todir="${build.app}"/> - <copy file="FAQ" todir="${build.app}"/> - <copy file="README" todir="${build.app}"/> - </target> - - <target name="jar" depends="compile"> - <jar destfile="${dest.jar}"> - <fileset dir="${build.app}"/> - </jar> - </target> - - <target name="test"> - <mkdir dir="${build.test}"/> - <javac srcdir="test" destdir="${build.test}"> - <classpath> - <pathelement location="${dest.jar}"/> - <pathelement path="${junit4.jar}"/> - </classpath> - </javac> - <junit printsummary="yes" haltonfailure="yes"> - <classpath> - <pathelement path="${build.test}"/> - <pathelement path="${build.app}"/> - </classpath> - <test name="net.usikkert.kouchat.net.MessageParserTest"/> - <test name="net.usikkert.kouchat.net.UDPReceiverTest"/> - <test name="net.usikkert.kouchat.net.UDPSenderTest"/> - </junit> - </target> - - <target name="javadoc" depends="compile"> - <mkdir dir="docs"/> - <javadoc sourcepath="src" destdir="docs"/> - </target> - -</project>
