Codebase list xrdp / 166afcc
Bump Policy, debhelper; modernise build system mirabilos authored 4 years ago mirabilos committed 4 years ago
4 changed file(s) with 27 addition(s) and 7 deletion(s). Raw diff Collapse all Expand all
22 * Update Homepage link
33 * New upstream version
44 * Remove maintainer script code for upgrade from jessie{,-backports}
5
6 -- Thorsten Glaser <tg@mirbsd.de> Fri, 10 Jan 2020 21:20:04 +0100
5 * Bump Policy, debhelper; update build system
6
7 -- Thorsten Glaser <tg@mirbsd.de> Fri, 10 Jan 2020 21:31:04 +0100
78
89 xrdp (0.9.9-1) unstable; urgency=medium
910
+0
-1
debian/compat less more
0 11
99 Build-Depends:
1010 autoconf (>= 2.59),
1111 automake (>= 1.6),
12 debhelper (>= 11~),
12 debhelper-compat (= 12),
1313 libfuse-dev [!hurd-any],
1414 libjpeg-dev,
1515 libopus-dev,
2424 pkg-config,
2525 systemd [linux-any],
2626 Homepage: http://www.xrdp.org/
27 Standards-Version: 4.2.1
27 Standards-Version: 4.4.1
2828 Vcs-Browser: https://salsa.debian.org/debian-remote-team/xrdp
2929 Vcs-Git: https://salsa.debian.org/debian-remote-team/xrdp.git
3030
00 #!/usr/bin/make -f
11
2 DEB_LDFLAGS_MAINT_APPEND=-Wl,--as-needed
3 DEB_BUILD_MAINT_OPTIONS=hardening=+all
2 ifeq (,$(filter terse,${DEB_BUILD_OPTIONS}))
3 export DH_VERBOSE=1
4 export V=1
5 export VERBOSE=1
6 endif
47
8 LC_ALL:=C.UTF-8
9 export LC_ALL
10
11 shellescape='$(subst ','\'',$(1))'
12 shellexport=$(1)=$(call shellescape,${$(1)})
13
14 OUR_CPPFLAGS:=
15 OUR_CFLAGS:=
16 OUR_LDFLAGS:= -Wl,--as-needed
17
18 include /usr/share/dpkg/buildtools.mk
19
20 dpkgbuildflagsmkescape=$(subst \,\\\,$(1))
21 export DEB_BUILD_MAINT_OPTIONS:=hardening=+all
22 export DEB_CPPFLAGS_MAINT_APPEND:=$(call dpkgbuildflagsmkescape,${OUR_CPPFLAGS})
23 export DEB_CFLAGS_MAINT_APPEND:=$(call dpkgbuildflagsmkescape,${OUR_CFLAGS})
24 export DEB_LDFLAGS_MAINT_APPEND:=$(call dpkgbuildflagsmkescape,${OUR_LDFLAGS})
525 DPKG_EXPORT_BUILDFLAGS:=1
626 include /usr/share/dpkg/default.mk
727