1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
#!/usr/bin/make -f
include /usr/share/dpkg/default.mk
%:
dh $@
# this should track the definition of USERCOMPILE in mk/userland-cflags.mk:43
# but without -fstack-protector-all for arches that lack stack-protector
ifneq (,$(filter $(DEB_HOST_ARCH), hppa alpha))
export USERCOMPILE = -fexceptions -fno-strict-aliasing -fPIE -DPIE
endif
ifeq ($(DEB_HOST_ARCH_OS),linux)
ENABLE_SELINUX = USE_LABELED_IPSEC=true USE_LINUX_AUDIT=true
ENABLE_LIBCAP_NG = USE_LIBCAP_NG=true
else
ENABLE_SELINUX = USE_LABELED_IPSEC=false USE_LINUX_AUDIT=false
ENABLE_LIBCAP_NG = USE_LIBCAP_NG=false
endif
override_dh_auto_build:
dh_auto_build -- programs \
ARCH=$(DEB_HOST_ARCH) \
IPSECVERSION=$(DEB_VERSION_UPSTREAM_REVISION) \
PREFIX=/usr \
LIBEXECDIR=/usr/libexec/ipsec \
NSSDIR=/var/lib/ipsec/nss \
USE_LDAP=true \
$(ENABLE_LIBCAP_NG) \
$(ENABLE_SELINUX)
override_dh_auto_install-arch:
# Add here commands to install the package into debian/libreswan
$(MAKE) install \
ARCH=$(DEB_HOST_ARCH) \
IPSECVERSION=$(DEB_VERSION_UPSTREAM_REVISION) \
PREFIX=/usr \
LIBEXECDIR=/usr/libexec/ipsec \
NSSDIR=/var/lib/ipsec/nss \
USE_LDAP=true \
$(ENABLE_LIBCAP_NG) \
$(ENABLE_SELINUX) \
DESTDIR=$(CURDIR)/debian/libreswan
override_dh_auto_test:
echo "Skip dh_auto_test"
override_dh_strip:
dh_strip --dbg-package=libreswan-dbg
|