You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/media-video/projectx/files/build-0.90.4.00_p33.xml

78 lines
2.0 KiB

<?xml version="1.0"?>
<project name="projectx" default="jar">
<!-- some properties -->
<property name="src.dir" value="src" />
<property name="build.dir" value="build" />
<property name="docs.dir" value="apidocs" />
<property name="dist.dir" value="dist" />
<property name="lib.dir" value="lib" />
<property name="resources.dir" value="resources" />
<property name="project.jar" value="${dist.dir}/${ant.project.name}.jar" />
<property name="target.jdk" value="1.5" />
<!-- classpath -->
<path id="refcp">
<fileset dir="${lib.dir}">
<include name="**/*.jar" />
</fileset>
</path>
<!-- init -->
<target name="init">
<mkdir dir="${dist.dir}" />
<mkdir dir="${docs.dir}" />
<mkdir dir="${build.dir}" />
</target>
<!-- compile everything -->
<target name="compile" depends="init">
<javac srcdir="${src.dir}"
destdir="${build.dir}"
source="${target.jdk}"
target="${target.jdk}"
classpathref="refcp"
encoding="ISO-8859-1"/>
<copy todir="${build.dir}">
<fileset dir="${resources.dir}" />
</copy>
</target>
<!-- build the jar files -->
<target name="build" depends="compile">
<jar jarfile="${project.jar}" basedir="${build.dir}">
<manifest>
<attribute name="Main-Class" value="${manifest.mainclass}" />
</manifest>
</jar>
</target>
<!-- generate javadocs -->
<target name="javadoc" depends="init">
<javadoc sourcepath="${src.dir}"
packagenames="*"
destdir="${docs.dir}"
author="true"
version="true"
use="true"
charset="UTF-8"
encoding="ISO-8859-1"
windowtitle="${ant.project.name} API" />
</target>
<!-- clean up -->
<target name="clean">
<delete dir="${build.dir}" />
<delete dir="${docs.dir}" />
<delete dir="${dist.dir}" />
</target>
<!-- zip the sources -->
<target name="sourcezip">
<zip destfile="${dist.dir}/${ant.project.name}-src.zip">
<zipfileset dir="${src.dir}" />
</zip>
</target>
</project>