summaryrefslogtreecommitdiff
path: root/java/eclipse/scripts/post-extract
diff options
context:
space:
mode:
authorJonathan Chen <jonc@chen.org.nz>2022-06-24 16:30:21 +0800
committerLi-Wen Hsu <lwhsu@FreeBSD.org>2022-06-24 16:36:11 +0800
commite1b29db6eb266748e352efcc6f9c4e96c118a316 (patch)
tree1452c3da07020afe9fd096d9b2db5749c3fe6453 /java/eclipse/scripts/post-extract
parentmail/phplist: Update to 3.6.8 (diff)
java/eclipse: Update to 4.24
PR: 264864
Diffstat (limited to 'java/eclipse/scripts/post-extract')
-rw-r--r--java/eclipse/scripts/post-extract38
1 files changed, 0 insertions, 38 deletions
diff --git a/java/eclipse/scripts/post-extract b/java/eclipse/scripts/post-extract
deleted file mode 100644
index b93b0971f2de..000000000000
--- a/java/eclipse/scripts/post-extract
+++ /dev/null
@@ -1,38 +0,0 @@
-#!/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