~ubuntu-branches/ubuntu/quantal/libpal-java/quantal

« back to all changes in this revision

Viewing changes to .pc/openjdk7.patch/src/build.xml

  • Committer: Package Import Robot
  • Author(s): Ilya Barygin
  • Date: 2012-06-23 18:20:40 UTC
  • Revision ID: package-import@ubuntu.com-20120623182040-ejiev15n1us6z6ew
Tags: 1.5.1-1ubuntu1
Fix FTBFS with Java 7.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!-- PAL ant file by Bruno Afonso <brunomiguel@dequim.ist.utl.pt>, 2003 -->
 
2
<project name="PAL" default="dist" basedir=".">
 
3
        <description>
 
4
                PAL: Phylogenetic Analysis Library
 
5
                The PAL project (http://www.cebl.auckland.ac.nz/pal-project) is a collaborative effort dedicated to 
 
6
                provide a high quality Java library for use in molecular evolution and phylogenetics.
 
7
                This package may be distributed under the terms of the GNU Lesser General Public License
 
8
                Copyright (c) 1999-2002 PAL Development Core Team. 
 
9
        </description>
 
10
        <!-- set global properties for this build -->
 
11
        <property name="src" location="pal"/>
 
12
        <property name="build" location="build"/>
 
13
        <property name="dist"  location="dist"/>
 
14
        <!-- We insert our version here :-) -->
 
15
        <property name="version" value="cvs"/>
 
16
 
 
17
        <target name="init">
 
18
                <!-- Create the build directory structure used by compile -->
 
19
                <mkdir dir="${build}"/>
 
20
        </target>
 
21
 
 
22
        <target name="compile" depends="init" description="compile the source">
 
23
                <!-- Compile the java code from ${src} into ${build} -->
 
24
                <javac srcdir="${src}" destdir="${build}"/>
 
25
        </target>
 
26
 
 
27
        <target name="dist" depends="compile" description="generate the distribution">
 
28
                <!-- Create the distribution directory -->
 
29
        <mkdir dir="${dist}/lib"/>
 
30
 
 
31
    <!-- Put everything in ${build} into the MyProject-${DSTAMP}.jar file -->
 
32
    <jar jarfile="${dist}/lib/pal-${version}.jar" basedir="${build}"/>
 
33
  </target>
 
34
 
 
35
        <target name="doc" description="make docs" >
 
36
        <javadoc sourcepath="."
 
37
                                packagenames="pal.*"
 
38
             destdir="${dist}/doc/api"
 
39
             author="true"
 
40
             version="true"
 
41
             use="true">
 
42
      </javadoc>
 
43
   </target>
 
44
 
 
45
         <target name="clean"
 
46
        description="clean up" >
 
47
    <!-- Delete the ${build} and ${dist} directory trees -->
 
48
    <delete dir="${build}"/>
 
49
    <delete dir="${dist}"/> 
 
50
  </target>
 
51
 
 
52
        
 
53
        
 
54
</project>
 
 
b'\\ No newline at end of file'