diff options
author | Norbert Grundmann <ngrundmann@gmx.de> | 2024-09-13 03:48:18 +0300 |
---|---|---|
committer | Vladimir Druzenko <vvd@FreeBSD.org> | 2024-09-13 03:48:18 +0300 |
commit | 27eb99fc47558129e3decbaaa06262aaf36f62cc (patch) | |
tree | c9faee3f069d3589e1538d36a46de406308ecfdb /java/eclipse/scripts/pre-patch | |
parent | devel/kBuild: fix build with GCC14 (diff) |
java/eclipse: Update 4.24 → 4.32, take maintainership
PR: 281123
Diffstat (limited to 'java/eclipse/scripts/pre-patch')
-rw-r--r-- | java/eclipse/scripts/pre-patch | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/java/eclipse/scripts/pre-patch b/java/eclipse/scripts/pre-patch deleted file mode 100644 index 122ee1a9488c..000000000000 --- a/java/eclipse/scripts/pre-patch +++ /dev/null @@ -1,53 +0,0 @@ -#!/bin/sh -# -# Reorg source files, reusing Linux sources as the base for FreeBSD builds. -# -LINUX_DIRS=" - eclipse.platform.swt.binaries/bundles/org.eclipse.swt.gtk.linux.* - eclipse.platform.resources/bundles/org.eclipse.core.filesystem.linux.* - eclipse.platform.resources/bundles/org.eclipse.core.filesystem/natives/unix/linux - eclipse.platform.team/bundles/org.eclipse.core.net.linux* - rt.equinox.bundles/bundles/org.eclipse.equinox.security.linux* - rt.equinox.binaries/org.eclipse.equinox.launcher.gtk.linux.* - rt.equinox.framework/bundles/org.eclipse.equinox.launcher.gtk.linux.*" - -rename_arch () -{ - # Rename to FreeBSD TARGET_ARCH names - F=$(echo $1 | sed -e s/linux/freebsd/) - case $F in - *.arm) - echo $(echo $F | sed -e 's/arm/armv7/');; - *.ppc64le) - echo $(echo $F | sed -e 's/ppc64le/powerpc64/');; - *.x86) - echo $(echo $F | sed -e 's/x86/i386/');; - *.x86_64) - echo $(echo $F | sed -e 's/x86_64/amd64/');; - *) - echo ${F};; - esac -} - -cd ${WRKSRC} - -for D in ${LINUX_DIRS} -do - if [ ! -e ${D} ] - then - echo "ERROR: ${D} not found" - continue - fi - - NEWNAME=$(rename_arch ${D}) - mv ${D} ${NEWNAME} - echo "INFO: ${D} -> ${NEWNAME}" - - case ${NEWNAME} in - *.powerpc64) - cp -rf ${NEWNAME} `echo ${NEWNAME} | sed -e 's/powerpc64/powerpc64le/'`;; - esac -done - -# Clean up binaries -rm -rf rt.equinox.binaries/org.eclipse.equinox.executable/bin/gtk/linux |