summaryrefslogtreecommitdiff
path: root/ptools/debian/rules
blob: 48b0f91418bdfd6cdd8590bac37aaa9e51eb2406 (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
87
#!/usr/bin/make -f

include /usr/share/dpkg/architecture.mk

export DH_VERBOSE = 1

cmd := ptools plimit gcore

unpack: unpack-stamp
unpack-stamp:
	dh_testdir
	dh_illumos_gate --build \
		usr/src/common/elfcap \
		usr/src/man/man1\* \
		$(cmd:%=usr/src/cmd/%)

	# Buggy and unused:
	echo > usr/src/Makefile.msg.targ

	# Use GNU ld:
	sed -i '/LD_ALTEXEC/d' usr/env.sh
	echo 'BDIRECT=' >> usr/src/cmd/Makefile.cmd
	echo 'MAPFILE.NES=' >> usr/src/cmd/Makefile.cmd
	echo 'MAPFILE.PGA=' >> usr/src/cmd/Makefile.cmd
	echo 'MAPFILE.NED=' >> usr/src/cmd/Makefile.cmd
	echo 'ROOTPROG32=$$(ROOTPROG)' >> usr/src/cmd/Makefile.cmd
	echo 'ROOTPROG64=$$(ROOTPROG)' >> usr/src/cmd/Makefile.cmd

ifeq (64,$(DEB_HOST_ARCH_BITS))
	echo 'BUILD64=' >> usr/src/cmd/Makefile.cmd
	echo '64ONLY=$$(POUND_SIGN)' >> usr/src/cmd/Makefile.cmd
else
	echo 'BUILD64=$$(POUND_SIGN)' >> usr/src/cmd/Makefile.cmd
	echo '64ONLY=' >> usr/src/cmd/Makefile.cmd
endif
	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: unpack-stamp
	. usr/env.sh; mkdir -p \
		debian/tmp/usr/bin
	touch $@

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

build-stamp: dirs-stamp patch-stamp
	dh_illumos_make --native $(cmd:%=usr/src/cmd/%)
	touch $@

binary binary-arch binary-indep: binary-stamp
binary-stamp: build-stamp
	dh_testdir
	dh_testroot
	dh_installdirs
	dh_install --fail-missing
	dh_installman
	dh_installdocs
	dh_installexamples
	dh_installchangelogs
	dh_bash-completion
	dh_link
	dh_compress
	dh_fixperms
	dh_installdeb
	dh_shlibdeps
	dh_strip
	dh_gencontrol
	dh_md5sums
	dh_builddeb
	touch $@

clean: unpatch
	dh_testdir
	dh_testroot
	rm -rf usr .pc
	dh_clean