void-packages/srcpkgs/enlightenment/template
Đoàn Trần Công Danh a03d116397 srcpkgs/e*: convert patches to -Np1
```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

48 lines
1.8 KiB
Bash

# Template file for 'enlightenment'
pkgname=enlightenment
version=0.24.2
revision=1
build_style=meson
configure_args="--sysconfdir=/etc -Dpam=true -Dbluez4=false -Dsystemd=false
$(vopt_bool wayland wl)"
hostmakedepends="efl pkg-config gettext $(vopt_if wayland xorg-server-xwayland)"
makedepends="gettext-devel efl-devel pam-devel xkeyboard-config
$(vopt_if wayland 'libxkbcommon-devel MesaLib-devel wayland-devel')"
depends="desktop-file-utils hicolor-icon-theme xkeyboard-config
$(vopt_if wayland xorg-server-xwayland)"
conf_files="/etc/enlightenment/sysactions.conf"
short_desc="Enlightenment desktop shell"
maintainer="q66 <daniel@octaforge.org>"
license="BSD-2-Clause"
homepage="http://enlightenment.org"
distfiles="http://download.enlightenment.org/rel/apps/${pkgname}/${pkgname}-${version}.tar.xz"
checksum=be18e2f18d6c0b058f633e769863d3cbc4c07b629058ae670dec74cd7906dff1
lib32disabled=yes
build_options="wayland"
build_options_default="wayland"
if [ "$CROSS_BUILD" -a "$build_option_wayland" ]; then
hostmakedepends+=" wayland-devel"
fi
post_install() {
# Use our native tools to shutdown/suspend.
sed -i 's/^action:.*halt.*/action: halt shutdown -h now/g' ${DESTDIR}/etc/${pkgname}/sysactions.conf
sed -i 's/^action:.*reboot.*/action: reboot shutdown -r now/g' ${DESTDIR}/etc/${pkgname}/sysactions.conf
sed -i 's/^action:.*suspend.*/action: suspend zzz/g' ${DESTDIR}/etc/${pkgname}/sysactions.conf
sed -i 's/^action:.*hibernate.*/action: hibernate ZZZ/g' ${DESTDIR}/etc/${pkgname}/sysactions.conf
vlicense COPYING
vinstall ${FILESDIR}/e-applications.menu 644 etc/xdg/menus
rm -rf ${DESTDIR}/usr/share/${pkgname}/doc
}
enlightenment-devel_package() {
depends="efl-devel"
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove usr/lib/pkgconfig
}
}