ports/java/eclipse/scripts/pre-build
Piotr Kubaj 190b9776a1 java/eclipse: fix runtime on powerpc64
Changing "ppc64le" to "ppc64" (or powerpc64) resolves the SIGSEGV issue on big endian but breaks little endian, so replace only on powerpc64.

Submitted by:	hamiltcl@verizon.net
Approved by:	jonc@chen.org.nz (maintainer timeout)
2021-08-08 22:46:59 +00:00

37 lines
915 B
Bash

#!/bin/sh
#
# Build quirks
#
cd ${WRKSRC}
ARCHS="amd64 powerpc64 powerpc64le"
# Create dummy repo for jgit
if [ ! -d .git ]
then
mkdir ${WRKDIR}/githome
(
export HOME=${WRKDIR}/githome
git config --global user.email "eclipse@freebsd.org"
git config --global user.name "Eclipse"
git init
git add .
git commit -q --message="java/eclipse" --author="Eclipse <eclipse@freebsd.org>"
)
fi
# Create dummy targets
GTK_EXE="rt.equinox.binaries/org.eclipse.equinox.executable/bin/gtk"
for A in ${ARCHS}
do
mkdir -p ${GTK_EXE}/freebsd/${A}
touch ${GTK_EXE}/freebsd/${A}/eclipse
done
arch=`uname -p`
if [ "$arch" == "powerpc64" ]
then
sed -i '' -e 's/ppc64le/ppc64/g' eclipse.platform.swt/bundles/org.eclipse.swt/'Eclipse SWT'/gtk/org/eclipse/swt/graphics/Device.java
sed -i '' -e 's/ppc64le/ppc64/g' eclipse.platform.swt/bundles/org.eclipse.swt/'Eclipse SWT'/gtk/org/eclipse/swt/widgets/Control.java
fi