summaryrefslogtreecommitdiff
path: root/java/eclipse/scripts/pre-patch
blob: b4693a8f92c45e52c3ab903108a69cae1af55f58 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/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
find . -name '*.so' -delete