ports/java/eclipse/scripts/pre-build
Norbert Grundmann 41b78eeb6c java/eclipse: Update 4.32 → 4.33
I took the fork of an eclipse member - who integrated my changes and
made more "investment" - thanks to him:
https://github.com/chirontt/eclipse.platform.releng.aggregator

- There are no addons or patches needed anymore.
- It compiles on my amd64 platform.
- The powerpc64 architectures are removed.

PR:	281794 281582
2024-10-02 16:42:48 +03:00

16 lines
345 B
Bash

#!/bin/sh
cd ${WRKSRC}
# 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