summaryrefslogtreecommitdiff
path: root/dev-java/jarjar/files
diff options
context:
space:
mode:
Diffstat (limited to 'dev-java/jarjar/files')
-rw-r--r--dev-java/jarjar/files/0.9-bootclasspath.patch11
-rw-r--r--dev-java/jarjar/files/0.9-system-jars.patch20
2 files changed, 31 insertions, 0 deletions
diff --git a/dev-java/jarjar/files/0.9-bootclasspath.patch b/dev-java/jarjar/files/0.9-bootclasspath.patch
new file mode 100644
index 000000000000..6a46d1afbd5a
--- /dev/null
+++ b/dev-java/jarjar/files/0.9-bootclasspath.patch
@@ -0,0 +1,11 @@
+--- build.xml 2008-09-13 13:55:40.000000000 +0200
++++ build.xml 2009-10-06 20:51:53.000000000 +0200
+@@ -48,7 +48,7 @@
+ </copy>
+ <javac srcdir="src/@{module}" destdir="build/@{module}"
+ source="${compile.source}"
+- target="${compile.target}" bootclasspath="@{bootclasspath}" extdirs="${compile.extdirs}"
++ target="${compile.target}" extdirs="${compile.extdirs}"
+ debug="${compile.debug}" optimize="${compile.optimize}" deprecation="${compile.deprecation}">
+ <classpath refid="@{refid}"/>
+ <compilerarg value="-Xlint"/>
diff --git a/dev-java/jarjar/files/0.9-system-jars.patch b/dev-java/jarjar/files/0.9-system-jars.patch
new file mode 100644
index 000000000000..c2fcf98f27e7
--- /dev/null
+++ b/dev-java/jarjar/files/0.9-system-jars.patch
@@ -0,0 +1,20 @@
+Index: build.xml
+===================================================================
+--- build.xml (revision 90)
++++ build.xml (working copy)
+@@ -93,6 +93,15 @@
+ </jarjar>
+ </target>
+
++ <target name="jar-nojarjar" depends="compile" description="Create Jar Without running JarJar task on it">
++ <mkdir dir="dist"/>
++ <jar jarfile="${jarfile}" basedir="build/main/">
++ <manifest>
++ <attribute name="Main-Class" value="com.tonicsystems.jarjar.Main"/>
++ <attribute name="Implementation-Version" value="${version}"/>
++ </manifest>
++ </jar>
++ </target>
+ <target name="jar-util" depends="compile" description="Create utility Jar">
+ <mkdir dir="dist"/>
+ <jar jarfile="${jarfile.util}">