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 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300
|
#!/usr/bin/make -f
# Copyright © 2002,2003 Colin Walters <walters@verbum.org>
# Copyright © 2003 Daniel Stone <daniels@debian.org>
# Copyright © 2006 Sjoerd Simons <sjoerd@debian.org>
# Copyright © 2011 Michael Biebl <biebl@debian.org>
export DEB_BUILD_MAINT_OPTIONS = hardening=+pie,+bindnow
include /usr/share/dpkg/default.mk
%:
dh $@ $(dh_options)
libdbusN := $(shell sed -rn 's/Package:[[:space:]]*(libdbus-[0-9-]+)[[:space:]]*$$/\1/p' debian/control | head -n 1)
libdbus_soname := $(patsubst libdbus-1-%,libdbus-1.so.%,$(libdbusN))
debug_build_prefix := /usr/lib/dbus-1.0/debug-build
binaries := $(shell dh_listpackages)
export DEB_LDFLAGS_MAINT_APPEND = -Wl,--gc-sections
dh_options = \
--builddirectory=debian/build-main \
--with xml-core \
$(NULL)
common_configure_flags := \
--enable-traditional-activation \
--libexecdir=\$${prefix}/lib/dbus-1.0 \
--with-system-socket=/run/dbus/system_bus_socket \
$(NULL)
normal_configure_flags := \
--libdir=/usr/lib/$(DEB_HOST_MULTIARCH) \
$(NULL)
ifeq ($(DEB_HOST_ARCH_OS),linux)
# Non-bootstrap build on Linux: add Linux-specifics
common_configure_flags += \
--enable-apparmor \
--enable-libaudit \
--enable-selinux \
--enable-systemd \
--with-systemdsystemunitdir=/lib/systemd/system \
--with-session-socket-dir=/tmp \
--with-test-socket-dir=/tmp \
SYSTEMCTL=/bin/systemctl \
$(NULL)
normal_configure_flags += \
--enable-user-session \
--with-systemduserunitdir='$${prefix}/lib/systemd/user' \
$(NULL)
endif
debug_configure_flags := \
--disable-xml-docs \
--disable-doxygen-docs \
--disable-ducktype-docs \
--enable-asserts \
--enable-checks \
--enable-verbose-mode \
--with-valgrind=auto \
--bindir='${debug_build_prefix}/bin' \
--libdir='${debug_build_prefix}/lib' \
--libexecdir='${debug_build_prefix}/libexec' \
$(NULL)
udeb_configure_flags := \
$(normal_configure_flags) \
--disable-apparmor \
--disable-asserts \
--disable-checks \
--disable-doxygen-docs \
--disable-ducktype-docs \
--disable-libaudit \
--disable-selinux \
--disable-stats \
--disable-systemd \
--disable-installed-tests \
--disable-user-session \
--disable-verbose-mode \
--disable-xml-docs \
CFLAGS='$(CFLAGS) -Os' \
$(NULL)
ifneq ($(filter dbus-tests,$(binaries)),)
common_configure_flags += --enable-installed-tests
else
common_configure_flags += --disable-installed-tests
endif
# Some features are needed whenever we have build-time *or* installed tests
ifneq ($(filter nocheck,$(DEB_BUILD_OPTIONS))$(filter dbus-tests,$(binaries)),nocheck)
common_configure_flags += PYTHON=/usr/bin/python3
debug_configure_flags += --enable-embedded-tests
endif
ifeq ($(filter nodoc,$(DEB_BUILD_PROFILES)),)
normal_configure_flags += --enable-xml-docs
else
normal_configure_flags += --disable-xml-docs
endif
ifneq ($(filter dbus-1-doc,$(binaries)),)
normal_configure_flags += --enable-doxygen-docs
normal_configure_flags += --enable-ducktype-docs
else
normal_configure_flags += --disable-doxygen-docs
normal_configure_flags += --disable-ducktype-docs
endif
override_dh_auto_configure:
dh_auto_configure \
-- \
$(common_configure_flags) \
$(normal_configure_flags) \
$(NULL)
ifneq ($(filter dbus-tests,$(binaries)),)
dh_auto_configure \
--builddirectory=debian/build-debug \
-- \
$(common_configure_flags) \
$(debug_configure_flags) \
$(NULL)
endif
ifneq ($(filter dbus-udeb,$(binaries)),)
dh_auto_configure \
--builddirectory=debian/build-udeb \
-- \
$(common_configure_flags) \
$(udeb_configure_flags) \
$(NULL)
endif
override_dh_auto_build:
dh_auto_build
ifneq ($(filter dbus-tests,$(binaries)),)
dh_auto_build --builddirectory=debian/build-debug
endif
ifneq ($(filter dbus-udeb,$(binaries)),)
dh_auto_build --builddirectory=debian/build-udeb
endif
handle-test-failure:
@find debian/build-* -name '*.log' \
-not -name config.log \
-not -name test-suite.log \
-print0 | xargs -0 tail -v -c1M
ifeq ($(DEB_HOST_ARCH_OS),linux)
@echo "Build-time tests failed, please debug"
@false
else
@echo "Ignoring build-time test failure on non-Linux for now"
endif
test_env = \
-u DISPLAY \
DBUS_TEST_HOMEDIR=$${HOME} \
DBUS_TEST_MALLOC_FAILURES=0 \
LD_PRELOAD=libnss_wrapper.so \
NSS_WRAPPER_HOSTS=$(CURDIR)/debian/hosts \
$(NULL)
override_dh_auto_test-arch:
ifeq ($(filter nocheck,$(DEB_BUILD_OPTIONS)),)
install -d $(CURDIR)/debian/tmp-home
env $(test_env) \
dh_auto_test -- -k \
|| make -f debian/rules handle-test-failure
ifneq ($(filter dbus-tests,$(binaries)),)
env $(test_env) \
dh_auto_test --builddirectory=debian/build-debug --no-parallel -- -k \
|| make -f debian/rules handle-test-failure
endif
ifneq ($(filter dbus-udeb,$(binaries)),)
env $(test_env) \
dh_auto_test --builddirectory=debian/build-udeb -- -k \
|| make -f debian/rules handle-test-failure
endif
@find debian/build-* -name '*.log' \
-not -name config.log \
-not -name test-suite.log \
-print0 | xargs -0 tail -v -c1M
endif
override_dh_auto_test-indep:
:
override_dh_auto_install:
ifneq ($(filter dbus-udeb,$(binaries)),)
# udeb build
make -C debian/build-udeb install-exec DESTDIR=$(CURDIR)/debian/tmp-udeb
cd $(CURDIR)/debian/tmp-udeb && find | LC_ALL=C sort
endif
ifneq ($(filter dbus-tests,$(binaries)),)
# debug build
make -C debian/build-debug install DESTDIR=$(CURDIR)/debian/tmp
rm -rfv debian/tmp/etc
rm -rfv debian/tmp/lib/systemd
rm -rfv debian/tmp/usr/include
rm -rfv debian/tmp/usr/lib/systemd
rm -rfv debian/tmp/usr/lib/sysusers.d
rm -rfv debian/tmp/usr/share/dbus-1
rm -rfv debian/tmp/usr/share/doc
rm -rfv debian/tmp/usr/share/man
rm -rfv debian/tmp/usr/share/xml
mv debian/tmp/usr/share/installed-tests/dbus \
debian/tmp/usr/share/installed-tests/dbus-debug-build
sed -i -e \
"s,^Exec=,Exec=sh -c 'export PATH=/usr/lib/dbus-1.0/debug-build/bin:\$$PATH; exec \"\$$@\"' sh ," \
debian/tmp/usr/share/installed-tests/dbus-debug-build/*.test
rm -f debian/tmp/${debug_build_prefix}/lib/libdbus-1.la
rm -f debian/tmp/${debug_build_prefix}/libexec/installed-tests/dbus/data/sha-1/Readme.txt
cd $(CURDIR)/debian/tmp && find | LC_ALL=C sort
endif
# normal build (do this last so that it overwrites the others)
dh_auto_install
rm -f debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH)/libdbus-1.la
rm -f debian/tmp/usr/lib/dbus-1.0/installed-tests/dbus/data/sha-1/Readme.txt
ifeq ($(filter nodoc pkg.dbus.minimal,$(DEB_BUILD_PROFILES)),)
# Reproducible build: sed out the generated dates from the man pages.
sed -i \
-e '/^\.\\\" *Date: .*/d' \
-e 's/^\(.TH "[^"]*" "[^"]*" \)"[^"]*"/\1""/' \
debian/tmp/usr/share/man/man?/*
endif
ifeq ($(filter dbus-tests,$(binaries)),)
# noinsttest builds dbus-test-tool but not dbus-tests
rm -f debian/tmp/usr/bin/dbus-test-tool
endif
ifeq ($(filter dbus-1-doc,$(binaries)),)
# nodoc builds still install a bit of documentation
rm -fr debian/tmp/usr/share/doc/dbus
endif
# Remove the legacy bus configuration files. We move their old
# versions out of the way, include the moved names in the new
# bus setup instead of the old names, and replace the old names
# with a symlink to the new bus setup so that old dbus-daemons
# can still reload their configuration.
rm -f debian/tmp/etc/dbus-1/session.conf
rm -f debian/tmp/etc/dbus-1/system.conf
# Fix up the development symlink for us installing the shared library
# in /lib
target=$$(readlink "debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH)/libdbus-1.so"); \
target=$$(basename "$$target"); \
ln -fns /lib/$(DEB_HOST_MULTIARCH)/$$target debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH)/libdbus-1.so
ifeq ($(DEB_DISTRIBUTION),UNRELEASED)
# We can't expect the install files to be fully up to date for a snapshot.
dh_missing_options += --list-missing
else
dh_missing_options += --fail-missing
endif
override_dh_missing:
dh_missing $(dh_missing_options)
# Yes, we do need both --no- options here. https://bugs.debian.org/837528
override_dh_installinit:
dh_installinit -pdbus --no-stop-on-upgrade --no-restart-after-upgrade
override_dh_installsystemd:
dh_installsystemd -pdbus --no-stop-on-upgrade --no-restart-after-upgrade
override_dh_installdocs:
dh_installdocs --all AUTHORS NEWS README
debian/$(libdbusN).symbols: debian/$(libdbusN).symbols.in
sed -e 's/$${DEB_VERSION}/${DEB_VERSION}/g' \
< $< > $@
ifeq ($(DEB_DISTRIBUTION),UNRELEASED)
# We can't expect the symbols file to be fully up to date for a snapshot,
# so only fail if we broke ABI. This overrides the -c4 below.
export DPKG_GENSYMBOLS_CHECK_LEVEL = 1
endif
override_dh_makeshlibs: debian/$(libdbusN).symbols
dh_makeshlibs -Ndbus-tests -V --add-udeb=$(libdbusN)-udeb -- -c4
override_dh_autoreconf:
cp INSTALL INSTALL.orig
dh_autoreconf
mv INSTALL.orig INSTALL
override_dh_autoreconf_clean:
cp INSTALL INSTALL.orig
dh_autoreconf_clean
mv INSTALL.orig INSTALL
override_dh_auto_clean:
dh_auto_clean
dh_auto_clean --builddirectory=debian/build-debug
dh_auto_clean --builddirectory=debian/build-udeb
rm -f debian/build-*/test/data/valid-config-files/session.conf
rm -f debian/build-*/test/data/valid-config-files/system.conf
rm -f dbus.devhelp
clean:
rm -rf debian/tmp-home
rm -rf debian/tmp-udeb
dh $@ $(dh_options)
|