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 51 52 53 54 55 56 57
|
#! /usr/bin/make -f
include /usr/share/dpkg/architecture.mk
ifneq (,$(filter $(DEB_HOST_ARCH_OS),hurd))
DEB_CPPFLAGS_MAINT_APPEND = -DPATH_MAX=4096
override_dh_auto_test:
: tests fail on Hurd due to a kyua crash
-dh_auto_test || cat debian/.debhelper/generated/_source/home/.kyua/logs/kyua.*.log
endif
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
DPKG_EXPORT_BUILDFLAGS = 1
include /usr/share/dpkg/buildflags.mk
ifneq ($(DEB_BUILD_GNU_TYPE),$(DEB_HOST_GNU_TYPE))
SET_PKG_CONFIG = PKG_CONFIG=$(DEB_HOST_GNU_TYPE)-pkg-config
GCC = $(DEB_HOST_GNU_TYPE)-gcc
else
GCC = gcc
endif
SYSTEM_LIBDIRS := $(shell sh debian/system-libdirs.sh $(GCC))
%:
dh $@
override_dh_auto_configure:
ifneq "$(wildcard /usr/share/misc/config.sub)" ""
cp -f /usr/share/misc/config.sub config.sub
endif
ifneq "$(wildcard /usr/share/misc/config.guess)" ""
cp -f /usr/share/misc/config.guess config.guess
endif
$(SET_PKG_CONFIG) dh_auto_configure -- --prefix=/usr \
--mandir=\$${prefix}/share/man \
--infodir=\$${prefix}/share/info \
--with-pkg-config-dir=/usr/local/lib/$(DEB_HOST_MULTIARCH)/pkgconfig:/usr/local/lib/pkgconfig:/usr/local/share/pkgconfig:/usr/lib/$(DEB_HOST_MULTIARCH)/pkgconfig:/usr/lib/pkgconfig:/usr/share/pkgconfig \
--with-system-libdir=$(SYSTEM_LIBDIRS)
override_dh_auto_install:
dh_auto_install
rm debian/tmp/usr/lib/*/*.la
sed \
-e "s^@GNU_TYPE@^$(DEB_HOST_GNU_TYPE)^g" \
-e "s^@MULTIARCH@^$(DEB_HOST_MULTIARCH)^g" \
-e "s^@SYSTEM_LIBDIRS@^$(SYSTEM_LIBDIRS)^g" \
debian/personality.in > debian/pkgconf/usr/share/pkgconfig/personality.d/$(DEB_HOST_GNU_TYPE).personality
ifneq ($(DEB_HOST_MULTIARCH),$(DEB_HOST_GNU_TYPE))
ln -s ${DEB_HOST_GNU_TYPE}.personality debian/pkgconf/usr/share/pkgconfig/personality.d/${DEB_HOST_MULTIARCH}.personality
endif
override_dh_installchangelogs:
dh_installchangelogs NEWS
.PHONY: override_dh_auto_configure override_dh_auto_install
|