Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 63296 | Differences between
and this patch

Collapse All | Expand All

(-)fesi-1.1.8.orig/ant/build.xml (-15 / +7 lines)
Lines 6-25 Link Here
6
   <property name="version.level" value="1.1.8"/>
6
   <property name="version.level" value="1.1.8"/>
7
   <property name="version.date" value="29-Sep-2003"/>
7
   <property name="version.date" value="29-Sep-2003"/>
8
    
8
    
9
    
9
  <property file="ant/build.properties" />
10
    <!-- Allows us to use the IzPack Ant task -->
11
   <taskdef name="izpack" classpath="${basedir}/lib/compiler.jar"
12
         classname="com.izforge.izpack.ant.IzPackTask"/>
13
14
    
15
  <!-- Referenced libraries -->
16
  <property name="javaccdir" location = "C:/javadev/TOOLS/javacc-3.2/bin/lib/javacc.jar"/>
17
  <property name="ororegexp" location="c:/javadev/LIBS/jakarta-oro-2.0.7/jakarta-oro-2.0.7.jar"/>
18
  <property name="gnuregexp" location="c:/javadev/LIBS/gnu.regexp-1.1.4/lib/gnu-regexp-1.1.4.jar"/>
19
  
20
  <property name="bsfdir" location = "C:/javadev/LIBS/bsf-2.3.0/lib/bsf.jar"/>
21
  
22
  <property name="izpackdir" location = "C:/program files/IzPack"/>
23
 
10
 
24
  <!-- Source content directory structure -->
11
  <!-- Source content directory structure -->
25
  <property name="src" location="src"/>
12
  <property name="src" location="src"/>
Lines 143-149 Link Here
143
   <!-- Compile the java code from ${src} into ${build} -->
130
   <!-- Compile the java code from ${src} into ${build} -->
144
  <target name="compile" depends="init"
131
  <target name="compile" depends="init"
145
        description="compile the source " >
132
        description="compile the source " >
146
     <javac srcdir="${src}" destdir="${build}" debug="true">
133
     <javac srcdir="${src}" 
134
     	destdir="${build}" 
135
	debug="true"
136
	source="1.3"
137
	target="1.3">
147
       <classpath refid="project.compile.class.path"/>
138
       <classpath refid="project.compile.class.path"/>
148
    </javac>
139
    </javac>
149
  </target>
140
  </target>
Lines 170-175 Link Here
170
    <doctitle><![CDATA[<h1>Test</h1>]]></doctitle>
161
    <doctitle><![CDATA[<h1>Test</h1>]]></doctitle>
171
    <bottom><![CDATA[<i>Copyright &#169; 2003 Jean-Marc Lugrin. All Rights Reserved. Licensed under LGPL</i>]]></bottom>
162
    <bottom><![CDATA[<i>Copyright &#169; 2003 Jean-Marc Lugrin. All Rights Reserved. Licensed under LGPL</i>]]></bottom>
172
    <link href="http://java.sun.com/j2se/1.4.2/docs/api/"/>
163
    <link href="http://java.sun.com/j2se/1.4.2/docs/api/"/>
164
    <classpath refid="project.compile.class.path"/>
173
  </javadoc>
165
  </javadoc>
174
  </target>
166
  </target>
175
167
(-)fesi-1.1.8.orig/src/FESI/Interpreter/Version.in (-25 lines)
Lines 1-25 Link Here
1
// EcmaScriptEvaluateVisitor.java
2
// FESI Copyright (c) Jean-Marc Lugrin, 1999
3
//
4
// This program is free software; you can redistribute it and/or
5
// modify it under the terms of the GNU Lesser General Public
6
// License as published by the Free Software Foundation; either
7
// version 2 of the License, or (at your option) any later version.
8
9
// This program is distributed in the hope that it will be useful,
10
// but WITHOUT ANY WARRANTY; without even the implied warranty of
11
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12
// Lesser General Public License for more details.
13
14
// You should have received a copy of the GNU Lesser General Public
15
// License along with this library; if not, write to the Free Software
16
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
package FESI.Interpreter;
18
19
/**
20
 * Contains version identification
21
 */
22
public class Version {
23
    public static final String Level = "@VERSION.LEVEL@";
24
    public static final String Date = "@VERSION.DATE@";
25
}
(-)fesi-1.1.8.orig/src/FESI/Interpreter/Version.java (-2 / +2 lines)
Lines 20-25 package FESI.Interpreter; Link Here
20
 * Contains version identification
20
 * Contains version identification
21
 */
21
 */
22
public class Version {
22
public class Version {
23
    public static final String Level = "1.1.8";
23
    public static final String Level = "@VERSION.LEVEL@";
24
    public static final String Date = "29-Sep-2003";
24
    public static final String Date = "@VERSION.DATE@";
25
}
25
}

Return to bug 63296