void-packages/srcpkgs/qtikz/template
Đoàn Trần Công Danh 635e9da391 srcpkgs/q*: convert patches to -Np1
* par 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
```
2021-06-20 13:17:29 +07:00

20 lines
682 B
Bash

# Template file for 'qtikz'
pkgname=qtikz
version=0.13.1
revision=1
wrksrc=ktikz-${version}
build_style=qmake
hostmakedepends="qt5-qmake pkg-config qt5-plugin-sqlite qt5-host-tools
qt5-tools"
makedepends="poppler-qt5-devel qt5-devel"
short_desc="Editor for graphics set in TikZ"
maintainer="Piraty <piraty1@inbox.ru>"
license="GPL-2.0-or-later"
homepage="http://www.hackenberger.at/blog/ktikz-editor-for-the-tikz-language/"
distfiles="https://github.com/fhackenberger/ktikz/archive/${version}.tar.gz"
checksum=03f6ee335ca1abb23216870a6df71406ab44a4899875d4695b8594cfb789a127
post_patch() {
vsed -e '/include.*QPainter/a #include <QtGui/QPainterPath>' \
-i app/tikzeditor.cpp
}