mirror of
https://github.com/void-linux/void-packages.git
synced 2025-06-07 23:53:51 +02:00
gdm: add gir/systemd build options (on by default).
This commit is contained in:
parent
8891370ec4
commit
c27703be0b
1 changed files with 33 additions and 6 deletions
|
@ -1,16 +1,16 @@
|
||||||
# Template file for 'gdm'
|
# Template file for 'gdm'
|
||||||
pkgname=gdm
|
pkgname=gdm
|
||||||
version=3.12.2
|
version=3.12.2
|
||||||
revision=1
|
revision=2
|
||||||
build_style=gnu-configure
|
build_style=gnu-configure
|
||||||
configure_args="--disable-schemas-compile --disable-static
|
configure_args="--disable-schemas-compile --disable-static
|
||||||
--with-at-spi-registryd-directory=/usr/libexec --without-tcp-wrappers
|
--with-at-spi-registryd-directory=/usr/libexec --without-tcp-wrappers
|
||||||
--with-systemd --with-screenshot-dir=/var/lib/gdm/greeter
|
--with-screenshot-dir=/var/lib/gdm/greeter
|
||||||
--with-xauth-dir=/run/gdm --with-pid-file=/run/gdm/gdm.pid
|
--with-xauth-dir=/run/gdm --with-pid-file=/run/gdm/gdm.pid
|
||||||
--with-systemdsystemunitdir=/usr/lib/systemd/system --without-console-kit"
|
--with-systemdsystemunitdir=/usr/lib/systemd/system"
|
||||||
hostmakedepends="pkg-config itstool intltool which gnome-doc-utils gobject-introspection"
|
hostmakedepends="pkg-config itstool intltool which gnome-doc-utils"
|
||||||
makedepends="pam-devel nss-devel accountsservice-devel gtk+3-devel>=3.10 upower-devel
|
makedepends="pam-devel nss-devel accountsservice-devel gtk+3-devel>=3.10 upower-devel
|
||||||
libcanberra-devel systemd-devel xrdb dconf>=0.20 hicolor-icon-theme
|
libcanberra-devel xrdb dconf>=0.20 hicolor-icon-theme
|
||||||
xorg-server gnome-session>=3.12 gnome-settings-daemon>=3.12"
|
xorg-server gnome-session>=3.12 gnome-settings-daemon>=3.12"
|
||||||
conf_files="
|
conf_files="
|
||||||
/etc/gdm/custom.conf
|
/etc/gdm/custom.conf
|
||||||
|
@ -33,6 +33,31 @@ license="GPL-2"
|
||||||
distfiles="${GNOME_SITE}/$pkgname/${version%.*}/$pkgname-$version.tar.xz"
|
distfiles="${GNOME_SITE}/$pkgname/${version%.*}/$pkgname-$version.tar.xz"
|
||||||
checksum=cc91fff5afd2a7c3e712c960a0b60744774167dcfc16f486372e1eb3c0aa1cc4
|
checksum=cc91fff5afd2a7c3e712c960a0b60744774167dcfc16f486372e1eb3c0aa1cc4
|
||||||
|
|
||||||
|
# Package build options
|
||||||
|
build_options="gir systemd"
|
||||||
|
desc_option_gir="Enable support for building gobject introspection data"
|
||||||
|
desc_option_systemd="Enable support for systemd"
|
||||||
|
|
||||||
|
build_options_default="systemd"
|
||||||
|
# Disable gir for cross builds.
|
||||||
|
if [ -z "$CROSS_BUILD" ]; then
|
||||||
|
build_options_default+=" gir"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ "$build_option_gir" ]; then
|
||||||
|
configure_args+=" --enable-introspection"
|
||||||
|
makedepends+=" gobject-introspection"
|
||||||
|
else
|
||||||
|
configure_args+=" --disable-introspection"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ "$build_option_systemd" ]; then
|
||||||
|
configure_args+=" --enable-systemd --with-initial-vt=1"
|
||||||
|
makedepends+=" systemd-devel"
|
||||||
|
else
|
||||||
|
configure_args+=" --disable-systemd --with-initial-vt=7"
|
||||||
|
fi
|
||||||
|
|
||||||
post_install() {
|
post_install() {
|
||||||
# Use our own pam files.
|
# Use our own pam files.
|
||||||
rm -f ${DESTDIR}/etc/pam.d/*
|
rm -f ${DESTDIR}/etc/pam.d/*
|
||||||
|
@ -57,7 +82,9 @@ gdm-devel_package() {
|
||||||
pkg_install() {
|
pkg_install() {
|
||||||
vmove usr/include
|
vmove usr/include
|
||||||
vmove usr/lib/pkgconfig
|
vmove usr/lib/pkgconfig
|
||||||
|
if [ "$build_option_gir" ]; then
|
||||||
vmove usr/share/gir-1.0
|
vmove usr/share/gir-1.0
|
||||||
|
fi
|
||||||
vmove "usr/lib/*.so"
|
vmove "usr/lib/*.so"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue