ports/java/eclipse/scripts/pre-patch
Kurt Jaeger ec45db21d5 java/eclipse: upgrade 4.12 -> 4.14
PR:		243017
Submitted by:	Jonathan Chen <jonc@chen.org.nz> (maintainer)
Relnotes:	https://www.eclipse.org/eclipseide/2019-12/noteworthy/
2020-01-02 11:19:08 +00:00

48 lines
1.2 KiB
Bash

#!/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.*
eclipse.platform.team/bundles/org.eclipse.core.net/natives/unix/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}
done
# Clean up binaries
rm -rf rt.equinox.binaries/org.eclipse.equinox.executable/bin/gtk/linux