diff options
author | lioux <lioux@FreeBSD.org> | 2005-01-14 06:16:14 +0800 |
---|---|---|
committer | lioux <lioux@FreeBSD.org> | 2005-01-14 06:16:14 +0800 |
commit | 97e99dc24eb82566e8788c4416069f0f1b4db3c2 (patch) | |
tree | 8569a826791daed469a7a93faa6c98971e9f34c1 /net-p2p/azureus2/files | |
parent | ae60bbc2ef2a74928374d5ac948ed837a241a25b (diff) | |
download | freebsd-ports-gnome-97e99dc24eb82566e8788c4416069f0f1b4db3c2.tar.gz freebsd-ports-gnome-97e99dc24eb82566e8788c4416069f0f1b4db3c2.tar.zst freebsd-ports-gnome-97e99dc24eb82566e8788c4416069f0f1b4db3c2.zip |
o Build an azureus jar with a native jdk instead of downloading the
jar
o Use a custom made ant build.xml for building. Written with help
from [1]
o Clean up CLASSPATH, we do not need swt-pi-mozilla.jar
o Bump PORTREVISION
Reviewed by: jrandom [1]
Diffstat (limited to 'net-p2p/azureus2/files')
-rw-r--r-- | net-p2p/azureus2/files/azureus | 2 | ||||
-rw-r--r-- | net-p2p/azureus2/files/build.xml | 46 |
2 files changed, 47 insertions, 1 deletions
diff --git a/net-p2p/azureus2/files/azureus b/net-p2p/azureus2/files/azureus index 5871a852c4f8..b58835467a73 100644 --- a/net-p2p/azureus2/files/azureus +++ b/net-p2p/azureus2/files/azureus @@ -15,7 +15,7 @@ ECLIPSE_WS=`echo "${ECLIPSE_SWT}" | sed -e "s+^${ECLIPSE_BASE}/plugins/org.eclip ECLIPSE_SWT_JAR=${ECLIPSE_SWT}/ws/${ECLIPSE_WS} LIB_PATH=${ECLIPSE_SWT}/os/freebsd/x86/ -CLASS_PATH=:%%JAVAJARDIR%%/Azureus2.jar:${ECLIPSE_SWT_JAR}/swt-mozilla.jar:${ECLIPSE_SWT_JAR}/swt-pi.jar:${ECLIPSE_SWT_JAR}/swt.jar +CLASS_PATH=:%%JAVAJARDIR%%/%%JARFILE%%:${ECLIPSE_SWT_JAR}/swt-pi.jar:${ECLIPSE_SWT_JAR}/swt.jar if [ "${DEBUG}" ] then diff --git a/net-p2p/azureus2/files/build.xml b/net-p2p/azureus2/files/build.xml new file mode 100644 index 000000000000..fc1523321b80 --- /dev/null +++ b/net-p2p/azureus2/files/build.xml @@ -0,0 +1,46 @@ +<!-- Under a BSDL license. Copyright by Mario S F Ferreira <lioux@FreeBSD.org> 2005- --> +<!-- Under a BSDL license. Copyright by jrandom 2005- --> +<!-- $FreeBSD$ --> +<project basedir="." default="dist" name="azureus"> + <description> + Builds Azureus + </description> + <!-- set global properties for this build --> + <property name="src" location="src"/> + <property name="build" location="build"/> + <property name="dist" location="dist"/> + + <target name="init"> + <!-- Create the time stamp --> + <tstamp/> + <!-- Create the build directory structure used by compile --> + <mkdir dir="${build}"/> + </target> + + <target name="compile" depends="init" description="compile the source " > + <!-- Compile the java code from ${src} into ${build} --> + <javac srcdir="." destdir="${build}"> + <include name="**/*.java"/> + <exclude name="**/Win32*.java"/> + <exclude name="**/swt/osx/**"/> + <classpath path="%%CLASSPATH%%"/> + </javac> + </target> + + <target name="dist" depends="compile" description="generate the distribution" > + <!-- Create the distribution directory --> + <mkdir dir="${dist}/lib"/> + + <copy todir="${build}"> + <fileset dir="." includes="**/*.gif **/*.jpg, **/*.png **/*.properties" /> + </copy> + <!-- Put everything in ${build} into the azureus.jar file --> + <jar jarfile="${dist}/lib/azureus.jar" basedir="${build}"/> + </target> + + <target name="clean" description="clean up" > + <!-- Delete the ${build} and ${dist} directory trees --> + <delete dir="${build}"/> + <delete dir="${dist}"/> + </target> +</project> |