mirror of
https://git.freebsd.org/ports.git
synced 2025-04-28 17:46:38 -04:00
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
16 lines
345 B
Bash
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
|