File: rules

package info (click to toggle)
cluster-glue 1.0.12-5
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 3,300 kB
  • sloc: ansic: 43,010; sh: 5,533; python: 942; makefile: 579; perl: 375; xml: 101
file content (56 lines) | stat: -rwxr-xr-x 1,627 bytes parent folder | download
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
#!/usr/bin/make -f

# see FEATURE AREAS in dpkg-buildflags(1)
export DEB_BUILD_MAINT_OPTIONS = hardening=+all

# We don't need - or can't, rather, enforce (cf. Policy 10.2)
# because libtool does some chrpath's and re-linking through out 
# the build process, and these options fail the build before 
# lib tool gets it's chance to do anything.
# export DEB_LDFLAGS_MAINT_APPEND=-Wl,-z,defs

# main packaging script based on dh7 syntax
%:
	dh $@ --with autoreconf,python2,systemd

override_dh_autoreconf:
	dh_autoreconf ./autogen.sh

override_dh_auto_configure:
	./configure  --sysconfdir=/etc --localstatedir=/var \
		--enable-upstart --enable-dependency-tracking --disable-fatal-warnings

override_dh_auto_install:
	dh_auto_install
# clear .la files, dependency_libs fields
	for file in `find $(CURDIR)/debian/tmp -name '*.la'`; do \
		sed -i "/dependency_libs/ s/'.*'/''/" $$file ; \
	done

DEB_HOST_ARCH_OS=$(shell dpkg-architecture -qDEB_HOST_ARCH_OS)
ifeq (linux,$(DEB_HOST_ARCH_OS))
FAIL_MISSING=--fail-missing
endif
override_dh_install:
# we should probably use dh_install -X here, but it doesn't work
ifeq (hurd,$(DEB_HOST_ARCH_OS))
	sed -i -e'/bladehpi/d' -e '/ipmilan/d' -e '/systemd/d' debian/*.install
endif
ifeq (kfreebsd,$(DEB_HOST_ARCH_OS))
	sed -i -e '/systemd/d' debian/*.install
endif
	dh_install $(FAIL_MISSING)

override_dh_installinit:
	dh_installinit --name=logd -pcluster-glue -u 'defaults 20 32'

override_dh_installchangelogs:
	dh_installchangelogs ChangeLog

override_dh_python2:
	dh_python2
	dh_python2 /usr/lib/stonith/plugins/stonith2

override_dh_strip:
	dh_strip --dbg-package=cluster-glue-dbg