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
118
119
120
|
#!/usr/bin/make -f
DEB_HOST_ARCH ?=$(shell dpkg-architecture -qDEB_HOST_ARCH)
CFLAGS =-O2 -Wall
LDFLAGS =-s -Os -pipe
CC =diet -v -Os gcc
STRIP =strip
ifneq ($(DEB_HOST_ARCH),alpha)
ifneq ($(DEB_HOST_ARCH),arm)
ifneq ($(DEB_HOST_ARCH),hppa)
ifneq ($(DEB_HOST_ARCH),i386)
ifneq ($(DEB_HOST_ARCH),ia64)
ifneq ($(DEB_HOST_ARCH),mips)
ifneq ($(DEB_HOST_ARCH),mipsel)
ifneq ($(DEB_HOST_ARCH),powerpc)
ifneq ($(DEB_HOST_ARCH),s390)
ifneq ($(DEB_HOST_ARCH),sparc)
CC =gcc
endif
endif
endif
endif
endif
endif
endif
endif
endif
endif
ifneq (,$(findstring debug,$(DEB_BUILD_OPTIONS)))
CFLAGS +=-g
endif
ifneq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
STRIP =: nostrip
endif
DIR =`pwd`/debian/runit
build: deb-checkdir build-stamp
build-stamp:
tar xfzp runit-0.13.1.tar.gz
-gcc -v
( \
cd admin/runit-0.13.1/src && \
ln -s runit-0.13.1 runit && mv runit ../.. && \
echo "$(CC) $(CFLAGS)" >conf-cc && \
echo "$(CC) $(LDFLAGS)" >conf-ld && \
$(MAKE); \
)
touch build-stamp
clean: deb-checkdir deb-checkuid
rm -rf admin
rm -f build-stamp
rm -rf "$(DIR)"
rm -f debian/files debian/substvars changelog
install: deb-checkdir deb-checkuid build-stamp
rm -rf "$(DIR)"
install -d -m0755 "$(DIR)"/var/service
install -d -m0755 "$(DIR)"/sbin
install -d -m0755 "$(DIR)"/usr/bin
install -d -m0755 "$(DIR)"/usr/sbin
for i in runit runit-init; do \
install -m0755 admin/runit/src/$$i "$(DIR)"/sbin/ || exit 1; \
done
for i in runsvdir runsv svlogd svwaitdown svwaitup runsvstat \
runsvctrl chpst; do \
install -m0755 admin/runit/src/$$i "$(DIR)"/usr/bin/ || exit 1; \
done
for i in runsvchdir utmpset; do \
install -m0755 admin/runit/src/$$i "$(DIR)"/usr/sbin/ || exit 1; \
done
install -m0755 admin/runit/src/utmpset "$(DIR)"/usr/sbin/
$(STRIP) -R .comment -R .note "$(DIR)"/sbin/* "$(DIR)"/usr/sbin/* \
"$(DIR)"/usr/bin/*
# runsvdir-start to be used from /etc/inittab
install -m0755 debian/2 "$(DIR)"/usr/sbin/runsvdir-start
# temporary?
ln -s ../bin/chpst "$(DIR)"/usr/sbin/setuidgid
# getty-5 service
install -d -m0755 "$(DIR)"/etc/runit/getty-5
install -m0755 admin/runit/etc/debian/getty-tty5/run \
"$(DIR)"/etc/runit/getty-5/run
install -m0755 admin/runit/etc/debian/getty-tty5/finish \
"$(DIR)"/etc/runit/getty-5/finish
# lintian overrides
install -m0755 -d "$(DIR)"/usr/share/lintian/overrides
install -m0644 debian/runit.lintian \
"$(DIR)"/usr/share/lintian/overrides/runit
# man pages
install -d -m0755 "$(DIR)"/usr/share/man/man8
install -m0644 admin/runit/man/*.8 "$(DIR)"/usr/share/man/man8/
gzip -9 "$(DIR)"/usr/share/man/man8/*.8
# links
install -d -m0755 "$(DIR)"/var/run/getty-5
ln -s /var/run/getty-5 "$(DIR)"/etc/runit/getty-5/supervise
# additional docs
install -m0755 -d "$(DIR)"/usr/share/doc/runit/debian
for i in 1 2 3 ctrlaltdel; do \
install -m0644 admin/runit/etc/debian/$$i \
"$(DIR)"/usr/share/doc/runit/debian/; \
done
# changelog
rm -f changelog && ln -s admin/runit/package/CHANGES changelog
binary-indep:
binary-arch: deb-checkdir deb-checkuid install runit.deb
test "$(CC)" != 'gcc' || \
dpkg-shlibdeps "$(DIR)"/usr/sbin/* "$(DIR)"/usr/bin/*
dpkg-gencontrol -isp -prunit -P"$(DIR)"
dpkg -b "$(DIR)" ..
binary: binary-indep binary-arch
.PHONY: build clean install binary-indep binary-arch binary
include debian/implicit
|