#! /usr/bin/make -f

# The options have been chosen as follows:
# - manually set pamlibdir because we're installing in /usr by default but
#   pam libs must go to /lib/*/security, same for udev rules
# - disable killing users processes by default. This is weird an unexpected
#   behaviour

CONFFLAGS = \
  -Ddocdir=/usr/share/doc/elogind \
  -Dman=enabled \
  -Dnss-elogind=false \
  -Duserdb=false \
  -Ddefault-kill-user-processes=false \
  -Dtests=true \
  -Dmode=release

CONFFLAGS_CGROUPCTRL_ELOGIND= \
  -Dcgroup-controller=elogind

override_dh_auto_configure:
	dh_auto_configure --builddirectory=build \
        -- $(CONFFLAGS) $(CONFFLAGS_CGROUPCTRL_ELOGIND)

override_dh_auto_install:
	dh_auto_install --builddirectory=build

	# We have no use for varlinkctl
execute_after_dh_auto_install:
	rm -f $(CURDIR)/debian/tmp/usr/bin/varlinkctl
	rm -f $(CURDIR)/debian/tmp/usr/share/zsh/site-functions/_varlinkctl
        # Uncompressed at this stage
	rm -f $(CURDIR)/debian/tmp/usr/share/man/man1/varlinkctl.1

override_dh_auto_clean:
	dh_auto_clean --builddirectory=build
	# remove Python byte code files
	rm -rf tools/__pycache__/

override_dh_makeshlibs:
	dh_makeshlibs -pelogind -Xlibelogind-shared
	dh_makeshlibs --remaining-packages

override_dh_shlibdeps:
	dh_shlibdeps -- -xlibeudev1

%:
	dh $@  --builddirectory=build --without autoreconf,systemd --buildsystem=meson
