I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit c03cb1de authored by jrandom's avatar jrandom Committed by zzz
Browse files

revised GUI fetch/build/dist process - at the top level, run

'ant prepGUI' to fetch and prepare the jfreechart code
'ant buildGUI' to build the jars necessary
'ant distGUI' to build a gui.zip that contains the jars and a
license notice related to the LGPL and APL software linked
within it.
("installing" the GUI == unzip gui.zip into the I2P install dir)
parent f0004290
No related branches found
No related tags found
No related merge requests found
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<project basedir="." default="all" name="heartbeat"> <project basedir="." default="all" name="heartbeat">
<target name="all" depends="clean, buildGUI" /> <target name="all" depends="clean, buildGUI" />
<target name="build" depends="builddep, jar"> <target name="build" depends="builddep, jar" />
<echo message="heartbeat engine built, but to get the heartbeat GUI, run the buildGUI target" /> <target name="buildGUI" depends="build, jarGUI" />
<echo message="However, to build the GUI, you need to fetch it the JFreeChart package by running the fetchJfreechart target" />
</target>
<target name="fetchJfreechart">
<mkdir dir="./lib" />
<get src="http://www.jfree.org/jfreechart/jfreechart-0.9.17.zip" verbose="true" dest="lib/jfreechart-0.9.17.zip" />
<unzip src="lib/jfreechart-0.9.17.zip" dest="lib/" />
</target>
<target name="buildGUI" depends="build, jfreechart, jarGUI" />
<target name="builddep"> <target name="builddep">
<ant dir="../../../core/java/" target="build" /> <ant dir="../../../core/java/" target="build" />
</target> </target>
...@@ -25,14 +17,11 @@ ...@@ -25,14 +17,11 @@
<javac debug="true" destdir="./build/obj"> <javac debug="true" destdir="./build/obj">
<src path="src/" /> <src path="src/" />
<classpath path="../../../core/java/build/i2p.jar" /> <classpath path="../../../core/java/build/i2p.jar" />
<classpath path="lib/jfreechart-0.9.17/lib/jcommon-0.9.2.jar" /> <classpath path="../../jfreechart/jfreechart-0.9.17/lib/jcommon-0.9.2.jar" />
<classpath path="lib/jfreechart-0.9.17/lib/log4j-1.2.8.jar" /> <classpath path="../../jfreechart/jfreechart-0.9.17/lib/log4j-1.2.8.jar" />
<classpath path="lib/jfreechart-0.9.17/jfreechart-0.9.17.jar" /> <classpath path="../../jfreechart/jfreechart-0.9.17/jfreechart-0.9.17.jar" />
</javac> </javac>
</target> </target>
<target name="jfreechart">
<ant dir="./lib/jfreechart-0.9.17/" antfile="ant/build.xml" target="compile" />
</target>
<target name="jar" depends="compile"> <target name="jar" depends="compile">
<jar destfile="./build/heartbeat.jar" basedir="./build/obj" includes="**/*.class"> <jar destfile="./build/heartbeat.jar" basedir="./build/obj" includes="**/*.class">
<manifest> <manifest>
...@@ -42,16 +31,16 @@ ...@@ -42,16 +31,16 @@
</jar> </jar>
</target> </target>
<target name="jarGUI" depends="compileGUI"> <target name="jarGUI" depends="compileGUI">
<copy file="lib/jfreechart-0.9.17/jfreechart-0.9.17.jar" todir="build/" /> <copy file="../../jfreechart/jfreechart-0.9.17/jfreechart-0.9.17.jar" todir="build/" />
<copy file="lib/jfreechart-0.9.17/lib/log4j-1.2.8.jar" todir="build/" /> <copy file="../../jfreechart/jfreechart-0.9.17/lib/log4j-1.2.8.jar" todir="build/" />
<copy file="lib/jfreechart-0.9.17/lib/jcommon-0.9.2.jar" todir="build/" /> <copy file="../../jfreechart/jfreechart-0.9.17/lib/jcommon-0.9.2.jar" todir="build/" />
<jar destfile="./build/heartbeatGUI.jar" basedir="./build/obj" includes="**"> <jar destfile="./build/heartbeatGUI.jar" basedir="./build/obj" includes="**">
<manifest> <manifest>
<attribute name="Main-Class" value="net.i2p.heartbeat.gui.HeartbeatMonitor" /> <attribute name="Main-Class" value="net.i2p.heartbeat.gui.HeartbeatMonitor" />
<attribute name="Class-Path" value="log4j-1.2.8.jar jcommon-0.9.2.jar jfreechart-0.9.17.jar heartbeatGUI.jar i2p.jar" /> <attribute name="Class-Path" value="log4j-1.2.8.jar jcommon-0.9.2.jar jfreechart-0.9.17.jar heartbeatGUI.jar i2p.jar" />
</manifest> </manifest>
</jar> </jar>
<echo message="You will need to copy the log4j, jcommon, and jfreechart jar files from build/ into your lib dir" /> <echo message="You will need to copy the log4j, jcommon, and jfreechart jar files into your lib dir" />
</target> </target>
<target name="javadoc"> <target name="javadoc">
<mkdir dir="./build" /> <mkdir dir="./build" />
......
This diff is collapsed.
<?xml version="1.0" encoding="UTF-8"?>
<project basedir="." default="all" name="jfreechart">
<target name="all">
<echo message="The code in the JFreeChart software contains LGPL and APL licensed software," />
<echo message="and is not necessary for using I2P. However, there is a seperate GUI for the " />
<echo message="heartbeat and netmonitor applications that uses this, so the retrieval of that " />
<echo message="code from the JFreeChart distribution is being made available (though we make no" />
<echo message="modifications to the code used here whatsoever - it is simply used by the public domain GUIs. " />
<echo message="If you would like to fetch the code, run the ant task 'fetchJfreechart'" />
<echo message="If you would like to build the code, run the ant task 'build'" />
<echo message="If you would like to delete the code, run the ant task 'clean'" />
</target>
<target name="build">
<ant dir="./jfreechart-0.9.17/" antfile="ant/build.xml" target="compile" />
</target>
<target name="fetchJfreechart">
<mkdir dir="./lib" />
<get src="http://www.jfree.org/jfreechart/jfreechart-0.9.17.zip" verbose="true" dest="jfreechart-0.9.17.zip" />
<unzip src="jfreechart-0.9.17.zip" dest="." />
</target>
<target name="builddep" />
<target name="compile" />
<target name="jar" />
<target name="clean">
<delete dir="./jfreechart-0.9.17/" />
</target>
<target name="cleandep" depends="clean" />
<target name="distclean" depends="clean" />
</project>
...@@ -5,12 +5,7 @@ ...@@ -5,12 +5,7 @@
<target name="builddep"> <target name="builddep">
<ant dir="../../../core/java/" target="build" /> <ant dir="../../../core/java/" target="build" />
</target> </target>
<target name="fetchJfreechart"> <target name="buildGUI" depends="build, jarGUI" />
<mkdir dir="./lib" />
<get src="http://www.jfree.org/jfreechart/jfreechart-0.9.17.zip" verbose="true" dest="lib/jfreechart-0.9.17.zip" />
<unzip src="lib/jfreechart-0.9.17.zip" dest="lib/" />
</target>
<target name="buildGUI" depends="build, jfreechart, jarGUI" />
<target name="compile"> <target name="compile">
<mkdir dir="./build" /> <mkdir dir="./build" />
<mkdir dir="./build/obj" /> <mkdir dir="./build/obj" />
...@@ -23,26 +18,23 @@ ...@@ -23,26 +18,23 @@
<javac debug="true" destdir="./build/obj"> <javac debug="true" destdir="./build/obj">
<src path="src/" /> <src path="src/" />
<classpath path="../../../core/java/build/i2p.jar" /> <classpath path="../../../core/java/build/i2p.jar" />
<classpath path="lib/jfreechart-0.9.17/lib/jcommon-0.9.2.jar" /> <classpath path="../../jfreechart/jfreechart-0.9.17/lib/jcommon-0.9.2.jar" />
<classpath path="lib/jfreechart-0.9.17/lib/log4j-1.2.8.jar" /> <classpath path="../../jfreechart/jfreechart-0.9.17/lib/log4j-1.2.8.jar" />
<classpath path="lib/jfreechart-0.9.17/jfreechart-0.9.17.jar" /> <classpath path="../../jfreechart/jfreechart-0.9.17/jfreechart-0.9.17.jar" />
</javac> </javac>
</target> </target>
<target name="jfreechart">
<ant dir="./lib/jfreechart-0.9.17/" antfile="ant/build.xml" target="compile" />
</target>
<target name="jarGUI" depends="compileGUI"> <target name="jarGUI" depends="compileGUI">
<copy file="lib/jfreechart-0.9.17/jfreechart-0.9.17.jar" todir="build/" /> <copy file="../../jfreechart/jfreechart-0.9.17/jfreechart-0.9.17.jar" todir="build/" />
<copy file="lib/jfreechart-0.9.17/lib/log4j-1.2.8.jar" todir="build/" /> <copy file="../../jfreechart/jfreechart-0.9.17/lib/log4j-1.2.8.jar" todir="build/" />
<copy file="lib/jfreechart-0.9.17/lib/jcommon-0.9.2.jar" todir="build/" /> <copy file="../../jfreechart/jfreechart-0.9.17/lib/jcommon-0.9.2.jar" todir="build/" />
<jar destfile="./build/netviewer.jar" basedir="./build/obj" includes="**"> <jar destfile="./build/netviewer.jar" basedir="./build/obj" includes="**">
<manifest> <manifest>
<attribute name="Main-Class" value="net.i2p.netmonitor.gui.NetViewer" /> <attribute name="Main-Class" value="net.i2p.netmonitor.gui.NetViewer" />
<attribute name="Class-Path" value="log4j-1.2.8.jar jcommon-0.9.2.jar jfreechart-0.9.17.jar netviewer.jar i2p.jar" /> <attribute name="Class-Path" value="log4j-1.2.8.jar jcommon-0.9.2.jar jfreechart-0.9.17.jar netviewer.jar i2p.jar" />
</manifest> </manifest>
</jar> </jar>
<echo message="You will need to copy the log4j, jcommon, and jfreechart jar files from build/ into your lib dir" /> <echo message="You will need to copy the log4j, jcommon, and jfreechart jar files into your lib dir" />
</target> </target>
<target name="jar" depends="compile"> <target name="jar" depends="compile">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment