be5369a0cb
* fpc is kept at -Np0 ```sh git grep -l '^patch_args=-Np0' "srcpkgs/$1*/template" | while read template; do for p in ${template%/template}/patches/*; do sed -i ' \,^[+-][+-][+-] /dev/null,b /^[*-]\+ [0-9]\+\(,[0-9]\+\)\? [*-]\+$/b s,^[*][*][*] ,&a/, /^--- /{ s,\(^--- \)\(./\)*,\1a/, s,[.][Oo][Rr][Ii][Gg]\([ /]\),\1, s/[.][Oo][Rr][Ii][Gg]$// s/[.]patched[.]\([^.]\)/.\1/ h } /^+++ -/{ g s/^--- a/+++ b/ b } s,\(^+++ \)\(./\)*,\1b/, ' "$p" done sed -i '/^patch_args=/d' $template done ```
40 lines
1.3 KiB
Bash
40 lines
1.3 KiB
Bash
# Template file for 'freeplane'
|
|
pkgname=freeplane
|
|
version=1.8.11
|
|
revision=1
|
|
hostmakedepends="apache-ant openjdk8 unzip gradle"
|
|
depends="virtual?java-runtime"
|
|
short_desc="Application for Mind Mapping, Knowledge Management, Project Management"
|
|
maintainer="Andrea Brancaleoni <abc@pompel.me>"
|
|
license="GPL-2.0-or-later"
|
|
homepage="http://freeplane.sourceforge.net/"
|
|
distfiles="$SOURCEFORGE_SITE/$pkgname/$pkgname%20stable/${pkgname}_src-$version.tar.gz"
|
|
checksum=7cb3abeda6a073262b63603852d3f3fe2cdb34e917435e9648209efa9c3b1e21
|
|
|
|
make_dirs="
|
|
/usr/share/freeplane/fwdir/condperm/ 755 root root
|
|
/usr/share/freeplane/fwdir/perms/ 755 root root"
|
|
|
|
case "$XBPS_MACHINE" in
|
|
ppc64*) ;;
|
|
ppc*|arm*|mips*) broken="No JVM JIT, goes on for hours";;
|
|
esac
|
|
|
|
do_build() {
|
|
. /etc/profile.d/apache-ant.sh
|
|
. /etc/profile.d/10_openjdk8.sh
|
|
|
|
gradle format_translation binZip -x test
|
|
}
|
|
|
|
do_install() {
|
|
unzip DIST/freeplane_bin-$version.zip -d install
|
|
find install -type f -name \*.exe -delete
|
|
vmkdir usr/share/$pkgname
|
|
mv install/$pkgname-$version/* $DESTDIR/usr/share/$pkgname
|
|
vmkdir usr/bin
|
|
ln -s /usr/share/freeplane/freeplane.sh $DESTDIR/usr/bin/$pkgname
|
|
vmkdir usr/share/pixmaps
|
|
ln -s /usr/share/freeplane/freeplane.svg $DESTDIR/usr/share/pixmaps/freeplane.svg
|
|
vinstall $FILESDIR/freeplane.desktop 644 usr/share/applications
|
|
}
|