chiark / gitweb /
command -v
[userv.git] / debian / rules
1 #!/usr/bin/make -f
2
3 SHELL=/bin/bash
4 package=userv
5
6 t=debian/tmp
7
8 ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
9         INSTOPTS= LDFLAGS=-s INSTALL_PROGRAM='install -c -s'
10 else
11         INSTOPTS= INSTALL_PROGRAM='install -c'
12 endif
13
14 build:
15         $(checkdir)
16         ./configure --prefix=/usr
17         $(MAKE) all docs
18         touch build
19
20 clean:
21         $(checkdir)
22         -rm -f build
23         -$(MAKE) -i distclean || $(MAKE) -f Makefile.in distclean
24         -rm -rf *~ $t debian/*~ debian/files* debian/substvars*
25         -rm -rf spec.html
26
27 binary-indep:   checkroot build
28         $(checkdir)
29 # There are no architecture-independent files to be uploaded
30 # generated by this package.  If there were any they would be
31 # made here.
32
33 binary-arch:    checkroot build
34         $(checkdir)
35         -rm -rf $t
36         install -d $t/{DEBIAN,etc/init.d} $t/usr/{sbin,bin}
37         install -d $t/etc/userv/{override,default}.d
38         install -d $t/usr/share/doc/$(package)/examples/
39         install -d $t/usr/share/lintian/overrides/
40         install -m 755 debian/{postinst,prerm,postrm} $t/DEBIAN/.
41         install -m 644 debian/conffiles $t/DEBIAN/.
42         install -m 755 debian/initd $t/etc/init.d/userv
43         $(MAKE) $(INSTOPTS) \
44                 prefix=$t/usr etcdir=$t/etc \
45                 docdir=$t/usr/share/doc/userv \
46                 mandir=$t/usr/share/man \
47                 install install-doc
48         cp debian/copyright $t/usr/share/doc/$(package)/.
49         cp debian/changelog $t/usr/share/doc/$(package)/changelog
50         cp README $t/usr/share/doc/$(package)/README.upstream
51         cp system.default system.override $t/usr/share/doc/$(package)/examples
52         ln -s changelog.gz $t/usr/share/doc/$(package)/changelog.Debian.gz
53         gzip -9v $t/usr/share/doc/$(package)/changelog \
54                 $t/usr/share/man/man1/*.1 $t/usr/share/man/man8/*.8 \
55                 $t/usr/share/doc/userv/*.ps
56         cp debian/lintian $t/usr/share/lintian/overrides/userv
57         dpkg-shlibdeps daemon client
58         dpkg-gencontrol -isp
59         chown -R root.root $t
60         chmod -R og=rX $t
61         dpkg --build $t ..
62
63 define checkdir
64         test -f overlord.c -a -f lexer.l.m4 -a -f debian/rules
65 endef
66
67 # Below here is fairly generic really
68
69 binary:         binary-indep binary-arch
70
71 source diff:
72         @echo >&2 'source and diff are obsolete - use dpkg-source -b'; false
73
74 checkroot:
75         $(checkdir)
76         test root = "`whoami`"
77
78 .PHONY: binary binary-arch binary-indep clean checkroot