summaryrefslogtreecommitdiff
path: root/fma/debian/rules
blob: 8ce15e84dbddb5c307da52b243a5a0a05600ff65 (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
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
#!/usr/bin/make -f

include /usr/share/dpkg/architecture.mk
export DH_VERBOSE = 1

unpack: unpack-stamp
unpack-stamp:
	dh_testdir
	dh_illumos_gate --build \
		usr/src/cmd/fm \
		usr/src/lib/fm

	# Not used and buggy:
	echo > usr/src/Makefile.msg.targ

	echo 'export ROOTLIBDIR="$$ROOT/$$DEB_USRLIBDIR_32"' >> usr/env.sh
	echo 'export ROOTLIBDIR64="$$ROOT/$$DEB_USRLIBDIR_64"' >> usr/env.sh

	touch $@

patch: patch-stamp
patch-stamp: unpack-stamp
	dh_testdir
	[ ! -f debian/patches/series ] || QUILT_PATCHES=debian/patches quilt push -a || test $$? = 2
	touch $@

unpatch:
	dh_testdir
	[ ! -f debian/patches/series ] || QUILT_PATCHES=debian/patches quilt pop -a -f || test $$? = 2
	rm -f patch-stamp

dirs-stamp:
	. usr/env.sh; mkdir -p \
		debian/tmp/usr/include \
		debian/tmp$$DEB_USRLIBDIR_32 \
		debian/tmp$$DEB_USRLIBDIR_64
	touch $@

headers-stamp: patch-stamp dirs-stamp
	dh_illumos_make -t install_h \
		usr/src/cmd/fm \
		usr/src/lib/fm
	touch $@

install build build-arch build-indep: build-stamp

lib-stamp: patch-stamp dirs-stamp headers-stamp
	: dh_illumos_make usr/src/lib/fm
	: # Now we only build libtopo and libfmevent for SMF
	dh_illumos_make usr/src/lib/fm/topo/libtopo
	dh_illumos_make usr/src/lib/fm/libfmevent
	touch $@
cmd-stamp: patch-stamp dirs-stamp headers-stamp lib-stamp
	: dh_illumos_make --native usr/src/cmd/fm
	touch $@

build-stamp: lib-stamp cmd-stamp
	touch $@

binary binary-arch binary-indep: binary-stamp
binary-stamp: build-stamp
	dh_testdir
	dh_testroot
	dh_installdirs
	dh_install
	dh_installman
	dh_installdocs
	dh_installexamples
	dh_installchangelogs
	dh_link
	dh_compress
	dh_fixperms
	dh_makeshlibs -- -c4
	dh_installdeb
	dh_shlibdeps
	dh_gencontrol
	dh_md5sums
	dh_builddeb
	touch $@

clean: unpatch
	dh_testdir
	dh_testroot
	dh_clean
	rm -rf usr