Upgrade of eclipse-devel to 3.7.0

Thomas Gellekum Thomas.Gellekum at gmx.de
Tue Jul 12 15:33:27 UTC 2011


On 07/10/11 22:10, Greg Lewis wrote:
> On Wed, Jul 06, 2011 at 03:27:41PM +0200, Thomas Gellekum wrote:
>> I've put up patches to upgrade the eclipse-devel port to 3.7.0 at
>> <URL:http://people.freebsd.org/~tg/eclipse-devel-3.7.0.diff>. Please
>> test and post your feedback to the list. If any committer wants to just
>> go ahead and commit the changes (the port is marked broken right now
>> anyway), remember to "cvs add files/patch-generatedScripts".
>
> Thanks Thomas!  I built and started it up and it looked ok, so I've
> committed it to break broader testing easier.

Minor patch attached: rsync was copying symlinks, not the files they 
pointed to.

Also: I noticed plugins installed as a normal user don't work. I have no 
clue yet where that regression comes from. Workaround: install 
additional plugins as root.

tg
-------------- next part --------------
Index: files/patch-eclipse-build
===================================================================
RCS file: /home/ncvs/ports/java/eclipse-devel/files/patch-eclipse-build,v
retrieving revision 1.3
diff -u -r1.3 patch-eclipse-build
--- files/patch-eclipse-build	10 Jul 2011 19:54:53 -0000	1.3
+++ files/patch-eclipse-build	12 Jul 2011 15:25:05 -0000
@@ -107,7 +107,15 @@
  			<arg value="-t${timestamp}" />
  			<arg value="-a${buildArch}" />
  			<arg value="-o${buildOs}" />
-@@ -965,7 +969,7 @@
+@@ -958,14 +962,14 @@
+ 	<target name="installIntoDestDir">
+ 		<mkdir dir="${installationDir}" />
+                 <exec executable="rsync" failonerror="true">
+-                       <arg value="-vrpl" />
++                       <arg value="-vrpL" />
+                        <arg value="--exclude=dropins" />
+                        <arg value="${provisionDir}/" />
+                        <arg value="${installationDir}/" />
                  </exec>
  
  		<!-- install desktop file -->


More information about the freebsd-eclipse mailing list