You are viewing a plain text version of this content. The canonical link for it is here.
Posted to fop-commits@xmlgraphics.apache.org by ke...@apache.org on 2002/08/06 08:31:52 UTC

cvs commit: xml-fop build.sh build.xml

keiron      2002/08/05 23:31:52

  Modified:    .        build.sh build.xml
  Log:
  makes antRun exec in build.sh and adds overview for javadoc generation
  Submitted by:	Victor Mote <vi...@outfitr.com>
  updated classpaths
  
  Revision  Changes    Path
  1.20      +5 -1      xml-fop/build.sh
  
  Index: build.sh
  ===================================================================
  RCS file: /home/cvs/xml-fop/build.sh,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- build.sh	14 Jul 2002 15:23:47 -0000	1.19
  +++ build.sh	6 Aug 2002 06:31:52 -0000	1.20
  @@ -26,10 +26,14 @@
   fi
   
   LIBDIR=lib
  -LOCALCLASSPATH=$JAVA_HOME/lib/tools.jar:$JAVA_HOME/lib/classes.zip:$LIBDIR/ant.jar:$LIBDIR/batik.jar:$LIBDIR/buildtools.jar:$LIBDIR/xerces-1.4.3.jar:$LIBDIR/xalan-2.3.1.jar:$LIBDIR/xml-apis.jar
  +LOCALCLASSPATH=$JAVA_HOME/lib/tools.jar:$JAVA_HOME/lib/classes.zip:$LIBDIR/ant.jar:$LIBDIR/batik.jar:$LIBDIR/buildtools.jar:$LIBDIR/xercesImpl-2.0.1.jar:$LIBDIR/xalan-2.3.1.jar:$LIBDIR/xml-apis.jar
   LOCALCLASSPATH=$LOCALCLASSPATH:$LIBDIR/jimi-1.0.jar:$LIBDIR/avalon-framework-cvs-20020315.jar
   
   ANT_HOME=$LIBDIR
  +# antRun must be executable (can't do this in build.xml because Ant uses antRun
  +# to do the chmod)
  +chmod +rx $LIBDIR/bin/antRun
  +
   
   # For Cygwin, switch paths to Windows format before running java
   if $cygwin; then
  
  
  
  1.57      +6 -5      xml-fop/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/xml-fop/build.xml,v
  retrieving revision 1.56
  retrieving revision 1.57
  diff -u -r1.56 -r1.57
  --- build.xml	25 Jul 2002 09:32:26 -0000	1.56
  +++ build.xml	6 Aug 2002 06:31:52 -0000	1.57
  @@ -125,8 +125,9 @@
       </fileset>
   
       <fileset dir="${basedir}" id="dist.bin.lib">
  -       <include name="lib/xerces-1.4.3.jar"/>
  +       <include name="lib/xercesImpl-2.0.1.jar"/>
          <include name="lib/xalan-2.2D11.jar"/>
  +       <include name="lib/xml-apis.jar"/>
          <include name="lib/batik.jar"/>
          <include name="lib/avalon-framework-cvs-20020315.jar"/>
          <include name="lib/jimi*"/>
  @@ -367,7 +368,7 @@
       <!-- copy src files -->
       <copy todir="${build.src}">
         <fileset dir="${src.dir}" 
  -         excludes="**/Makefile*, **/package.html, **/${jimi},**/${jai},**/${xsltransform},**/${trax},**/apps/TraxInputHandler.java"/>
  +         excludes="**/${jimi},**/${jai},**/${xsltransform},**/${trax},**/apps/TraxInputHandler.java"/>
       </copy>
     </target>
   
  @@ -492,7 +493,7 @@
       <fileset dir="${build.dest}" includes="org/apache/fop/svg/**"/>
       <fileset dir="${build.dest}" includes="org/apache/fop/render/pdf/**"
                excludes="org/apache/fop/render/pdf/PDFRenderer.class,org/apache/fop/render/pdf/PDFXMLHandler*"/>
  -    <fileset dir="${build.dest}" includes="org/apache/fop/layout/Font*.class,org/apache/fop/apps/Version.class,org/apache/fop/image/FopImag*.class,org/apache/fop/image/Jpeg*,org/apache/fop/image/Abstract*,org/apache/fop/configuration/**,org/apache/fop/util/StreamUtilities.class"/>
  +    <fileset dir="${build.dest}" includes="org/apache/fop/layout/Font*.class,org/apache/fop/image/FopImag*.class,org/apache/fop/image/Jpeg*,org/apache/fop/image/Abstract*,org/apache/fop/util/StreamUtilities.class"/>
       <manifest>
           <attribute name="Implementation-Title" value="${pdf-transcoder.name}"/>
           <attribute name="Implementation-Version" value="${pdf-transcoder.version}"/>
  @@ -529,8 +530,6 @@
     <!-- =================================================================== -->
     <target name="prepare-docs" depends="init">
       <mkdir dir="${build.docs}"/>
  -    <!-- sets exec permission for antRun on Unix systems. necessary for javadoc-->
  -    <chmod file="${lib.dir}/bin/antRun" perm="ugo+rx" />
     </target>
   
   
  @@ -548,6 +547,8 @@
                windowtitle="${Name} API"
                doctitle="${Name}"
                bottom="Copyright &#169; ${year} Apache Software Foundation. All Rights Reserved."
  +             overview="${build.src}/overview.html"
  +             failonerror="true"
       />
     </target>
   
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: fop-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: fop-cvs-help@xml.apache.org