#!/usr/bin/make -f # Originally made with the aid of dh_make, by Craig Small # Sample debian/rules that uses debhelper. GNU copyright 1997 by Joey Hess. # Some lines taken from debmake, by Cristoph Lameter. # Rewritten to use dh, by Balint Reczey # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 # Catch symbol additions. export DPKG_GENSYMBOLS_CHECK_LEVEL=4 distrelease := $(shell lsb_release -cs) ifeq ($(distrelease),n/a) distrelease := sid endif # This has to be exported to make some magic below work. export DH_OPTIONS export DEB_BUILD_MAINT_OPTIONS = hardening=+all %: dh $@ --with python3 --buildsystem cmake --with quilt --parallel override_dh_auto_configure: dh_auto_configure -- -DBUILD_xxx2deb=ON override_dh_auto_build: # Ignore warnings from asn2wrs.py about duplicate field names. PYTHONWARNINGS='ignore:The same:UserWarning::0' \ $(MAKE) -C $(CURDIR)/obj-* asn1 dh_auto_build $(MAKE) -C $(CURDIR)/obj-* user_guide_html developer_guide_html # fix links in documentation sed -i "s|$(CURDIR)/docbook|..|" obj-*/docbook/ws*g_html_chunked/*.html ifneq ($(filter $(DEB_BUILD_OPTIONS),nocheck),) # Required for the "unittests" suite. $(MAKE) -C $(CURDIR)/obj-* test-programs endif override_dh_strip: dh_strip --dbg-package=wireshark-dbg override_dh_auto_install: dh_auto_install rm -f debian/*.shlibs rm -rf $(CURDIR)/debian/tmp/usr/share/wireshark/COPYING cp debian/license-text-about-dialog $(CURDIR)/debian/tmp/usr/share/wireshark/ABOUT.GPL mkdir -p $(CURDIR)/debian/tmp/etc/wireshark/ mv $(CURDIR)/debian/tmp/usr/share/wireshark/init.lua \ $(CURDIR)/debian/tmp/etc/wireshark/ ln -s /etc/wireshark/init.lua \ $(CURDIR)/debian/tmp/usr/share/wireshark/init.lua override_dh_install: dh_install # check all necessary headers are included $(CC) -c debian/headers-check.c $(shell pkg-config --cflags glib-2.0) $(shell dpkg-buildflags --get CPPFLAGS) $(shell dpkg-buildflags --get CFLAGS) -Idebian/libwireshark-dev/usr/include -Idebian/libwireshark-dev/usr/include/wireshark -Idebian/libwiretap-dev/usr/include/wireshark -Idebian/libwsutil-dev/usr/include/wireshark -o /dev/null override_dh_fixperms: dh_fixperms chmod 644 debian/wireshark-dev/usr/share/pyshared/make-plugin-reg.py \ debian/wireshark-dev/usr/share/pyshared/wireshark_be.py \ debian/wireshark-dev/usr/share/pyshared/wireshark_gen.py # Adapted from https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=861988 override_dh_auto_test: ifneq ($(filter $(DEB_BUILD_OPTIONS),nocheck),) # XXX Add -- --verbose? dh_auto_test else @echo '"DEB_BUILD_OPTIONS" has "nocheck". Skipping tests' endif