summaryrefslogtreecommitdiff
path: root/java/eclipse/scripts/post-extract
diff options
context:
space:
mode:
authorKurt Jaeger <pi@FreeBSD.org>2019-04-14 09:14:32 +0000
committerKurt Jaeger <pi@FreeBSD.org>2019-04-14 09:14:32 +0000
commit765525b60a7094d21911f9cf3bca389d03aca79f (patch)
treefed51259f984e2e19a3483723393a0b30bdace58 /java/eclipse/scripts/post-extract
parentnet/radvd: Update to 2.18 (diff)
java/eclipse: update 4.6 -> 4.11, submitter becomes maintainer
- port is rewritten from scratch - Warning: UI widgets are oddly sized, currently under investigation PR: 236792 Submitted by: Jonathan Chen <jonc@chen.org.nz> Reviewed by: mizhka@gmail.com, Curtis Hamilton Approved by: ljboiler@gmail.com (maintainer timeout) Relnotes: https://www.eclipse.org/eclipseide/2019-03/noteworthy/
Notes
Notes: svn path=/head/; revision=498880
Diffstat (limited to 'java/eclipse/scripts/post-extract')
-rw-r--r--java/eclipse/scripts/post-extract38
1 files changed, 38 insertions, 0 deletions
diff --git a/java/eclipse/scripts/post-extract b/java/eclipse/scripts/post-extract
new file mode 100644
index 000000000000..b93b0971f2de
--- /dev/null
+++ b/java/eclipse/scripts/post-extract
@@ -0,0 +1,38 @@
+#!/bin/sh
+#
+# Move sub-projects into the right place
+#
+ECLIPSE_MODULES="
+ eclipse.jdt
+ eclipse.jdt.core
+ eclipse.jdt.core.binaries
+ eclipse.jdt.debug
+ eclipse.jdt.ui
+ eclipse.pde.build
+ eclipse.pde.ui
+ eclipse.platform
+ eclipse.platform.common
+ eclipse.platform.debug
+ eclipse.platform.releng
+ eclipse.platform.resources
+ eclipse.platform.runtime
+ eclipse.platform.swt
+ eclipse.platform.swt.binaries
+ eclipse.platform.team
+ eclipse.platform.text
+ eclipse.platform.ua
+ eclipse.platform.ui
+ eclipse.platform.ui.tools
+ rt.equinox.binaries
+ rt.equinox.bundles
+ rt.equinox.framework
+ rt.equinox.p2"
+
+cd ${WRKSRC}
+
+# Reorg
+for M in ${ECLIPSE_MODULES}
+do
+ rm -r ${M}
+ mv ${WRKDIR}/${M}-* ${M}
+done