#!/usr/bin/make -f
# See debhelper(7) (uncomment to enable)
# output every command that modifies files on the build system.
#export DH_VERBOSE = 1

# Security Hardening
export DEB_BUILD_MAINT_OPTIONS = hardening=+all

%:
	dh $@

override_dh_auto_configure:
	# sed command below is to build against the static flex library
	# to avoid picking an extra dependency on libfl2 (#893988)
	for dir in build build-udeb; do \
		rsync -a --exclude debian/ --exclude .pc/ --exclude .git/ . $$dir; \
		[ $$dir = "build-udeb" ] && \
		sed "s,^CLIENTLIBS=.*,CLIENTLIBS=$$(find /usr/lib/$$(dpkg-architecture -qDEB_BUILD_MULTIARCH) -name libfl.a)," \
			-i $$dir/Makefile.in; \
		cd $$dir && \
		./configure --prefix=/usr --mandir=\$${prefix}/share/man \
			--with-localdbdir=/var/lib/dhcpv6 --sysconfdir=/etc/wide-dhcpv6 && \
		cd -; \
	done

override_dh_auto_build:
	$(MAKE) -C build
	$(MAKE) -C build-udeb

override_dh_auto_install:
	$(MAKE) -C build prefix=$(CURDIR)/debian/tmp/usr install
	$(MAKE) -C build-udeb prefix=$(CURDIR)/debian/tmp-udeb/usr install

override_dh_installinit:
	dh_installinit --error-handler=true --restart-after-upgrade

override_dh_fixperms:
	dh_fixperms
	chmod +x debian/wide-dhcpv6-client/etc/wide-dhcpv6/dhcp6c-*

override_dh_auto_clean:
	dh_auto_clean
	rm -rf build build-udeb debian/tmp-udeb
