Gentoo Archives: gentoo-commits

From: "Manuel Rueger (mrueg)" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-java/jlibeps/files: jlibeps-build.xml.patch
Date: Fri, 03 Jan 2014 21:59:39
Message-Id: 20140103215936.05B192004C@flycatcher.gentoo.org
1 mrueg 14/01/03 21:59:35
2
3 Added: jlibeps-build.xml.patch
4 Log:
5 Import from sunrise-overlay. Fixes bug #162790. Add java-herd as backup.
6
7 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key )
8
9 Revision Changes Path
10 1.1 dev-java/jlibeps/files/jlibeps-build.xml.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/jlibeps/files/jlibeps-build.xml.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/jlibeps/files/jlibeps-build.xml.patch?rev=1.1&content-type=text/plain
14
15 Index: jlibeps-build.xml.patch
16 ===================================================================
17 --- build.xml.old 2012-04-04 16:52:56.948652156 +0200
18 +++ build.xml 2012-04-05 17:35:30.360517235 +0200
19 @@ -19,9 +19,15 @@
20 </javadoc>
21 </target>
22
23 -
24 + <!-- Builds classes -->
25 + <target name="compile" description="Builds classes">
26 + <javac srcdir="src" destdir="bin">
27 + <classpath />
28 + <include name="**/*.java" />
29 + </javac>
30 + </target>
31 <!-- Creates the jar -->
32 - <target name="jar" description="Generates jlibeps.jar">
33 + <target name="jar" description="Generates jlibeps.jar" depends="compile">
34
35 <jar jarfile="${dir.out}/jlibeps.jar" >
36 <!-- Filters the files -->