void-packages/srcpkgs/polkit/template
Đoàn Trần Công Danh a92d370caa srcpkgs: add patch_args=-Np0 en-mass
Generated with:

	git ls-files 'srcpkgs/**/patches/*' |
	cut -d/ -f2 | uniq |
	xargs printf 'srcpkgs/%s/template\n'  |
	xargs grep -L 'patch_args=' |
	xargs sed -i "$(printf '1,/^$/{/^$/i\\\npatch_args=-Np0\n}\n')"
2021-06-20 13:17:29 +07:00

59 lines
1.7 KiB
Bash

# Template file for 'polkit'
pkgname=polkit
version=0.118
revision=2
build_style=gnu-configure
build_helper=gir
configure_args="$(vopt_enable gir introspection) -disable-static
--with-authfw=pam --with-os-type=void"
make_dirs="
/etc/polkit-1/rules.d 0700 polkitd polkitd
/usr/share/polkit-1/rules.d 0700 polkitd polkitd"
hostmakedepends="autoconf-archive automake gettext-devel glib-devel
gobject-introspection gtk-doc intltool libtool pkg-config"
makedepends="elogind-devel mozjs78-devel pam-devel"
checkdepends="python3-dbus python3-dbusmock"
short_desc="Authorization Toolkit"
maintainer="Enno Boland <gottox@voidlinux.org>"
license="GPL-2.0-or-later"
homepage="https://www.freedesktop.org/wiki/Software/polkit"
distfiles="${FREEDESKTOP_SITE}/${pkgname}/releases/${pkgname}-${version}.tar.gz"
checksum=6d54e984e7072339f0d3147179e16e34e5fe0705158f259a765d772dcf78956b
system_accounts="polkitd"
#replaces="polkit-elogind>=0"
#provides="polkit-elogind-${version}_${revision}"
patch_args=-Np0
# Package build options
build_options="gir"
build_options_default="gir"
pre_configure() {
autoreconf -fi
# Drop requirement of /sys/fs/cgroup/systemd test in configure... WTF.
vsed -e 's,/sys/fs/cgroup/systemd/,/sys/fs/cgroup,g' -i configure
}
post_install() {
vinstall ${FILESDIR}/polkit-1.pam 644 etc/pam.d polkit-1
vsv polkitd
}
polkit-devel_package() {
depends="libglib-devel polkit>=${version}_${revision}"
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove usr/lib/pkgconfig
if [ "$build_option_gir" ]; then
vmove "usr/share/gir-*"
fi
vmove "usr/lib/*.so"
}
}
polkit-elogind_package() {
depends="polkit>=${version}_${revision}"
build_style=meta
short_desc+=" (transitional dummy package)"
}