blob: fb29d881c6513cef673a36790ea00811a63a93c5 (
plain)
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
|
#! /usr/bin/make -f
%:
dh $@ --builddirectory=debian/build --with=autoreconf,systemd --parallel
DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
dtmp = debian/man-db
export DEB_BUILD_MAINT_OPTIONS := hardening=+all
# Use DT_RUNPATH rather than DT_RPATH, so that LD_LIBRARY_PATH works properly.
export DEB_LDFLAGS_MAINT_APPEND := -Wl,--enable-new-dtags
# --libdir and --libexecdir are set here because debhelper defaults to using
# multiarch paths at compat level 9, which is a reasonable choice in general
# but unnecessary here.
override_dh_auto_configure:
dh_auto_configure -- \
--libdir=\$${prefix}/lib --libexecdir=\$${libdir} \
--enable-setuid --enable-undoc='man 7 undocumented' \
--with-device=latin1 --enable-mb-groff \
--with-config-file=/etc/manpath.config \
--with-browser=www-browser --with-pager=pager \
--with-col=col --with-vgrind=vgrind --with-grap=grap \
--with-compress=compress --with-bzip2=bzip2 \
--with-xz=xz --with-lzip=lzip --with-lzma=lzma \
--with-sections='1 n l 8 3 2 3posix 3pm 3perl 3am 5 4 9 6 7'
override_dh_auto_test:
VERBOSE=1 dh_auto_test
override_dh_auto_install:
dh_auto_install
rm -f $(dtmp)/usr/lib/man-db/*.la
override_dh_install:
dh_install
dh_apparmor --profile-name=usr.bin.man
ifeq ($(DEB_BUILD_GNU_TYPE),$(DEB_HOST_GNU_TYPE))
override_dh_installman:
PATH="$(CURDIR)/$(dtmp)/usr/bin:$$PATH" \
LD_LIBRARY_PATH="$(CURDIR)/$(dtmp)/usr/lib/man-db:$$LD_LIBRARY_PATH" \
dh_installman
endif
override_dh_fixperms:
dh_fixperms
chown man:man $(dtmp)/var/cache/man
# Our shared libraries are private.
override_dh_makeshlibs:
:
|