```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
```
30 lines
927 B
Bash
30 lines
927 B
Bash
# Template file for 'xf86-video-fbturbo-sunxi'
|
|
pkgname=xf86-video-fbturbo-sunxi
|
|
version=0.4.0
|
|
revision=5
|
|
wrksrc="${pkgname%-sunxi}-${version}"
|
|
build_style=gnu-configure
|
|
hostmakedepends="pkg-config xorg-server-devel"
|
|
makedepends="libXrandr-devel libump-git-devel xorg-server-devel xorg-util-macros"
|
|
depends="virtual?xserver-abi-video-24_1 sunxi-mali"
|
|
short_desc="Xorg DDX driver for Allwinner SoC (A10/A13/A20)"
|
|
license="MIT, GPL-2.0-or-later"
|
|
maintainer="Orphaned <orphan@voidlinux.org>"
|
|
homepage="http://github.com/ssvb/xf86-video-fbturbo"
|
|
distfiles="https://github.com/ssvb/xf86-video-fbturbo/archive/${version}.tar.gz"
|
|
checksum=10411686de0a9d8b2cde300b0d68e9f1d22e3611470d357ef3afc337f123ca0f
|
|
|
|
archs="armv7l"
|
|
conflicts="xf86-video-fbturbo>=0"
|
|
|
|
LDFLAGS="-Wl,-z,lazy"
|
|
|
|
pre_configure() {
|
|
cp /usr/include/xorg/dri2.h src
|
|
}
|
|
|
|
post_install() {
|
|
vinstall xorg.conf 644 usr/share/X11/xorg.conf.d 99-fbturbo.conf
|
|
vlicense COPYING
|
|
}
|