2 # Sample debian/rules that uses debhelper.
3 # GNU copyright 1997 to 1999 by Joey Hess.
5 # Uncomment this to turn on verbose mode.
8 # This is the debhelper compatibility version to use.
11 # These are used for cross-compiling and for saving the configure script
12 # from having to guess our platform (since we know it already)
13 DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
14 DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
16 DEBDIR=`pwd`/debian/privoxy
20 ifneq (,$(findstring debug,$(DEB_BUILD_OPTIONS)))
22 WITHDEBUG="--with-debug"
25 configure: configure-stamp
31 env CFLAGS=$(CFLAGS) \
32 ./configure --prefix=/usr --sysconfdir=/etc \
33 --mandir=/usr/share/man $(WITHDEBUG)
37 build-stamp: configure-stamp
46 rm -f build-stamp configure-stamp
51 rm -f configure config.h GNUmakefile
52 rm -f doc/source/ldp.dsl
62 install -m 0755 privoxy $(DEBDIR)/usr/sbin/privoxy
64 sed -e 's/^\(\(trust\|proxy\)-info-url\|admin-address\)/#\1/' \
65 -e 's/^\(enable-\(edit-actions\|remote-toggle\)\)/#\1/' \
66 -e 's#^confdir \.#confdir /etc/privoxy#' \
67 -e 's#^logdir \.#logdir /var/log/privoxy#' \
68 < config > $(DEBDIR)/etc/privoxy/config
69 install -m 0644 default.action $(DEBDIR)/etc/privoxy/default.action
70 install -m 0644 standard.action $(DEBDIR)/etc/privoxy/standard.action
71 install -m 0644 user.action $(DEBDIR)/etc/privoxy/user.action
72 install -m 0644 default.filter $(DEBDIR)/etc/privoxy/default.filter
73 install -m 0644 trust $(DEBDIR)/etc/privoxy/trust
75 cp -r templates $(DEBDIR)/etc/privoxy/
76 rm -f $(DEBDIR)/etc/privoxy/templates/*~
77 rm -rf $(DEBDIR)/etc/privoxy/templates/CVS
80 # Build architecture-independent files here.
81 binary-indep: build install
82 # We have nothing to do by default.
84 # Build architecture-dependent files here.
85 binary-arch: build install
101 dh_installchangelogs ChangeLog
114 # Single step doc building on debian
115 debian-dok: configure-stamp
118 binary: binary-indep binary-arch
119 .PHONY: build clean binary-indep binary-arch binary install configure debian-dok