Gentoo Archives: gentoo-commits

From: "Thomas Sachau (tommy)" <tommy@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-java/lzmajio/files: build.xml
Date: Wed, 21 Jan 2009 22:26:56
Message-Id: E1LPlXB-0000z5-3B@stork.gentoo.org
1 tommy 09/01/21 22:26:53
2
3 Added: build.xml
4 Log:
5 Initial commit. Fixes bug 244924
6 (Portage version: 2.2_rc23/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 dev-java/lzmajio/files/build.xml
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/lzmajio/files/build.xml?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/lzmajio/files/build.xml?rev=1.1&content-type=text/plain
13
14 Index: build.xml
15 ===================================================================
16 <?xml version="1.0" encoding="UTF-8"?>
17 <project name="lzmajio" default="jar" basedir=".">
18 <target name="init">
19 <mkdir dir="build"/>
20 <mkdir dir="docs"/>
21 </target>
22 <target name="compile" depends="init">
23 <javac srcdir="." destdir="build" classpath="${gentoo.classpath}"/>
24 </target>
25
26 <target name="jar" depends="compile">
27 <jar jarfile="lzmajio.jar" basedir="build"/>
28 </target>
29
30 <target name="javadoc" depends="init">
31 <javadoc destdir="docs" classpath="${gentoo.classpath}">
32 <fileset dir=".">
33 <include name="**/*.java"/>
34 </fileset>
35 </javadoc>
36 </target>
37 </project>