Gentoo Archives: gentoo-commits

From: "Alistair Bush (ali_bush)" <ali_bush@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/tightvnc/files: tightvnc-1.3.9-java-build.patch
Date: Thu, 11 Sep 2008 11:15:01
Message-Id: E1Kdk8Z-0006GW-4O@stork.gentoo.org
1 ali_bush 08/09/11 11:14:59
2
3 Added: tightvnc-1.3.9-java-build.patch
4 Log:
5 Bump tightvnc to fix java support.
6 (Portage version: 2.2_rc8/cvs/Linux 2.6.26-gentoo x86_64)
7
8 Revision Changes Path
9 1.1 net-misc/tightvnc/files/tightvnc-1.3.9-java-build.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/tightvnc/files/tightvnc-1.3.9-java-build.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/tightvnc/files/tightvnc-1.3.9-java-build.patch?rev=1.1&content-type=text/plain
13
14 Index: tightvnc-1.3.9-java-build.patch
15 ===================================================================
16 --- vnc_javasrc/Makefile.bak 2008-09-11 21:17:37.000000000 +1200
17 +++ vnc_javasrc/Makefile 2008-09-11 21:18:30.000000000 +1200
18 @@ -4,7 +4,6 @@
19
20 CP = cp
21 JC = javac
22 -JCFLAGS = -target 1.1
23 JAR = jar
24 ARCHIVE = VncViewer.jar
25 MANIFEST = MANIFEST.MF
26 @@ -32,7 +31,7 @@
27 all: $(CLASSES) $(ARCHIVE)
28
29 $(CLASSES): $(SOURCES)
30 - $(JC) $(JCFLAGS) -O $(SOURCES)
31 + $(JC) $(JAVACFLAGS) -O $(SOURCES)
32
33 $(ARCHIVE): $(CLASSES) $(MANIFEST)
34 $(JAR) cfm $(ARCHIVE) $(MANIFEST) $(CLASSES)