]> git.deb.at Git - pkg/t-prot.git/blob - debian/rules
Merge tag 'upstream/3.1'
[pkg/t-prot.git] / debian / rules
1 #!/usr/bin/make -f
2 # debian/rules for t-prot package
3 # Copyright 2002-2012 by Gerfried Fuchs <rhonda@debian.org>
4 # Licenced under WTFPLv2
5
6 PKG = t-prot
7 TMP = $(CURDIR)/debian/$(PKG)
8
9 INSTALL = install
10 INSTALL_FILE    = $(INSTALL) -p    -oroot -groot -m644
11 INSTALL_PROGRAM = $(INSTALL) -p    -oroot -groot -m755
12 INSTALL_SCRIPT  = $(INSTALL) -p    -oroot -groot -m755
13 INSTALL_DIR     = $(INSTALL) -p -d -oroot -groot -m755
14
15
16 clean:
17         $(checkdir)
18         $(checkroot)
19         -rm -rf $(TMP) debian/files debian/stamp-*
20         $(MAKE) -f /usr/share/quilt/quilt.make unpatch
21
22 build: build-arch build-indep
23 build-arch: debian/stamp-build
24 build-indep: debian/stamp-build
25 debian/stamp-build:
26         # only thing to do is apply the patches ...
27         $(MAKE) -f /usr/share/quilt/quilt.make patch
28         touch debian/stamp-build
29
30
31 install: debian/stamp-install
32 debian/stamp-install: build
33         $(checkdir)
34         $(checkroot)
35         -rm -rf $(TMP)
36         $(INSTALL_DIR) $(TMP)
37         cd $(TMP) && $(INSTALL_DIR) etc/t-prot/footers etc/t-prot/ads \
38                 usr/bin usr/share/man/man1 usr/share/slrn/macros \
39                 usr/share/doc/$(PKG)/examples
40         #       usr/share/doc/$(PKG)/contrib
41         $(INSTALL_SCRIPT) t-prot   $(TMP)/usr/bin
42         $(INSTALL_FILE)   t-prot.1 $(TMP)/usr/share/man/man1
43         $(INSTALL_FILE) debian/Muttrc     $(TMP)/etc/t-prot
44         $(INSTALL_FILE) debian/footers/*  $(TMP)/etc/t-prot/footers
45         $(INSTALL_FILE) contrib/t-prot.sl $(TMP)/usr/share/slrn/macros
46
47         $(INSTALL_FILE) TODO README $(TMP)/usr/share/doc/$(PKG)
48         $(INSTALL_FILE) contrib/filter_innd.pl contrib/README.examples \
49                 $(TMP)/usr/share/doc/$(PKG)/examples
50         $(INSTALL_FILE) ChangeLog \
51                 $(TMP)/usr/share/doc/$(PKG)/changelog
52         cd $(TMP)/usr/share && gzip -9 doc/$(PKG)/changelog \
53                 man/man1/t-prot.1
54
55
56 binary-indep: install
57         $(checkdir)
58         $(checkroot)
59         $(INSTALL_DIR) $(TMP)/DEBIAN
60         $(INSTALL_FILE) debian/copyright debian/README.Debian \
61                 $(TMP)/usr/share/doc/$(PKG)
62         $(INSTALL_FILE) debian/changelog \
63                 $(TMP)/usr/share/doc/$(PKG)/changelog.Debian
64         cd $(TMP)/usr/share/doc/$(PKG) && gzip -9 \
65                 changelog.Debian
66         $(INSTALL_SCRIPT) debian/postinst debian/postrm debian/config \
67                 $(TMP)/DEBIAN
68         po2debconf debian/templates > $(TMP)/DEBIAN/templates
69         $(INSTALL_FILE) debian/conffiles \
70                 $(TMP)/DEBIAN
71         dpkg-gencontrol -ldebian/changelog -isp -p$(PKG) -P$(TMP)
72         cd $(TMP) && find * -type f ! -regex '^DEBIAN/.*' -print0 | \
73                 xargs -r0 md5sum > DEBIAN/md5sums
74         dpkg --build $(TMP) ..
75
76
77 binary-arch:
78         # We have nothing to do here.
79
80
81 binary: binary-indep
82
83
84 define checkdir
85         test -f debian/rules
86 endef
87
88 define checkroot
89         test root = "`whoami`"
90 endef
91
92 .PHONY: build clean binary-indep binary-arch binary install