Gentoo Archives: gentoo-commits

From: "Vlastimil Babka (caster)" <caster@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-text/jabref/files: jabref-2.4-build.xml.patch
Date: Sat, 11 Oct 2008 22:06:20
Message-Id: E1KombK-0006E7-5B@stork.gentoo.org
1 caster 08/10/11 22:06:18
2
3 Added: jabref-2.4-build.xml.patch
4 Log:
5 Version bump, bug #236505. Bundles jpfcodegen for now due to unavailable homepage. Had to drop keywords for new dep.
6 (Portage version: 2.2_rc11/cvs/Linux 2.6.26-gentoo-r1-perfctr x86_64)
7
8 Revision Changes Path
9 1.1 app-text/jabref/files/jabref-2.4-build.xml.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/jabref/files/jabref-2.4-build.xml.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/jabref/files/jabref-2.4-build.xml.patch?rev=1.1&content-type=text/plain
13
14 Index: jabref-2.4-build.xml.patch
15 ===================================================================
16 --- build.xml 2008-09-17 22:45:35.000000000 +0200
17 +++ build.xml 2008-09-17 22:46:39.000000000 +0200
18 @@ -171,7 +171,7 @@
19
20 <!-- Run the JPF Code Generator -->
21 <target name="generate" unless="needsNoRegenerate">
22 - <java classname="net.sf.jabref.plugin.util.CodeGenerator" fork="true">
23 + <java classname="net.sf.jabref.plugin.util.CodeGenerator" fork="true" failonerror="true">
24 <arg value="${plugin.dir}" />
25 <classpath refid="codegenerator" />
26 </java>
27 @@ -217,7 +217,7 @@
28 </target>
29
30 <!-- Jars up project -->
31 - <target name="jars" depends="build, unjarlib">
32 + <target name="jars" depends="build">
33 <mkdir dir="${build.lib}" />
34 <mkdir dir="${build.tmp}" />
35 <jar destfile="${build.lib}/${build.jar}">
36 @@ -403,6 +403,7 @@
37
38
39 <target name="osxjar">
40 + <taskdef name="jarbundler" classpath="${lib.dir}/jarbundler-1.4.jar" classname="com.loomcom.ant.tasks.jarbundler.JarBundler" />
41 <jarbundler dir="${build.lib}" name="JabRef" mainclass="net.sf.jabref.JabRef" jars="${build.lib}/${build.jar}" icon="${images.dir}/JabRef-Logo.icns" version="${jabref.version}" jvmversion="1.4+" stubfile="${lib.dir}/JavaApplicationStub" />
42 </target>
43
44 @@ -611,6 +612,5 @@
45 </jalopy>
46 </target>
47
48 - <taskdef name="jarbundler" classpath="${lib.dir}/jarbundler-1.4.jar" classname="com.loomcom.ant.tasks.jarbundler.JarBundler" />
49
50 </project>