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
|
#!/usr/bin/make -f
#export DH_VERBOSE=1
DEB_HOST_ARCH_OS ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_OS)
DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
# Use this variable to set the PackageKit configure flags
PK_CONFIGURE_FLAGS = --libexecdir=/usr/lib/packagekit \
--disable-static \
--disable-local \
--disable-silent-rules \
--disable-cron \
--enable-introspection \
--enable-aptcc \
--enable-gtk-module \
--enable-gstreamer-plugin
ifneq ($(DEB_HOST_ARCH_OS), linux)
PK_CONFIGURE_FLAGS += --disable-networkmanager \
--disable-connman \
--disable-systemd
endif
LDFLAGS += -Wl,--as-needed
# Define install target dir
INSTALLDIR = $(CURDIR)/debian/tmp
%:
dh $@ --parallel --with autoreconf --with systemd
extrainstallfiles-stamp:
grep -E -v 'lib/systemd|pk-offline-update|pk-trigger-offline-update|pk-clear-offline-update' debian/packagekit.install > debian/packagekit.install.kfreebsd
grep -E -v 'lib/systemd|pk-offline-update|pk-trigger-offline-update|pk-clear-offline-update' debian/packagekit.install > debian/packagekit.install.hurd
touch $@
override_dh_auto_configure:
cp -dpr $(CURDIR)/docs/api $(CURDIR)/docs/api.orig
dh_auto_configure -- $(PK_CONFIGURE_FLAGS)
# The testsuite needs some manual intervention and a special
# set-up, so we don't run it during build.
override_dh_auto_test:
override_dh_auto_install:
dh_auto_install --destdir=$(INSTALLDIR)
# We want the introduction pages
cp $(CURDIR)/docs/api.orig/html/introduction* $(INSTALLDIR)/usr/share/gtk-doc/html/PackageKit/
# These files do not need to be installed
rm -f $(INSTALLDIR)/usr/lib/$(DEB_HOST_MULTIARCH)/packagekit-backend/*.la
rm -f $(INSTALLDIR)/usr/lib/$(DEB_HOST_MULTIARCH)/gtk-?.0/modules/*.la
rm -f $(INSTALLDIR)/usr/lib/$(DEB_HOST_MULTIARCH)/*.la
rm -f $(INSTALLDIR)/usr/share/PackageKit/pk-upgrade-distro.sh
rm -f $(INSTALLDIR)/usr/bin/packagekit-bugreport.sh
rm -f $(INSTALLDIR)/var/lib/PackageKit/transactions.db
# Ubuntu-specific, broken
rm -f $(INSTALLDIR)/usr/share/PackageKit/helpers/aptcc/get-distro-upgrade.py
override_dh_install: extrainstallfiles-stamp
dh_install --list-missing
override_dh_makeshlibs:
dh_makeshlibs -Xlibpk-gtk-module -Xlibpk_
dh_girepository
override_dh_auto_clean:
dh_auto_clean
# Remove the autogenerated .install files for non-linux architectures
rm -f debian/packagekit.install.kfreebsd
rm -f debian/packagekit.install.hurd
# Restore documentation
if test -d $(CURDIR)/docs/api.orig; then \
rm -rf $(CURDIR)/docs/api; \
mv $(CURDIR)/docs/api.orig $(CURDIR)/docs/api; \
fi
override_dh_gencontrol:
dh_gencontrol -- $(SUBSTVARS)
override_dh_strip:
dh_strip --dbgsym-migration='packagekit-dbg (<< 1.1.1-1~)'
override_dh_autoreconf:
dh_autoreconf --as-needed
override_dh_systemd_enable:
# the offline-updates service is enabled by tools like GNOME-Software when they need it,
# but we do want to clear leftover symlinks upon removal of the package.
dh_systemd_enable --no-enable
override_dh_systemd_start:
dh_systemd_start --no-start
|