Make deprecated things not built by default by Makefile (and remove code in debian...
[userv-utils] / debian / rules
CommitLineData
6362f12c 1#!/usr/bin/make -f
2
9028e234
IJ
3# Copyright 1996-2013 Ian Jackson <ijackson@chiark.greenend.org.uk>
4# Copyright 1998 David Damerell <damerell@chiark.greenend.org.uk>
5# Copyright 1999,2003
6# Chancellor Masters and Scholars of the University of Cambridge
7# Copyright 2010 Tony Finch <fanf@dotat.at>
8#
9# This is free software; you can redistribute it and/or modify it
10# under the terms of the GNU General Public License as published by
11# the Free Software Foundation; either version 3 of the License, or
12# (at your option) any later version.
13#
14# This program is distributed in the hope that it will be useful, but
15# WITHOUT ANY WARRANTY; without even the implied warranty of
16# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17# General Public License for more details.
18#
19# You should have received a copy of the GNU General Public License
20# along with userv-utils; if not, see http://www.gnu.org/licenses/.
21
ef974b1a 22subdirs_build= ipif www-cgi git-daemon
6362f12c 23subdirs_nobuild=dyndns groupmanage misc
24package= userv-utils
4063cda3 25packages_indep= userv-dyndns userv-groupmanage userv-misc userv-git-daemon
6362f12c 26packages_arch= userv-ipif userv-cgi
27packages= $(packages_indep) $(packages_arch)
28
29cwd= $(shell pwd)
30d= $(cwd)/debian
6362f12c 31
0b0a2c11
IJ
32%:
33 dh $@
34
35override_dh_auto_configure:
36
37override_dh_auto_build:
6362f12c 38 $(checkdir)
97f318e0 39 set -e; for s in $(subdirs_build); do \
84e9bd3c 40 $(MAKE) -C $$s all; \
97f318e0 41 done
6362f12c 42 touch build
43
0b0a2c11 44override_dh_auto_install:
6362f12c 45 $(checkdir)
3b122384
IJ
46 -
47 set -e; for p in $(packages); do rm -rf $d/$$p; done
48 -
6362f12c 49 set -e; for s in $(subdirs_build) $(subdirs_nobuild); do \
3b122384
IJ
50 t=$d/userv-$$s; \
51 rm -rf $$t; \
6362f12c 52 $(MAKE) -C $$s install install-docs install-examples \
3b122384
IJ
53 prefix=$$t/usr \
54 etcdir=$$t/etc \
55 vardir=$$t/var \
3b122384
IJ
56 gituser=root \
57 ; \
6362f12c 58 done
3b122384 59 -
0b0a2c11
IJ
60 mv debian/userv-www-cgi debian/userv-cgi
61 mv debian/userv-groupmanage/usr/share/doc/groupmanage \
62 debian/userv-groupmanage/usr/share/doc/userv-groupmanage
3b122384
IJ
63 -
64 rename 's/\.example$$//' $d/userv-ipif/etc/userv/vpn/*.example \
65 $d/userv-dyndns/etc/userv/dyndns-service-users.example \
66 $d/userv-groupmanage/etc/groupmanage.conf.example
67 rename 's/\.distrib$$//' $d/*/etc/userv/services.d/*.distrib
68 rename 's/$$/\.disabled/' $d/userv-misc/etc/userv/services.d/mailq
69 -
70 mv $d/userv-misc/usr/bin/mailq $d/userv-misc/usr/bin/mailq.userv
71
72override_dh_install:
6362f12c 73
0b0a2c11 74override_dh_auto_clean:
6362f12c 75 $(checkdir)
0b0a2c11
IJ
76 rm -f build
77 set -e; for s in $(subdirs_build); do \
78 $(MAKE) -C $$s -i distclean || \
79 $(MAKE) -C $$s -f Makefile.in distclean; \
80 done
81 rm -rf *~ debian/tmp debian/*~ debian/files* debian/substvars*
6362f12c 82
83define checkdir
84 test -f ipif/service.c
85endef
86
87# Below here is fairly generic really
88
6362f12c 89checkroot:
90 $(checkdir)
91 test root = "`whoami`"