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
|
ifndef dqk_dir
dqk_dir := $(dir $(lastword $(MAKEFILE_LIST)))
# Include dhmk file
include $(dqk_dir)dhmk.mk
# For performance reasons skip the rest in the override info mode. The slowdown
# is mostly caused by $(shell) functions (e.g. dpkg-parsechangelog).
ifneq ($(dhmk_override_info_mode),yes)
dqk_sourcepkg := $(shell dpkg-parsechangelog | sed -n '/^Source:/{ s/^Source:[[:space:]]*//; p; q }')
dqk_upstream_version ?= $(shell dpkg-parsechangelog | sed -n '/^Version:/{ s/^Version:[[:space:]]*\(.*\)-.*/\1/g; p; q }')
dqk_destdir = $(CURDIR)/debian/tmp
# We want to use kde and pkgkde-symbolshelper plugins by default
dh := --with=kde,pkgkde-symbolshelper $(dh)
# dqk_disable_policy_check lists distributions for which policy check should be
# disabled
dqk_disable_policy_check ?=
include $(dqk_dir)policy.mk
# Support list-missing target
include $(dqk_dir)list-missing.mk
# KDE packages are parallel safe. Add --parallel to dh_auto_% commands
$(call set_command_options,dh_auto_%, += --parallel)
# Link with --as-needed by default
# (subject to be moved to kde dh addon/debhelper buildsystem)
dqk_link_with_as_needed ?= yes
ifneq (,$(findstring yes, $(dqk_link_with_as_needed)))
dqk_link_with_as_needed := no
ifeq (,$(findstring no-as-needed, $(DEB_BUILD_OPTIONS)))
dqk_link_with_as_needed := yes
export LDFLAGS += -Wl,--as-needed
endif
endif
# Set the link_with_no_undefined=no in order to disable linking with
# --no-undefined (default value is inherited from $(dqk_link_with_as_needed))
dqk_link_with_no_undefined ?= $(dqk_link_with_as_needed)
ifneq (,$(findstring yes, $(dqk_link_with_no_undefined)))
dqk_link_with_no_undefined := no
ifeq (,$(findstring no-no-undefined, $(DEB_BUILD_OPTIONS)))
dqk_link_with_no_undefined := yes
export LDFLAGS += -Wl,--no-undefined
endif
endif
# Since cmake 2.6.2 or higher is required from now on, enable relative paths to
# get more ccache hits.
$(call set_command_options,dh_auto_configure, += "-u-DCMAKE_USE_RELATIVE_PATHS=ON")
# Run dh_sameversiondep
run_dh_sameversiondep:
dh_sameversiondep
$(foreach t,$(dhmk_binary_targets),pre_$(t)_dh_gencontrol): run_dh_sameversiondep
debian/stamp-man-pages:
if ! test -d debian/man/out; then mkdir -p debian/man/out; fi
for f in $$(find debian/man -name '*.sgml'); do \
docbook-to-man $$f > debian/man/out/`basename $$f .sgml`.1; \
done
for f in $$(find debian/man -name '*.man'); do \
soelim -I debian/man $$f \
> debian/man/out/`basename $$f .man`.`head -n1 $$f | awk '{print $$NF}'`; \
done
touch debian/stamp-man-pages
$(foreach t,build-arch build-indep build,post_$(t)_dh_auto_build): debian/stamp-man-pages
cleanup_manpages:
rm -rf debian/man/out
-rmdir debian/man
rm -f debian/stamp-man-pages
post_clean: cleanup_manpages
# Install files to $(dqk_sourcepkg)-doc-html package if needed
dqk_doc-html_dir = $(CURDIR)/debian/$(dqk_sourcepkg)-doc-html
install_to_doc-html_package:
set -e; \
if [ -d "$(dqk_doc-html_dir)" ]; then \
for doc in `cd $(dqk_destdir)/usr/share/doc/kde/HTML/en; find . -name index.docbook`; do \
pkg=$${doc%/index.docbook}; pkg=$${pkg#./}; \
echo Building $$pkg HTML docs...; \
mkdir -p $(dqk_doc-html_dir)/usr/share/doc/kde/HTML/en/$$pkg; \
cd $(dqk_doc-html_dir)/usr/share/doc/kde/HTML/en/$$pkg; \
meinproc4 $(dqk_destdir)/usr/share/doc/kde/HTML/en/$$pkg/index.docbook; \
done; \
for pkg in $(DOC_HTML_PRUNE) ; do \
rm -rf $(dqk_doc-html_dir)/usr/share/doc/kde/HTML/en/$$pkg; \
done; \
fi
$(foreach t,install-indep install,post_$(t)_dh_install): install_to_doc-html_package
.PHONY: run_dh_sameversiondep cleanup_manpages install_to_doc-html_package
endif # ifneq ($(dhmk_override_info_mode),yes)
endif # ifndef dqk_dir
|