summaryrefslogtreecommitdiff
path: root/illumos-net-tools/debian/rules
blob: ee57d60249f2cdf450ef3b5a21eada40a60e5a63 (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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
#!/usr/bin/make -f

include /usr/share/dpkg/buildflags.mk

export DH_VERBOSE = 1

# We've patched it, so i386 is suitable for any arch:
cmd := \
	cmd-inet/usr.sbin/ifconfig \
	cmd-inet/sbin/netstrategy \
	cmd-inet/usr.bin/netstat \

man := \
	usr/src/man/man1m/arp.1m \
	usr/src/man/man1m/ifconfig.1m \
	usr/src/man/man1m/ndd.1m \
	usr/src/man/man1m/netstat.1m \
	usr/src/man/man1m/netstrategy.1m \
	usr/src/man/man1m/route.1m \


unpack: unpack-stamp
unpack-stamp:
	dh_testdir
	dh_illumos_gate --build \
		usr/src/cmd/cmd-inet \
		$(man) \
		usr/src/lib/gss_mechs/mech_krb5/Makefile.mech_krb5 \
		usr/src/cmd/stat/common \


	# 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

	# Disable ISA dirs:
	echo 'ROOTUSRSBIN32=$$(ROOTUSRSBIN)' >> usr/src/cmd/Makefile.cmd
	echo 'ROOTBIN32=$$(ROOTBIN)' >> usr/src/cmd/Makefile.cmd
	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/sbin \
		debian/tmp/usr/sbin \
		debian/tmp/usr/bin
	touch $@

install: install-stamp

install-stamp: build-stamp
	install -m 755 -t debian/tmp/usr/sbin \
		usr/src/cmd/cmd-inet/usr.sbin/arp

	install -m 755 -t debian/tmp/usr/sbin \
		usr/src/cmd/cmd-inet/usr.sbin/ndd

	install -m 755 -t debian/tmp/sbin \
		usr/src/cmd/cmd-inet/usr.sbin/route
	ln -sf ../../sbin/route debian/tmp/usr/sbin/route

	touch $@

build build-arch build-indep: build-stamp

build-stamp: dirs-stamp patch-stamp
	dh_illumos_make --native usr/src/cmd/cmd-inet/usr.sbin -t arp
	dh_illumos_make --native usr/src/cmd/cmd-inet/usr.sbin -t ndd
	dh_illumos_make --native usr/src/cmd/cmd-inet/usr.sbin -t route
	dh_illumos_make --native $(cmd:%=usr/src/cmd/%)
	touch $@

binary binary-arch binary-indep: binary-stamp
binary-stamp: install-stamp
	dh_testdir
	dh_testroot
	dh_installdirs
	dh_install
	dh_strip
	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