Add all Debian changes since 3.0.24-2.
[privoxy.git] / debian / rules
1 #!/usr/bin/make -f
2 #
3 # (c) 2002-2016 Roland Rosenfeld <roland@debian.org>
4 #
5 # Uncomment this to turn on verbose mode.
6 #export DH_VERBOSE=1
7 #export DH_OPTIONS=-v
8
9 export DEB_BUILD_MAINT_OPTIONS = hardening=+all
10
11 DEBDIR=`pwd`/debian/privoxy
12
13 %:
14         dh $@ --with autotools_dev --with systemd
15
16 override_dh_auto_configure:
17         autoheader
18         autoconf
19         dh_auto_configure -- \
20                 --prefix=/usr \
21                 --sysconfdir=/etc \
22                 --mandir=/usr/share/man \
23                 --enable-zlib \
24                 --enable-no-gifs \
25                 --enable-external-filters \
26                 --with-docbook=/usr/share/sgml/docbook/stylesheet/dsssl/modular
27
28 override_dh_auto_build:
29         $(MAKE)
30 #       preserve auto build documentation from source package:
31         tar cf debian/doc.tar README INSTALL AUTHORS doc/source doc/webserver
32         env -u LANG LC_ALL=C.UTF-8 $(MAKE) dok
33         rm -f doc/webserver/user-manual/*.bak
34         env -u LANG LC_ALL=C.UTF-8 $(MAKE) man
35
36 override_dh_auto_clean:
37 #       restore auto build documentation from source package:
38         [ ! -f debian/doc.tar ] || tar xf debian/doc.tar
39         rm -f debian/doc.tar
40         find doc/source -name \*.html | xargs -r rm -f
41         [ ! -f GNUmakefile ] || $(MAKE) clean
42         [ ! -f GNUmakefile ] || $(MAKE) distclean
43         rm -f configure config.h GNUmakefile
44         rm -f privoxy.8
45         rm -rf obj
46         rm -f ActivityConsole.jar
47         rm -f src/java/org/privoxy/activityconsole/*.class
48         rm -f doc/source/ldp.dsl
49         rm -rf doc/source/temp
50         dh_clean -Xrc.privoxy.orig
51
52 override_dh_auto_install:
53         install -m 0755 privoxy $(DEBDIR)/usr/sbin/privoxy
54         sed -e 's/\(Sample Configuration File for Privoxy\).*/\1/;' \
55             -e 's/\$$Id: config,v.*/Id: config,v/' < config \
56             > $(DEBDIR)/usr/share/privoxy/config
57         install -m 0644 default.action $(DEBDIR)/etc/privoxy/default.action
58         install -m 0644 match-all.action $(DEBDIR)/etc/privoxy/match-all.action
59         install -m 0644 user.action $(DEBDIR)/etc/privoxy/user.action
60         install -m 0644 regression-tests.action \
61                 $(DEBDIR)/etc/privoxy/regression-tests.action
62         install -m 0644 default.filter $(DEBDIR)/etc/privoxy/default.filter
63         install -m 0644 user.filter $(DEBDIR)/etc/privoxy/user.filter
64         install -m 0644 trust $(DEBDIR)/etc/privoxy/trust
65
66         install -m 0755 tools/privoxy-log-parser.pl \
67                 $(DEBDIR)/usr/bin/privoxy-log-parser
68         pod2man tools/privoxy-log-parser.pl \
69                 > $(DEBDIR)/usr/share/man/man1/privoxy-log-parser.1
70
71         install -m 0755 tools/privoxy-regression-test.pl \
72                 $(DEBDIR)/usr/bin/privoxy-regression-test
73         pod2man tools/privoxy-regression-test.pl \
74                 > $(DEBDIR)/usr/share/man/man1/privoxy-regression-test.1
75
76         cp -r templates $(DEBDIR)/etc/privoxy/
77         rm -f $(DEBDIR)/etc/privoxy/templates/*~
78         rm -rf $(DEBDIR)/etc/privoxy/templates/CVS
79
80 #       Remove CVS tags and trailing spaces from config files:
81         find $(DEBDIR)/etc/privoxy -type f \
82         | xargs grep -l '\$$[A-Z][^$$]*:[^$$]*\$$' \
83         | while read f; do \
84             sed -e 's/\$$\(Id: [^$$]*,v\)[^$$]*\$$/\1/' \
85                 -e 's/\$$\(Source: [^$$]*\)\$$/\1/' \
86                 -e 's/\$$\(Log: [^$$]*\)\$$/\1/' \
87                 -e 's/ *$$//' < $$f > $$f.new; \
88             mv -f $$f.new $$f; \
89         done
90
91 override_dh_installdocs:
92         dh_installdocs -XCVS
93         (cd $(DEBDIR)/usr/share/doc/privoxy/; \
94          mv privoxy-index.html index.html)
95         (cd $(DEBDIR)/usr/share/doc/privoxy/user-manual; ln -s '../p_doc.css')
96
97 override_dh_perl:
98 #       We only need perl-base:
99         dh_perl -d