From 765525b60a7094d21911f9cf3bca389d03aca79f Mon Sep 17 00:00:00 2001 From: Kurt Jaeger Date: Sun, 14 Apr 2019 09:14:32 +0000 Subject: 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 Reviewed by: mizhka@gmail.com, Curtis Hamilton Approved by: ljboiler@gmail.com (maintainer timeout) Relnotes: https://www.eclipse.org/eclipseide/2019-03/noteworthy/ --- java/eclipse/scripts/post-extract | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 java/eclipse/scripts/post-extract (limited to 'java/eclipse/scripts/post-extract') 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 -- cgit v1.2.3