View | Details | Raw Unified | Return to bug 192696
Collapse All | Expand All

(-)Makefile (-1 / +1 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	eclipse
4
PORTNAME=	eclipse
5
PORTVERSION=	4.3.2
5
PORTVERSION=	4.3.2
6
PORTREVISION=	1
6
PORTREVISION=	2
7
CATEGORIES=	java devel
7
CATEGORIES=	java devel
8
MASTER_SITES=	https://googledrive.com/host/0B2kYpXHnC5LpSk01bU1ud0N5bXc/
8
MASTER_SITES=	https://googledrive.com/host/0B2kYpXHnC5LpSk01bU1ud0N5bXc/
9
DISTFILES=	eclipse.platform.releng.aggregator-${PORTVERSION}.xz \
9
DISTFILES=	eclipse.platform.releng.aggregator-${PORTVERSION}.xz \
(-)files/patch-submodules (+60 lines)
Lines 2457-2459 Link Here
2457
     </plugins>
2457
     </plugins>
2458
   </build>
2458
   </build>
2459
 
2459
 
2460
--- a/eclipse.platform/platform/org.eclipse.platform/plugin.xml.orig	2014-06-05 16:12:04.000000000 -0500
2461
+++ b/eclipse.platform/platform/org.eclipse.platform/plugin.xml	2014-08-01 17:23:26.000000000 -0500
2462
@@ -141,6 +141,12 @@
2463
             basestylesheeturi="css/e4_default_gtk.css"
2464
             id="org.eclipse.e4.ui.css.theme.e4_default"
2465
             label="%theme.gtk"
2466
+            os="freebsd">
2467
+      </theme>
2468
+      <theme
2469
+            basestylesheeturi="css/e4_default_gtk.css"
2470
+            id="org.eclipse.e4.ui.css.theme.e4_default"
2471
+            label="%theme.gtk"
2472
             os="linux">
2473
       </theme>
2474
       <theme
2475
--- a/eclipse.platform.ua/org.eclipse.ui.intro.universal/plugin.xml.orig	2014-06-05 17:05:18.000000000 -0500
2476
+++ b/eclipse.platform.ua/org.eclipse.ui.intro.universal/plugin.xml	2014-08-01 19:39:25.000000000 -0500
2477
@@ -46,7 +46,7 @@
2478
             <implementation
2479
                   style="themes/shared/html/shared.css,$theme$/html/shared.css,$theme$/html/font-$fontStyle$.css,$theme$/html/$direction$.css"
2480
                   kind="html"
2481
-                  os="win32,linux,macosx,solaris">
2482
+                  os="win32,freebsd,linux,macosx,solaris">
2483
             </implementation>
2484
             <implementation
2485
                   kind="swt">
2486
--- a/eclipse.platform.ui/bundles/org.eclipse.ui.browser/plugin.xml.orig	2014-06-05 17:09:12.000000000 -0500
2487
+++ b/eclipse.platform.ui/bundles/org.eclipse.ui.browser/plugin.xml	2014-08-01 19:58:51.000000000 -0500
2488
@@ -83,6 +83,17 @@
2489
 
2490
    <!-- Web Browsers -->
2491
    <extension point="org.eclipse.ui.browser.browsers">
2492
+      <!-- FreeBSD -->
2493
+      <browser
2494
+         id="org.eclipse.ui.browser.firefox"
2495
+         name="%browserFirefox"
2496
+         os="freebsd"
2497
+         executable="firefox"
2498
+         factoryclass="org.eclipse.ui.internal.browser.browsers.MozillaFactory">
2499
+         <location>
2500
+            usr/local/bin/firefox
2501
+         </location>
2502
+      </browser>
2503
       <!-- Linux -->
2504
       <browser
2505
          id="org.eclipse.ui.browser.firefox"
2506
--- a/eclipse.platform.text/org.eclipse.ui.workbench.texteditor/plugin.xml.orig	2014-06-05 17:04:42.000000000 -0500
2507
+++ b/eclipse.platform.text/org.eclipse.ui.workbench.texteditor/plugin.xml	2014-08-01 20:03:04.000000000 -0500
2508
@@ -1184,6 +1184,11 @@
2509
             %blockSelectionModeFont.description
2510
          </description>
2511
          <fontValue
2512
+               os="freebsd"
2513
+               value="Monospace-regular-10"
2514
+               ws="gtk">
2515
+         </fontValue>
2516
+         <fontValue
2517
                os="linux"
2518
                value="Monospace-regular-10"
2519
                ws="gtk">
(-)scripts/pre-patch (-2 lines)
Lines 1-7 Link Here
1
#!/bin/sh
1
#!/bin/sh
2
2
3
set -x
4
5
# Copy the Linux 'native' code for the FreeBSD versions
3
# Copy the Linux 'native' code for the FreeBSD versions
6
# At this point, just make sure the directory and file names are "freebsd"
4
# At this point, just make sure the directory and file names are "freebsd"
7
# These files will be patched in the do-patch step. 
5
# These files will be patched in the do-patch step. 

Return to bug 192696