1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
Author: Miguel Landaeta <miguel@miguel.cc>
Subject: compile jets3t using libraries installed on system
diff --git a/build.xml b/build.xml
index baeccae..6636aae 100644
--- a/build.xml
+++ b/build.xml
@@ -70,7 +70,7 @@ zip-source-code : Zips the JetS3t source code to an archive file with a
Define the script-wide classpath.
================================= -->
<path id="classpath">
- <fileset dir="${dir.libs}" includes="**/*.jar"/>
+ <fileset dir="/" includesfile="debian/classpath-debian"/>
</path>
@@ -78,7 +78,7 @@ zip-source-code : Zips the JetS3t source code to an archive file with a
depends="rebuild-service,rebuild-cockpit,rebuild-cockpitlite,rebuild-synchronize,rebuild-uploader,rebuild-gatekeeper"/>
<target name="unzip-source-code" unless="src-unzipped">
- <unzip dest="." src="src.zip" overwrite="false"/>
+ <!--<unzip dest="." src="src.zip" overwrite="false"/>-->
</target>
<target name="zip-source-code">
@@ -241,12 +241,14 @@ to refer to this official keystore.
todir="${dir.applets}"
flatten="true"
>
+ <!--
<fileset dir="${dir.libs}">
<include name="**/commons-logging/*.jar"/>
<include name="**/commons-codec/*.jar"/>
<include name="**/commons-httpclient/*.jar"/>
<include name="**/bouncycastle/*.jar"/>
</fileset>
+ -->
</copy>
<!-- Sign jars -->
|