Remove the 'View the source code version numbers' link from the CGI menu
[privoxy.git] / GNUmakefile.in
1 # Note:  GNUmakefile is built automatically from GNUmakefile.in
2 #
3 # $Id: GNUmakefile.in,v 1.256 2017/02/20 13:46:25 fabiankeil Exp $
4 #
5 # Written by and Copyright (C) 2001-2017 members of the
6 # Privoxy team. https://www.privoxy.org/
7 #
8 # Based on the Internet Junkbuster originally written
9 # by and Copyright (C) 1997 Anonymous Coders and
10 # Junkbusters Corporation.  http://www.junkbusters.com
11 #
12 # This program is free software; you can redistribute it
13 # and/or modify it under the terms of the GNU General
14 # Public License as published by the Free Software
15 # Foundation; either version 2 of the License, or (at
16 # your option) any later version.
17 #
18 # This program is distributed in the hope that it will
19 # be useful, but WITHOUT ANY WARRANTY; without even the
20 # implied warranty of MERCHANTABILITY or FITNESS FOR A
21 # PARTICULAR PURPOSE.  See the GNU General Public
22 # License for more details.
23 #
24 # The GNU General Public License should be included with
25 # this file.  If not, you can view it at
26 # http://www.gnu.org/copyleft/gpl.html
27 # or write to the Free Software Foundation, Inc., 59
28 # Temple Place - Suite 330, Boston, MA  02111-1307, USA.
29 #
30
31 #############################################################################
32 # Set make command correctly
33 #############################################################################
34 @SET_MAKE@
35
36 #############################################################################
37 # Version number (for RPM)
38 #############################################################################
39
40 VERSION_MAJOR = @VERSION_MAJOR@
41 VERSION_MINOR = @VERSION_MINOR@
42 VERSION_POINT = @VERSION_POINT@
43 CODE_STATUS   = @CODE_STATUS@
44 VERSION       = $(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_POINT)
45 SNAPVERSION   = $(VERSION)-$(shell date "+%Y%m%d")
46
47
48 #############################################################################
49 # "make install" directories and variables
50 #############################################################################
51
52 #User Group paras
53 USER         = @USER@
54 GROUP      = @GROUP@
55
56 datarootdir  = @datarootdir@
57 prefix       = @prefix@
58 exec_prefix  = @exec_prefix@
59 CONF_BASE    = @sysconfdir@
60 SBIN_DEST    = @sbindir@
61 MAN_DIR      = @mandir@
62 MAN_DEST     = $(MAN_DIR)/man1
63 MAN_PAGE     = privoxy.1
64 SHARE_DEST   = @datadir@
65 DOC_DEST     = $(SHARE_DEST)/doc/privoxy
66 VAR_DEST     = @localstatedir@
67 LOGS_DEST    = $(VAR_DEST)/log/privoxy
68 PIDS_DEST    = $(VAR_DEST)/run
69
70 # if $prefix = /usr/local then the default CONFDEST change from
71 # CONF_DEST = $(CONF_BASE) to CONF_DEST = $(CONF_BASE)/privoxy
72 # by the target rule CONF_DEST
73 #
74 # also if the $prefix is /usr/local and there is no
75 # $(SHARE_DEST)/doc, it checks for $prefix/doc and installs there
76 # instead in this situation
77 #
78 # finally if $prefix=/usr/local and VAR_DEST=$prefix/var it
79 # changes this to /var for storing the logs and pidfile
80
81 # used in source dir only, the install goes to $share_dest/doc/privoxy
82 DOK_WEB = doc/webserver/
83
84 # Install usage should be compatible with install-sh.
85 INSTALL    = @INSTALL@
86 # Binaries
87 BIN_MODE         = 0755
88 # Support files, docs, etc.
89 RA_MODE   = 0644
90 # Directory
91 DIR_MODE   = 0755
92 # Files daemon writes to.
93 RWD_MODE   = 0660
94 INSTALL_P  = -m $(BIN_MODE)
95 INSTALL_T  = -m $(RA_MODE)
96 INSTALL_D  = -m $(DIR_MODE) -d
97 INSTALL_R  = -m $(RWD_MODE)
98
99 # install options for superuser install
100 #INSTALL_S  = -g @GROUP@ -o @USER@
101
102 #############################################################################
103 # Build tools
104 #############################################################################
105
106 PROGRAM    = privoxy@EXEEXT@
107 CC         = @CC@
108 ECHO       = echo
109 GZIP_PROG  = gzip
110
111 # id -u is not universal. FIXME: need to set from configure. Breaks on
112 # Solaris.
113 #ID         = id -u
114 ID         = id
115 LD         = @CC@
116 RM         = rm -f
117 CP         = cp -f
118 RMDIR      = rmdir
119 MKDIR      = ./mkinstalldirs
120 STRIP_PROG = strip
121 SED        = sed
122 GREP       = grep
123 CAT        = cat
124 MV         = mv
125 TAR        = tar
126 LN         = ln
127 TOUCH      = touch
128 KILL       = kill
129 CHMOD      = chmod
130 CHOWN      = chown
131 CHGRP      = chgrp
132 GROUPS     = groups
133 W3M_DUMP   = env -u LANG LC_ALL=C @W3M@ -dump
134 W3M_DUMP_UTF8 = @W3M@ -dump
135 JADECAT    = @JADECAT@
136 JADEBIN    = @JADEBIN@
137 DB         = $(JADEBIN) $(JADECAT) -ihtml -t sgml  -D.. -d ldp.dsl\#html
138 DB2HTML    = @DB2HTML@
139 MAN2HTML   = @MAN2HTML@
140 G2H_CMD    = groff -mandoc -Thtml
141 TARGET_OS  = @host@
142 PERL       = perl
143 DOC_DIR    = doc/source
144 DOC_TMP    = $(DOC_DIR)/tmp
145 DOC_STATUS = @DOC_STATUS@
146 TIDY       = tidy -modify -indent -wrap 78 --tidy-mark no
147 RSYNC      = rsync -av -c --chmod=D755,F644
148
149 # Program to do LF->CRLF
150 DOSFILTER  = $(PERL) -p -e 's/\n/\r\n/'
151 CVSROOT    = :pserver:anonymous@ijbswa.cvs.sourceforge.net:/cvsroot/ijbswa
152 #TMPDIR     := $(shell mktemp -d /tmp/$(PROGRAM).XXXXXX)
153 # If your SF user name differs from your local one,
154 # change this to "ssh -l sf-username"
155 SSH     = ssh
156 WWW_ROOT = /home/project-web/ijbswa
157 # SourceForge login name used by the 'sf-shell' target (optional)
158 SOURCE_FORGE_NAME = ''
159
160 #############################################################################
161 # Setup for make distribution for now.
162 #############################################################################
163
164 TAR_ARCH = /tmp/privoxy-$(VERSION).tar.gz
165 GEN_DIST_TAR_NAME = privoxy-$(TARGET_OS)-$(VERSION)-$(CODE_STATUS).tar
166
167 #############################################################################
168 # We include these files in our distributions
169 #############################################################################
170 CONFIGS =       config trust default.action match-all.action \
171                 user.action default.filter user.filter \
172                 regression-tests.action
173
174 # take care that no CVS .cvsignore or other crappy files
175 # are included here
176 # and escape every '#' in the find. doh.
177 CONFIG_FILES = $(CONFIGS) \
178                 `find templates/ -type f | grep -v "CVS" | grep -v "\.\#" | grep -v ".*~" | grep -v ".cvsignore" | grep -v "TAGS" | sort`
179
180 DOC_FILES = AUTHORS LICENSE README ChangeLog INSTALL \
181                 `find doc/webserver/ -name "*.html" | grep -v "\(webserver\|team\)\/index\.html" | sort` \
182                 `find doc/webserver/ -name "*.css" | sort` \
183                 $(MAN_PAGE)
184
185 #############################################################################
186 # Filenames and libraries
187 #############################################################################
188
189 C_SRC  = actions.c cgi.c cgiedit.c cgisimple.c deanimate.c encode.c \
190          errlog.c filters.c gateway.c jbsockets.c jcc.c \
191          list.c loadcfg.c loaders.c miscutil.c parsers.c ssplit.c \
192          urlmatch.c
193
194 C_OBJS = $(C_SRC:.c=.@OBJEXT@)
195 C_HDRS = $(C_SRC:.c=.h) project.h actionlist.h
196
197 CLIENT_TAG_SRC = @FEATURE_CLIENT_TAGS_ONLY@client-tags.c
198 CLIENT_TAG_OBJS = @FEATURE_CLIENT_TAGS_ONLY@client-tags.@OBJEXT@
199
200 FUZZ_SRC = @FUZZ_ONLY@fuzz.c
201 FUZZ_OBJS = @FUZZ_ONLY@fuzz.@OBJEXT@
202
203 W32_SRC   = @WIN_ONLY@w32log.c w32taskbar.c win32.c w32svrapi.c
204 W32_FILES = @WIN_ONLY@w32.res
205 W32_OBJS  = @WIN_ONLY@$(W32_SRC:.c=.@OBJEXT@) $(W32_FILES)
206 W32_HDRS  = @WIN_ONLY@w32log.h w32taskbar.h win32.h w32res.h w32svrapi.h
207 W32_LIB   = @WIN_ONLY@-lwsock32 -lcomctl32
208 W32_INIS  = @WIN_ONLY@config.txt trust.txt
209
210 PCRS_SRC     = @STATIC_PCRS_ONLY@pcrs.c
211 PCRS_OBJS    = @STATIC_PCRS_ONLY@$(PCRS_SRC:.c=.@OBJEXT@)
212 PCRS_HDRS    = @STATIC_PCRS_ONLY@$(PCRS_SRC:.c=.h)
213
214 PCRE_SRC     = @STATIC_PCRE_ONLY@pcre/get.c pcre/maketables.c pcre/study.c pcre/pcre.c
215 PCRE_OBJS    = @STATIC_PCRE_ONLY@$(PCRE_SRC:.c=.@OBJEXT@)
216 PCRE_HDRS    = @STATIC_PCRE_ONLY@pcre/config.h pcre/chartables.c pcre/internal.h pcre/pcre.h
217
218 # No REGEX (maybe because dynamically linked pcreposix):
219 REGEX_SRC    =
220 @STATIC_PCRE_ONLY@REGEX_SRC = pcre/pcreposix.c
221
222 REGEX_OBJS   = $(REGEX_SRC:.c=.@OBJEXT@)
223 REGEX_HDRS   = $(REGEX_SRC:.c=.h)
224
225 # Dependencies introduced by #include "project.h".
226 PROJECT_H_DEPS = project.h $(REGEX_HDRS) $(PCRS_HDRS) @STATIC_PCRE_ONLY@pcre/pcre.h
227
228 # Socket libraries for platforms that need them explicitly defined
229 SOCKET_LIB   = @SOCKET_LIB@
230
231 # PThreads library, if needed.
232 PTHREAD_LIB  = @PTHREAD_ONLY@@PTHREAD_LIB@
233
234 SRCS         = $(C_SRC) $(CLIENT_TAG_SRC) $(FUZZ_SRC) $(W32_SRC)  $(PCRS_SRC)  $(PCRE_SRC)  $(REGEX_SRC)
235 OBJS         = $(C_OBJS) $(CLIENT_TAG_OBJS) $(FUZZ_OBJS) $(W32_OBJS) $(PCRS_OBJS) $(PCRE_OBJS) $(REGEX_OBJS)
236 HDRS         = $(C_HDRS) $(W32_HDRS) $(PCRS_HDRS) $(PCRE_OBJS) $(REGEX_HDRS)
237 LIBS         = @LIBS@ $(W32_LIB) $(SOCKET_LIB) $(PTHREAD_LIB)
238
239
240 #############################################################################
241 # Compiler switches
242 #############################################################################
243
244 # The flag "-mno-win32" can be used by Cygwin to emulate a un?x type build.
245 # The flag "-mwindows -mno-cygwin" will cause Cygwin to use MingW32 for a
246 # Win32 GUI build.
247 # The flag "-pthread" is required if using Pthreads under Linux (and
248 # possibly other OSs).
249 SPECIAL_CFLAGS = @SPECIAL_CFLAGS@
250
251 # Add your flags here
252 OTHER_CFLAGS =
253
254 CFLAGS = @CFLAGS@ @CPPFLAGS@ $(OTHER_CFLAGS) $(SPECIAL_CFLAGS) -Wall \
255          @STATIC_PCRE_ONLY@ -Ipcre
256
257 LDFLAGS = @LDFLAGS@ $(DEBUG_CFLAGS) $(SPECIAL_CFLAGS)
258
259
260 #############################################################################
261 # Build section.
262 #
263 # There should NOT be any targets above this line.
264 #############################################################################
265 all: $(PROGRAM) default.action
266
267
268 #############################################################################
269 # Phony targets
270 #############################################################################
271 .PHONY: all inifiles \
272 win-dist tarball-dist dok webserver clean clobber tags \
273 install CONF_DEST LOG_DEST \
274 PID_DEST check_doc install-strip uninstall GROUP_T
275
276 #############################################################################
277 # Define this explicitly because Solaris is broken!
278 #############################################################################
279 %.o: %.c
280         $(CC) -c $(CFLAGS) $(CPPFLAGS) $< -o $@
281
282
283 #############################################################################
284 # Strip master copy comments from default.action:
285 #############################################################################
286 default.action: default.action.master
287         $(GREP) -v '^#MASTER#' default.action.master > $@
288 #############################################################################
289 # Win32 config files
290 #############################################################################
291
292 inifiles: $(W32_INIS)
293
294 config.txt: config
295         $(SED) -e 's!\trustfile trust!trustfile trust.txt!' \
296                -e 's!\logfile logfile!logfile privoxy.log!' \
297                -e 's!#Win32-only: !!' \
298                < $< | \
299                $(DOSFILTER) > $@
300         # LF to CRLF in default.action
301         $(DOSFILTER) <default.action >default.action.txt && mv default.action.txt default.action
302         # LF to CRLF in default.filter
303         $(DOSFILTER) <default.filter >default.filter.txt && mv default.filter.txt default.filter
304
305 trust.txt: trust
306         $(DOSFILTER) < $< > $@
307
308 #############################################################################
309 # Pre-dist check:
310 #############################################################################
311 dist-check:
312         @if [ -d CVS ]; then \
313            $(ECHO) "***************************************************"; \
314            $(ECHO) "***                                             ***"; \
315            $(ECHO) "***                  WARNING                    ***"; \
316            $(ECHO) "***                                             ***"; \
317            $(ECHO) "*** The presence of a CVS subdirectory suggests ***"; \
318            $(ECHO) "*** that you are trying to build a distribution ***"; \
319            $(ECHO) "*** package based on a checked out, not an      ***"; \
320            $(ECHO) "*** exported copy of the source tree. Please    ***"; \
321            $(ECHO) "*** see \"Releasing a new version\" in the        ***"; \
322            $(ECHO) "*** developer manual.                           ***"; \
323            $(ECHO) "***                                             ***"; \
324            $(ECHO) "***************************************************"; \
325            $(ECHO) "Type \"yes i am sure\" if you are sure that you"; \
326            $(ECHO) -n "really want to proceed: "; \
327            read answer; \
328            if [ "$$answer" != "yes i am sure" ]; then exit 1; fi \
329          fi;
330
331
332 #############################################################################
333 # create tar.gz from CVS:
334 # This make-target is usually called through 'create-archive'. If you
335 # run 'make create-snapshot' without setting SNAPVERSION, you'll get a
336 # tar.gz with the current date in the name.
337 # The main usage is to run it as follows (Red Hat example):
338 # make SNAPVERSION=1.6x create-snapshot
339 # This creates a tar.gz.
340 #############################################################################
341 create-snapshot:
342         @tag=`cvs -d $(CVSROOT) status Makefile | awk ' /Sticky Tag/ { print $$3 } '` 2> /dev/null; \
343         [ x"$$tag" = x"(none)" ] && tag=HEAD; \
344         echo "*** Creating package from $$tag!"; \
345         TMPDIR=$(shell mktemp -d /tmp/$(PROGRAM).XXXXXX); \
346         cd $$TMPDIR ; cvs -Q -d $(CVSROOT) export -r $$tag current || echo "Um... export aborted."; \
347         cd $$TMPDIR/current; \
348         $(TAR) --exclude ".cvsignore" --exclude "CVS" \
349                 -czf /tmp/$(PROGRAM)-$(VERSION).tar.gz .; \
350         $(RM) -rf $$TMPDIR
351         @echo "Resulting file is /tmp/$(PROGRAM)-$(VERSION).tar.gz"
352
353
354 #############################################################################
355 # looks at the version of Makefile and exports a corresponding source-tree
356 # example: if the Makefile has the sticky tag v_2_9_13, you'll get
357 # privoxy-*-2.4.13.tar.gz.
358 #############################################################################
359 create-archive:
360         make SNAPVERSION=$(SNAPVERSION) create-snapshot
361
362 #############################################################################
363 # generic distribution
364 #############################################################################
365 gen-dist: dist-check
366         @$(ECHO) ""
367         @$(ECHO) "You have run autoconf && autoheader && ./configure right?"
368         @$(ECHO) ""
369         $(MAKE) $(PROGRAM)
370         $(STRIP_PROG) $(PROGRAM)
371         $(LN) -s `pwd` ../privoxy-$(VERSION)-$(CODE_STATUS)
372 # add program
373         (cd .. && $(TAR) --exclude "PACKAGERS" -cvhf $(GEN_DIST_TAR_NAME) privoxy-$(VERSION)-$(CODE_STATUS)/$(PROGRAM))
374 # add config files
375         for foo in $(CONFIG_FILES); do \
376                 (cd .. && $(TAR) --exclude "PACKAGERS" -uvhf $(GEN_DIST_TAR_NAME) privoxy-$(VERSION)-$(CODE_STATUS)/$$foo;) \
377         done;
378 # add documentation
379         for foo in $(DOC_FILES); do \
380                 (cd .. && $(TAR) --exclude "PACKAGERS" -uvhf $(GEN_DIST_TAR_NAME) privoxy-$(VERSION)-$(CODE_STATUS)/$$foo;) \
381         done;
382 # add tools
383         (cd .. && $(TAR) -uvhf $(GEN_DIST_TAR_NAME) privoxy-$(VERSION)-$(CODE_STATUS)/tools)
384 # and zip the archive
385         $(RM) ../privoxy-$(VERSION)-$(CODE_STATUS)
386         $(GZIP_PROG) ../$(GEN_DIST_TAR_NAME)
387         @$(ECHO) Distribution with binary created.
388
389 # anonymously ncftps the package to sourceforge
390 gen-upload:
391         ncftpput -u anonymous -p ijbswa-developers@lists.sourceforge.net upload.sourceforge.net /incoming ../$(GEN_DIST_TAR_NAME).gz
392         @$(ECHO) -------------------------------------------------------
393         @$(ECHO) Now goto
394         @$(ECHO) https://sourceforge.net/project/admin/editpackages.php?group_id=11118
395         @$(ECHO) ... and release the files.
396         @$(ECHO) -------------------------------------------------------
397
398 # use with care
399 gen-clean:
400         $(RM) ../$(GEN_DIST_TAR_NAME)*
401
402 #############################################################################
403 # Tarball distribution: No CVS dirs, dotfiles, debian build dir,
404 # (FIXME:) only parts of the static / generated docs mix in doc/webserver
405 #############################################################################
406
407 tarball-dist: dist-check clean clobber
408         $(LN) -s `pwd` ../privoxy-$(VERSION)-$(CODE_STATUS)
409
410         for i in `find . -type f -a -not \( -path "*/CVS*" -o -name ".*" \
411         -o -path "*/debian/*" -o -path "*/actions/*" -o -name "*.php" -o \
412         -name "PACKAGERS" -o -path "*.git/*" \) | sort`; do \
413            files="$$files privoxy-$(VERSION)-$(CODE_STATUS)/$$i"; \
414         done &&  \
415         cd .. && $(TAR) -cvhf privoxy-$(VERSION)-$(CODE_STATUS)-src.tar $$files ; \
416
417 # and zip the archive
418         $(RM) ../privoxy-$(VERSION)-$(CODE_STATUS)
419         $(GZIP_PROG) ../privoxy-$(VERSION)-$(CODE_STATUS)-src.tar
420         @$(ECHO) Tarball distribution created.
421
422 # anonymously ncftps the tarball to sourceforge
423 tarball-upload:
424         ncftpput -u anonymous -p ijbswa-developers@lists.sourceforge.net upload.sourceforge.net /incoming ../privoxy-$(VERSION)-$(CODE_STATUS)-src.tar.gz
425         @$(ECHO) -------------------------------------------------------
426         @$(ECHO) Now goto
427         @$(ECHO) https://sourceforge.net/project/admin/editpackages.php?group_id=11118
428         @$(ECHO) ... and release the files.
429         @$(ECHO) -------------------------------------------------------
430
431 tarball-clean:
432         $(RM) ../privoxy-$(VERSION)-$(CODE_STATUS)-src.tar.gz
433
434 #############################################################################
435 #
436 # Documentation
437 #
438 # converts doc/source/*.sgml into html and man pages
439 #
440 #############################################################################
441
442 # developer manual
443 dok-devel:
444         $(RM) doc/webserver/developer-manual/*.html
445         $(RM) -r doc/source/developer-manual
446         mkdir -p doc/source/developer-manual
447         cd doc/source/developer-manual && $(DB) ../developer-manual.sgml && cd .. && cp developer-manual/*.html ../webserver/developer-manual/
448
449 # user manual
450 dok-user:
451         $(RM) doc/webserver/user-manual/*.html
452         $(RM) -r doc/source/user-manual/
453         mkdir -p doc/source/user-manual
454         cd doc/source/user-manual && $(DB) -iuser-man ../user-manual.sgml && cd .. && cp user-manual/*.html ../webserver/user-manual/
455         # FIXME: temp fix so same stylesheet gets in more than one place so it works
456         # for all doc set-ups, including the 'user manual' config option in local
457         # system where it MUST be in same directory as html.
458         $(PERL) -pi.bak -e 's/<\/head/\n<LINK REL=\"STYLESHEET\" TYPE=\"text\/css\" HREF=\"p_doc.css\">\n<\/head/i' doc/webserver/user-manual/*html && \
459         rm doc/webserver/user-manual/*html.bak
460
461 # faq
462 dok-faq:
463         $(RM) doc/webserver/faq/*.html
464         $(RM) -r doc/source/faq
465         mkdir -p doc/source/faq
466         cd doc/source/faq && $(DB) ../faq.sgml && cd .. && cp faq/*.html ../webserver/faq/
467
468 # man page, one variation. Try to use the next target, just 'make man'.
469 dok-man:
470         $(RM) doc/man/* doc/webserver/man-page/*.html
471         echo MAN2HTML is $(MAN2HTML)
472         @if [ $(MAN2HTML) != "false" ]; then \
473                 $(ECHO) "<html><head><title>Privoxy Man page</title><link rel=\"stylesheet\" type=\"text/css\" href=\"../p_web.css\"></head><body><H2>NAME</H2>" > doc/webserver/man-page/privoxy-man-page.html; \
474                 man ./$(MAN_PAGE) | $(MAN2HTML) -bare >> doc/webserver/man-page/privoxy-man-page.html; \
475                 $(ECHO) "</body></html>" >> doc/webserver/man-page/privoxy-man-page.html; \
476         else \
477                 $(MAKE) groff2html; \
478         fi;
479
480 # Build man page from sgml. This requires the SGMLSpm perl module.
481 # See CPAN, or your favorite perl repository. This is the preferred
482 # target for man page generation!
483 man: dok-release
484         mkdir -p doc/source/temp && cd doc/source/temp && $(RM) * ;\
485         nsgmls ../privoxy-man-page.sgml  | sgmlspl ../../../utils/docbook2man/docbook2man-spec.pl &&\
486         perl -pi.bak -e 's/ <URL:.*>//; s/\[ /\[/g' $(MAN_PAGE) ;\
487         perl -pi.bak -e "s/\[ /\[/g;s/á/\\\\['a]/g;s/é/\\\\['e]/g" $(MAN_PAGE); \
488         perl -pi.bak -e "s/ö/\\\\[:o]/g" $(MAN_PAGE); \
489         perl -pi.bak -e 's/([ {])-([a-z])/$$1\\-$$2/g' $(MAN_PAGE); \
490         perl -pi.bak -e 's/ --([a-z])/ \\-\\-$$1/g' $(MAN_PAGE); \
491         perl -pi.bak -e 's/\\fB--/\\fB\\-\\-/g' $(MAN_PAGE); \
492         $(DB) ../privoxy-man-page.sgml && $(MV) -f $(MAN_PAGE) ../../../$(MAN_PAGE)
493
494 # For those with man2html ala RH7s.
495 man2html:
496         mkdir -p doc/webserver/man-page
497         @if [ $(MAN2HTML) != "false" ]; then \
498                 $(MAN2HTML) $(MAN_PAGE) |grep -v "^Content-type" > tmp.html; \
499                 $(PERL) -pi.bak -e 's/<A .*Contents<\/A>//; s/<A .*man2html<\/A>/man2html/' tmp.html; \
500                 $(PERL) -pi.bak -e 's/(<\/HEAD>)/<LINK REL=\"STYLESHEET\" TYPE=\"text\/css\" HREF=\"..\/p_doc.css\"><\/HEAD>/' tmp.html; \
501                 $(PERL) -pi.bak -e 's/(<A.*),(">)/$$1$$2/g' tmp.html; \
502                 $(PERL) -pi.bak -e 's,\.">,">,g' tmp.html; \
503                 $(PERL) -pi.bak -e "s/\['a\]/\&aacute;/g;s/\['e\]/\&eacute;/g" tmp.html; \
504                 $(SED) -e 's/\a//g' tmp.html > doc/webserver/man-page/privoxy-man-page.html && $(RM) tmp.*; \
505         else \
506                 $(MAKE) groff2html; \
507         fi;
508
509 # Otherwise we get plain groff conversion.
510 groff2html:
511         $(G2H_CMD) ./$(MAN_PAGE) | $(SED) -e 's@</head>@<link REL="STYLESHEET" TYPE="text/css" HREF="../p_doc.css"></head>@' > doc/webserver/man-page/privoxy-man-page.html
512
513
514 # readme page and INSTALL file
515 dok-readme: dok-release
516         cd doc/source && $(DB)-notoc -V nochunks readme.sgml > tmp.html &&\
517         $(W3M_DUMP) tmp.html > ../../README ;\
518         $(DB)-notoc -V nochunks install.sgml > tmp.html &&\
519         $(W3M_DUMP) tmp.html > ../../INSTALL ;\
520         $(RM) tmp.*
521
522 # index.sgml is used to create both the Home Page, and a local index
523 # for documentation, etc.
524 #
525 # index.html for webserver:
526 dok-webserver:
527         cd doc/source/webserver && $(DB)-notoc -ip-homepage -V nochunks index.sgml > ../../webserver/index.html
528         $(PERL) -pi.bak -e 's/..\/p_doc.css/p_doc.css/;\
529         s/<\/HEAD/\n<meta name=\"description\" content=\"Privoxy helps users to protect their privacy.\"><\/HEAD/;\
530         s/\.\d\. //;\
531         s/__copy/&copy;/;\
532         s@(<SUB)@<p style="text-align: center">\1@; s@(</SUB)@\1></p@;\
533         s@ChameleonJohn@<br><a href="http://www.chameleonjohn.com/"><img align="middle"\
534  src="images/sponsors/chameleonjohn.png" alt="ChameleonJohn Coupons"></a><br>\n\
535 <a title="Privoxy FAQ: How to become a sponsor" href="/faq/general.html#SPONSOR">Become a sponsor</a>@' \
536      doc/webserver/index.html && $(RM) doc/webserver/*.bak
537
538 # privoxy-index.html for local documentation:
539 dok-index:
540         cd doc/source/webserver && $(DB)-notoc -ip-index -V nochunks index.sgml > ../../webserver/privoxy-index.html
541         $(PERL) -pi.bak -e 's/..\/p_doc.css/p_doc.css/;\
542         s/<\/HEAD/\n<meta name=\"description\" content=\"Privoxy helps users to protect their privacy.\"><\/HEAD/;\
543         s/\.\d\. //;\
544         s/__copy/&copy;/' \
545      doc/webserver/privoxy-index.html && $(RM) doc/webserver/*.bak
546
547 # Main documentation target.
548 dok: dok-release dok-devel dok-user dok-faq dok-readme dok-webserver dok-authors dok-index
549         @$(ECHO) Documentation created.
550
551 ## Make AUTHORS file
552 dok-authors:
553         cd doc/source && $(DB) -V nochunks authors.sgml > tmp.html && $(W3M_DUMP_UTF8) \
554           tmp.html > ../../AUTHORS && $(RM) tmp.html
555
556 # Set doc entities for VERSION and CODE_STATUS in sgml docs. Toggle content
557 # exceptions accordingly. This needs to go before any doc building (doh).
558 dok-release:
559         @$(ECHO) Setting doc version and status to $(VERSION), $(CODE_STATUS)
560         @$(PERL) -pi.bak -e 's/<!entity +p-version.*>/<!entity p-version "$(VERSION)">/;\
561      s/<!entity +p-status.*>/<!entity p-status "$(CODE_STATUS)">/' \
562      doc/source/*sgml doc/source/*/*sgml
563         $(RM) -r doc/source/*bak doc/source/*/*bak
564         @if [ $(CODE_STATUS) = "stable" ]; then \
565                 $(ECHO) Setting docs to stable $(VERSION); \
566                 $(PERL) -pi.bak -e 's/<!entity +% +p-stable.*>/<!entity % p-stable "INCLUDE">/;\
567                         s/<!entity +% +p-not-stable.*>/<!entity % p-not-stable "IGNORE">/' \
568                 doc/source/*sgml doc/source/*/*sgml; \
569         else \
570                 $(ECHO) Setting docs to not stable $(VERSION); \
571                 $(PERL) -pi.bak -e 's/<!entity +% +p-stable.*>/<!entity % p-stable "IGNORE">/; \
572                         s/<!entity +% +p-not-stable.*>/<!entity % p-not-stable "INCLUDE">/' \
573                 doc/source/*sgml doc/source/*/*sgml; \
574         fi;
575         $(RM) -r doc/source/*bak doc/source/*/*bak;
576
577 # The main Privoxy config file, generated from sgml sources.
578 # NOTE: This will require some hand editing.
579 config-file: dok-release generate-config-file
580
581         $(RM) config.bak config.html
582         @$(ECHO)  "****************************************************"
583         @$(ECHO)  "The config file has been optimistically updated"
584         @$(ECHO)  "Now -- you may need to hand edit the results!"
585         @$(ECHO)  "In particular, check the Debug levels, the"
586         @$(ECHO)  "permit-access, forward & socks examples and the"
587         @$(ECHO)  "various user-manual examples, which all"
588         @$(ECHO)  "might have gotten hammered."
589         @$(ECHO)  "****************************************************"
590
591 generate-config-file:
592         cd doc/source && $(DB)-notoc -iconfig-file -V nochunks config.sgml > ../../config.html
593         $(W3M_DUMP) -cols 67 config.html > config
594         $(PERL) -i.bak utils/prepare-configfile.pl config
595
596 #############################################################################
597 #
598 # Webserver
599 #
600 # moves documentation to webserver
601 #
602 #############################################################################
603 sf-shell:
604         @sf_name=$(SOURCE_FORGE_NAME); \
605         [ -n "$${sf_name}" ] || read -p "Enter SourceForge username: " sf_name || exit 1; \
606         echo "Opening shell for $${sf_name} ..."; \
607         ssh -t $${sf_name},ijbswa@shell.sourceforge.net create
608
609 webserver: clean-editor-files
610         @$(ECHO) -------------------------------------------------------
611         @$(ECHO) You will need to "create" a SF shell first:
612         @$(ECHO)    ssh -t SF-USER-ID,ijbswa@shell.sourceforge.net create
613         @$(ECHO) Please make sure your documentation files are up to date.
614         @$(ECHO) Note that this command updates the home page and copys
615         @$(ECHO) all stuff to the webserver, it will not remove obsolete documents.
616         @$(ECHO) Note that a botched upload can result in the documentation
617         @$(ECHO) on the website becoming unreachable! Also the CSS files
618         @$(ECHO) currently seem to end up at the wrong place.
619         @$(ECHO) -------------------------------------------------------
620
621         @$(ECHO) Replacing the user-manual symlink
622         @$(SSH) shell.sourceforge.net "cd $(WWW_ROOT)/htdocs && rm user-manual \
623          && mkdir -p $(VERSION)/user-manual && ln -s $(VERSION)/user-manual user-manual"
624
625         @$(ECHO) Uploading html
626         @cd doc/webserver; \
627           upload=`find . -type f -a -not \( -path "*/CVS*" -o -path "*/results*" \)`; \
628           $(TAR) cf - $$upload | $(SSH) shell.sourceforge.net 'cd $(WWW_ROOT)/htdocs/; tar xvm 2>&1 | grep -v timestamp'
629
630 web-actions:
631         @$(ECHO) Updating the actions on the webserver ...
632         @$(RSYNC) doc/webserver/actions/*.php shell.sourceforge.net:$(WWW_ROOT)/htdocs/actions
633
634 web-faq:
635         @$(ECHO) Updating the FAQ on the webserver ...
636         @$(RSYNC) doc/webserver/faq/*.html shell.sourceforge.net:$(WWW_ROOT)/htdocs/faq
637
638 web-user-manual:
639         @$(ECHO) Updating the user manual on the webserver (do not use in case of version changes) ...
640         @$(RSYNC) doc/webserver/user-manual/*.html shell.sourceforge.net:$(WWW_ROOT)/htdocs/user-manual/
641
642 #############################################################################
643 #
644 # Try to clean up the generated HTML files.
645 #
646 # The files are such a mess that some of them require two tidy runs in a
647 # row as the first one aborts prematurely. The vanilla tidy output renders
648 # poorly because it contains a bit too much whitespace, so we additionally
649 # run the files through perl to fix this again.
650 #
651 #############################################################################
652 dok-tidy:
653         for html_file in `find doc/webserver -name "*.html"`; do \
654                 $(TIDY) $$html_file || $(TIDY) $$html_file; \
655                 $(PERL) -i'' -e 's@^\s*<br>\s*$$@@; s@ +$$@@;' -n -p $$html_file; \
656         done
657
658
659 #############################################################################
660 # Source file dependencies
661 #############################################################################
662
663 actions.@OBJEXT@:   actions.c   actions.h   config.h $(PROJECT_H_DEPS) errlog.h filters.h jcc.h list.h loaders.h miscutil.h actionlist.h ssplit.h
664 cgi.@OBJEXT@:       cgi.c       cgi.h       config.h $(PROJECT_H_DEPS) cgiedit.h cgisimple.h jbsockets.h list.h pcrs.h encode.h ssplit.h jcc.h filters.h actions.h errlog.h miscutil.h
665 cgiedit.@OBJEXT@:   cgiedit.c   cgiedit.h   config.h $(PROJECT_H_DEPS) cgi.h list.h pcrs.h encode.h ssplit.h jcc.h filters.h actionlist.h actions.h errlog.h miscutil.h
666 cgisimple.@OBJEXT@: cgisimple.c cgisimple.h config.h $(PROJECT_H_DEPS) cgi.h list.h pcrs.h encode.h ssplit.h jcc.h filters.h actions.h errlog.h miscutil.h urlmatch.h
667 deanimate.@OBJEXT@: deanimate.c deanimate.h config.h $(PROJECT_H_DEPS)
668 encode.@OBJEXT@:    encode.c    encode.h    config.h
669 errlog.@OBJEXT@:    errlog.c    errlog.h    config.h $(PROJECT_H_DEPS) @WIN_ONLY@w32log.h
670 filters.@OBJEXT@:   filters.c   filters.h   config.h $(PROJECT_H_DEPS) errlog.h encode.h gateway.h jbsockets.h jcc.h loadcfg.h parsers.h ssplit.h cgi.h deanimate.h urlmatch.h @WIN_ONLY@win32.h
671 gateway.@OBJEXT@:   gateway.c   gateway.h   config.h $(PROJECT_H_DEPS) errlog.h jbsockets.h jcc.h loadcfg.h
672 jbsockets.@OBJEXT@: jbsockets.c jbsockets.h config.h $(PROJECT_H_DEPS) filters.h
673 jcc.@OBJEXT@:       jcc.c       jcc.h       config.h $(PROJECT_H_DEPS) errlog.h filters.h gateway.h jbsockets.h loadcfg.h loaders.h miscutil.h parsers.h @WIN_ONLY@w32log.h win32.h w32svrapi.h cgi.h
674 list.@OBJEXT@:      list.c      list.h      config.h $(PROJECT_H_DEPS) list.h miscutil.h
675 loadcfg.@OBJEXT@:   loadcfg.c   loadcfg.h   config.h $(PROJECT_H_DEPS) errlog.h filters.h gateway.h jbsockets.h jcc.h loaders.h miscutil.h parsers.h @WIN_ONLY@w32log.h win32.h
676 loaders.@OBJEXT@:   loaders.c   loaders.h   config.h $(PROJECT_H_DEPS) errlog.h encode.h filters.h gateway.h jcc.h loadcfg.h miscutil.h parsers.h ssplit.h
677 miscutil.@OBJEXT@:  miscutil.c  miscutil.h  config.h
678 parsers.@OBJEXT@:   parsers.c   parsers.h   config.h $(PROJECT_H_DEPS) errlog.h filters.h jbsockets.h jcc.h loadcfg.h loaders.h miscutil.h ssplit.h
679 ssplit.@OBJEXT@:    ssplit.c    ssplit.h    config.h miscutil.h
680 urlmatch.@OBJEXT@:  urlmatch.c  urlmatch.h  config.h $(PROJECT_H_DEPS) errlog.h miscutil.h ssplit.h
681
682 # GNU regex
683 gnu_regex.@OBJEXT@: gnu_regex.c gnu_regex.h config.h
684
685 # PCRS
686 pcrs.@OBJEXT@: pcrs.c pcrs.h config.h @STATIC_PCRE_ONLY@pcre/pcre.h
687
688 # PCRE
689 pcre/get.@OBJEXT@:        pcre/get.c        pcre/config.h pcre/internal.h pcre/pcre.h
690 pcre/maketables.@OBJEXT@: pcre/maketables.c pcre/config.h pcre/internal.h pcre/pcre.h
691 pcre/pcre.@OBJEXT@:       pcre/pcre.c       pcre/config.h pcre/internal.h pcre/pcre.h pcre/chartables.c
692 pcre/pcreposix.@OBJEXT@:  pcre/pcreposix.c  pcre/config.h pcre/internal.h pcre/pcre.h pcre/pcreposix.h
693 pcre/study.@OBJEXT@:      pcre/study.c      pcre/config.h pcre/internal.h pcre/pcre.h
694
695 # An auxiliary program makes the PCRE default character table source
696
697 pcre/chartables.c:   pcre/dftables@EXEEXT@
698                 pcre/dftables@EXEEXT@ >pcre/chartables.c
699
700 pcre/dftables@EXEEXT@:       pcre/dftables.c pcre/maketables.c pcre/pcre.h pcre/internal.h pcre/config.h
701                 $(CC) -o pcre/dftables@EXEEXT@ $(CFLAGS) pcre/dftables.c
702
703 # Win32
704 w32log.@OBJEXT@: w32log.c errlog.h config.h jcc.h loadcfg.h miscutil.h pcre/pcre.h pcre/pcreposix.h pcrs.h project.h w32log.h w32taskbar.h win32.h
705 w32taskbar.@OBJEXT@: w32taskbar.c config.h w32log.h w32taskbar.h
706 win32.@OBJEXT@: win32.c config.h jcc.h loadcfg.h pcre/pcre.h pcre/pcreposix.h pcrs.h project.h w32log.h win32.h w32svrapi.h
707
708 w32.res: w32.rc w32res.h icons/radar-01.ico icons/radar-02.ico icons/radar-03.ico icons/radar-04.ico icons/radar-05.ico icons/radar-06.ico icons/radar-07.ico icons/radar-08.ico icons/idle.ico icons/privoxy.ico config.h
709         windres -D__MINGW32__=0.2 -O coff -i $< -o $@
710
711 # AmigaOS
712 @AMIGAOS_ONLY@OBJS += amiga.o
713 @AMIGAOS_ONLY@ifeq ($(shell $(CC) -dumpmachine), m68k-amigaos)
714 @AMIGAOS_ONLY@CFLAGS += -D__AMIGAVERSION__=\"$(VERSION_MAJOR).$(VERSION_MINOR)$(VERSION_POINT)\" -D__AMIGADATE__=\"`date +%d.%m.%Y`\" -W -m68020 -noixemul -fbaserel -msmall-code
715 @AMIGAOS_ONLY@LDFLAGS += -m68020 -noixemul -fbaserel
716 @AMIGAOS_ONLY@LIBS = -lm /gg/lib/libb/libm020/libnix/swapstack.o
717 @AMIGAOS_ONLY@else
718 @AMIGAOS_ONLY@CFLAGS += -D__AMIGAVERSION__=\"$(VERSION_MAJOR).$(VERSION_MINOR)$(VERSION_POINT)\" -D__AMIGADATE__=\"`date +%d.%m.%Y`\" -Wextra -D__USE_INLINE__ -D__NO_INTUITION_RJ_MACROS
719 @AMIGAOS_ONLY@endif
720 @AMIGAOS_ONLY@amiga.o: amiga.c amiga.h config.h
721
722
723 $(PROGRAM): $(OBJS) $(W32_FILES)
724         $(LD) $(LDFLAGS) -o $(PROGRAM) $(OBJS) $(LIBS)
725
726 clean:
727         $(RM) a.out $(OBJS) $(W32_FILES) $(W32_INIS) $(PROGRAM) default.action \
728                 config.base config.tmp \
729                 `find . \( -name TAGS -o -name tags \) -a -not -path "./.git/*"` \
730                 `find . -name "*.orig" -a -not -name rc.privoxy.orig -a -not -path "./.git/*"`
731
732 clean-editor-files:
733         $(RM) `find . -name "*~"`
734         $(RM) `find . -name "#*#"` # Emacs backup files
735         $(RM) `find . -name ".\#*"`
736
737 clobber: clean-editor-files
738         $(RM) GNUmakefile configure config.h.in config.h config.cache config.status config.log logfile \
739               privoxy.log core *.tar.gz *.tar privoxy-cl.spec doc/source/ldp.dsl config.new
740         $(RM) -r autom4te.cache
741
742 #
743 # FIXME: What is all this?
744 #
745         $(RM) cscope.*  *.pdb *.lib *.exp
746
747 distclean: clobber
748
749 tags: $(SRCS) $(HDRS)
750         etags $(SRCS) $(HDRS)
751
752 CONF_DEST:=$(shell if [ "$(prefix)" = "/usr/local" ] && [ "$(CONF_BASE)" = "$(prefix)/etc" ];then \
753                 $(ECHO) "$(CONF_BASE)/privoxy";\
754          else\
755                  $(ECHO) "$(CONF_BASE)";\
756          fi)
757
758 LOG_DEST:=$(shell if [ "$(prefix)" = "/usr/local" ] && [ "$(LOGS_DEST)" = "$(prefix)/var/log/privoxy" ];then \
759                 $(ECHO) "/var/log/privoxy" ;\
760          else\
761                  $(ECHO) "$(LOGS_DEST)";\
762          fi)
763
764 PID_DEST:=$(shell if [ "$(prefix)" = "/usr/local" ] && [ "$(PIDS_DEST)" = "$(prefix)/var/run" ];then \
765                 $(ECHO) "/var/run" ;\
766          else\
767                  $(ECHO) "$(PIDS_DEST)";\
768          fi)
769
770 check_doc:=$(shell if [ ! -d "$(SHARE_DEST)/doc" ] && [ "$(prefix)" = "/usr/local" ]  && [ -d "$(prefix)/doc" ];then \
771                 $(ECHO) "1";\
772          else\
773                  $(ECHO) "0";\
774          fi)
775
776 # If USER is specified but no GROUP, assume there is a GROUP of same name.
777 GROUP_T:=$(shell if [ x$(GROUP) = x ] && [ x$(USER) != x ];then \
778                 $(ECHO) "$(USER)" ;\
779          else\
780                  $(ECHO) "$(GROUP)";\
781          fi)
782
783 install-strip:
784         $(MAKE) install STRIP=-s
785
786 # FIXME: Test USER and GROUP on Slack to make sure this works as
787 # intended.
788 #
789 # FIXME: id handling needs help, probably via configure, since 'id -u' is not
790 # universally reliable (eg Solaris). Group handling could be better.
791 # Perhaps the whole user/group validation should be done here, and simplified.
792 PROGRAM_V = Privoxy $(VERSION) $(CODE_STATUS)
793 install: CONF_DEST LOG_DEST PID_DEST check_doc GROUP_T
794         @# Quick test for valid USER.
795         @if [ -n "$(USER)" ]; then \
796                 $(ID) $(USER) >/dev/null || exit 1;\
797         fi
798         @# Test for valid group. FIXME. USER does not have to belong to GROUP
799         @# for file ownership purposes.
800 #       if [ -n "$(GROUP_T)" ] && [ -n "$(USER)" ] && ! $(GROUPS) $(USER) | $(GREP) "\<$(GROUP_T)\>" >/dev/null; then \
801 #               $(ECHO) Group $(GROUP_T) for User $(USER) is invalid && exit 1 ;\
802 #       fi
803
804         @$(ECHO) "Creating directories, and preparing $(PROGRAM_V) installation"
805         $(CHMOD) $(DIR_MODE) $(MKDIR)
806         @$(MKDIR) $(DESTDIR)$(SBIN_DEST) $(DESTDIR)$(prefix) $(DESTDIR)$(CONF_DEST) \
807                 $(DESTDIR)$(CONF_DEST)/templates $(DESTDIR)$(SHARE_DEST) \
808                 $(DESTDIR)$(LOG_DEST) $(DESTDIR)$(PID_DEST)
809         @# Install the executable binary, strip if invoked as install-strip
810         @test -n "$(STRIP)" &&\
811         $(ECHO) Installing $(PROGRAM) stripped executable to $(SBIN_DEST) ||\
812         $(ECHO) Installing $(PROGRAM) executable to $(DESTDIR)$(SBIN_DEST)
813         $(INSTALL) $(INSTALL_P) $(STRIP) $(PROGRAM) $(DESTDIR)$(SBIN_DEST)
814
815         @# Install the DOCS and man page. install-sh only does one file at a time.
816         @# FIXME: only handles jpegs.
817         -@if [ $(check_doc) = 0 ]; then \
818                 DOC=$(DOC_DEST) ;\
819         else \
820                 DOC=$(prefix)/doc/privoxy ;\
821         fi;\
822         $(MKDIR) $(DESTDIR)$$DOC $(DESTDIR)$$DOC/user-manual $(DESTDIR)$$DOC/faq $(DESTDIR)$$DOC/developer-manual \
823              $(DESTDIR)$$DOC/man-page $(DESTDIR)$$DOC/images $(DESTDIR)$(MAN_DEST) ;\
824         if [ -d "$(DOK_WEB)" ]; then \
825                 $(ECHO) Installing FAQ, Manual, and other docs to $(DESTDIR)$$DOC;\
826           for i in user-manual developer-manual faq; do \
827                for ii in $(DOK_WEB)/$$i/*html; do \
828                     $(INSTALL) $(INSTALL_T) $$ii $(DESTDIR)$$DOC/$$i;\
829                done ;\
830           done ;\
831                 for i in $(DOK_WEB)/user-manual/*jpg; do \
832                $(INSTALL) $(INSTALL_T) $$i $(DESTDIR)$$DOC/user-manual;\
833           done ;\
834                 $(INSTALL) $(INSTALL_T) $(DOK_WEB)/man-page/*html $(DESTDIR)$$DOC/man-page;\
835                 $(INSTALL) $(INSTALL_T) $(DOK_WEB)/privoxy-index.html $(DESTDIR)$$DOC/index.html;\
836                 $(INSTALL) $(INSTALL_T) AUTHORS $(DESTDIR)$$DOC;\
837                 $(INSTALL) $(INSTALL_T) LICENSE $(DESTDIR)$$DOC;\
838                 $(INSTALL) $(INSTALL_T) README $(DESTDIR)$$DOC;\
839                 $(INSTALL) $(INSTALL_T) ChangeLog $(DESTDIR)$$DOC;\
840                 $(INSTALL) $(INSTALL_T) $(DOK_WEB)/p_doc.css $(DESTDIR)$$DOC;\
841                 $(INSTALL) $(INSTALL_T) $(DOK_WEB)/p_doc.css $(DESTDIR)$$DOC/user-manual;\
842         fi
843         @# Not all platforms support gzipped man pages.
844         @$(ECHO) Installing man page to $(DESTDIR)$(MAN_DEST)/$(MAN_PAGE)
845         -$(INSTALL) $(INSTALL_T) $(MAN_PAGE)  $(DESTDIR)$(MAN_DEST)/$(MAN_PAGE)
846
847         @# Change the config file default directories according to the configured ones
848         @$(ECHO) Rewriting config for this installation
849         @if [ -f config.base ] ; then \
850                 $(CAT) config >config~ ;\
851                 $(MV) config.base config ;\
852         fi
853         $(SED) 's+^confdir \.+confdir $(CONF_DEST)+' config | \
854         $(SED) 's+^logdir \.+logdir $(LOG_DEST)+' >config.tmp
855         -@if [ $(check_doc) = 0 ]; then \
856       $(SED) 's+^#\?user-manual .*+user-manual $(DOC_DEST)/user-manual/+' config.tmp >config.updated ;\
857         else \
858       $(SED) 's+^#\?user-manual .*+user-manual $(prefix)/doc/privoxy/user-manual/+' config.tmp >config.updated ;\
859         fi;\
860         $(MV) config config.base
861         $(MV) config.updated config
862
863         @# Install the config support files. Test for root install, and abort
864         @# if there is no privoxy user, and no other user was enabled during
865         @# configure. Later, install init script if appropriate.
866         @$(ECHO) Installing templates to $(DESTDIR)$(CONF_DEST)/templates
867         @for i in `find templates -type f`; do \
868                 $(INSTALL) $(INSTALL_T) $$i $(DESTDIR)$(CONF_DEST)/templates ;\
869         done
870
871         @# FIXME: group/user validation is overly convoluted.
872         @# If superuser install ... we require a minimum of group ownership
873         @# of those files the daemon writes to, to be non-root owned.
874         @if [ "`$(ID) |sed 's/(.*//' |sed 's/.*=//'`" = "0" ] ;then\
875                 if [ x$(USER) = x ] || [ $(USER) = root ]; then \
876                         if [ x$(GROUP) = x ] || [ $(GROUP) = root ]; then \
877                                 if [ "`$(ID) privoxy`" ] && \
878                                         $(GROUPS) privoxy | $(SED) 's/^.*://' |$(GREP) "\<privoxy\>" >/dev/null; then \
879                                         $(ECHO) "Warning: Setting group owner to privoxy";\
880                                         GROUP_T=privoxy ;\
881                                 else \
882                                         $(ECHO)  "******************************************************************" ;\
883                                         $(ECHO)  " WARNING! WARNING! installing config files as root!" ;\
884                                         $(ECHO)  " It is strongly recommended to run $(PROGRAM) as a non-root user," ;\
885                                         $(ECHO)  " and to install the config files as that user and/or group!" ;\
886                                         $(ECHO)  " Please read INSTALL, and create a privoxy user and group!" ;\
887                                         $(ECHO)  "*******************************************************************" ;\
888                                         exit 1 ;\
889                                 fi ;\
890                         else \
891                                 GROUP_T=$(GROUP) ;\
892                         fi ;\
893                         INSTALL_CONF="$(INSTALL_R) -g $$GROUP_T " ;\
894                 else \
895                         $(ECHO) "Superuser install, installing config files as $(USER):$(GROUP_T)" ;\
896                         INSTALL_CONF="$(INSTALL_R) -o $(USER) -g $(GROUP_T)" ;\
897                         GROUP_T=$(GROUP_T) ;\
898                 fi ;\
899         else \
900                 if [ ! "`id $(USER)`" = "`id`" ] ;then \
901                         $(ECHO) "** WARNING ** current install user different from configured user!!" ;\
902                         $(ECHO) "Edit may fail." ;\
903                 fi ;\
904                 INSTALL_CONF="$(INSTALL_R)" ;\
905         fi ;\
906         $(ECHO) Installing configuration files to $(DESTDIR)$(CONF_DEST);\
907         for i in $(CONFIGS); do \
908                 if [ "$$i" = "default.action" ] || [ "$$i" = "default.filter" ] ; then \
909                         $(RM) $(DESTDIR)$(CONF_DEST)/$$i ;\
910                         $(ECHO) Installing fresh $$i;\
911                         $(INSTALL) $$INSTALL_CONF $$i $(DESTDIR)$(CONF_DEST) || exit 1;\
912                 elif [ -s "$(CONF_DEST)/$$i" ]; then \
913                         $(ECHO) Installing $$i as $$i.new ;\
914                         $(INSTALL) $$INSTALL_CONF $$i $(DESTDIR)$(CONF_DEST)/$$i.new || exit 1;\
915                         NEW=1;\
916                 else \
917                         $(INSTALL) $$INSTALL_CONF $$i $(DESTDIR)$(CONF_DEST) || exit 1;\
918                 fi ;\
919         done ;\
920         if [ -n "$$NEW" ]; then \
921                 $(CHMOD) $(RWD_MODE) $(DESTDIR)$(CONF_DEST)/*.new || exit 1 ;\
922                 $(ECHO) "Warning: Older config files are preserved. Check new versions for changes!" ;\
923         fi ;\
924         [ ! -f $(DESTDIR)$(LOG_DEST)/logfile ] && $(ECHO) Creating logfiles in $(DESTDIR)$(LOG_DEST) || \
925                 $(ECHO) Checking logfiles in $(DESTDIR)$(LOG_DEST) ;\
926                 $(TOUCH) $(DESTDIR)$(LOG_DEST)/logfile || exit 1 ;\
927         if [ x$$USER != x ]; then \
928                 $(CHOWN) $$USER $(DESTDIR)$(LOG_DEST)/logfile || \
929                 $(ECHO) "** WARNING ** current install user different from configured user. Logging may fail!!" ;\
930         fi ;\
931         if [ x$$GROUP_T != x ]; then \
932                 $(CHGRP) $$GROUP_T $(DESTDIR)$(LOG_DEST)/logfile || \
933                 $(ECHO) "** WARNING ** current install user different from configured user. Logging may fail!!" ;\
934         fi ;\
935         $(CHMOD) $(RWD_MODE) $(DESTDIR)$(LOG_DEST)/logfile || exit 1 ;\
936         if [ "$(prefix)" = "/usr/local" ] || [ "$(prefix)" = "/usr" ]; then \
937                 if [ -f /etc/slackware-version ] && [ -d /etc/rc.d/ ] && [ -w /etc/rc.d/ ] ; then \
938                $(SED) 's+%PROGRAM%+$(PROGRAM)+' slackware/rc.privoxy.orig | \
939                $(SED) 's+%SBIN_DEST%+$(SBIN_DEST)+' | \
940                $(SED) 's+%CONF_DEST%+$(CONF_DEST)+' | \
941                $(SED) 's+%USER%+$(USER)+' | \
942                $(SED) 's+%GROUP%+$(GROUP_T)+' >slackware/rc.privoxy ;\
943                         $(INSTALL) $(INSTALL_P) slackware/rc.privoxy $(DESTDIR)/etc/rc.d/ ;\
944                $(ECHO) "Installing for Slackware." ;\
945                $(ECHO) "Dont forget to add the rc.privoxy to rc.local if you want it started at every boot" ;\
946                 elif [ -d $(DESTDIR)/etc/init.d ] && [ -w $(DESTDIR)/etc/init.d ] ; then \
947                         $(ECHO) "Installing generic init script to $(DESTDIR)/etc/init.d/privoxy" ;\
948                         $(ECHO) "Please check that the PATHs are correct, and edit if needed." ;\
949                         $(INSTALL) $(INSTALL_P) privoxy-generic.init $(DESTDIR)/etc/init.d/privoxy ;\
950                 fi ;\
951         else \
952                 $(ECHO) "No init script installed, install it manually if needed" ;\
953         fi
954         $(RM) config.base config.tmp
955         @# mmmmm, good.
956         @$(ECHO) "$(PROGRAM_V) installation succeeded!"
957         @$(ECHO) "The Privoxy configuration files have been installed in $(DESTDIR)$(CONF_DEST)"
958
959 # rmdir is used as a precaution since it will not remove non-empty
960 # directories. RH init script creates lock file and pid file.
961 uninstall: CONF_DEST LOG_DEST PID_DEST check_doc
962         @$(ECHO) Starting Privoxy uninstallation
963         @# KILL privoxy if running
964         @# XXX: the chkconfig line may need a DESTDIR prefix.
965         -@test -f $(DESTDIR)$(PID_DEST)/privoxy.pid && $(ECHO) Stopping $(PROGRAM) &&\
966          $(KILL) `$(CAT) $(DESTDIR)$(PID_DEST)/privoxy.pid` || :
967         -@test -f $(DESTDIR)/var/run/privoxy.pid && $(ECHO) Stopping $(PROGRAM) &&\
968           $(KILL) `$(CAT) $(DESTDIR)/var/run/privoxy.pid ` || :
969
970         @# Program binary
971         @$(ECHO) Removing $(PROGRAM) binary
972         $(RM) $(DESTDIR)$(SBIN_DEST)/$(PROGRAM) $(SBIN_DEST)/$(PROGRAM)~
973
974         @# config files and dir, and maybe old install backups
975         -@if [ -d $(DESTDIR)$(CONF_DEST) ]; then \
976                 $(ECHO) Saving $(PROGRAM) config files to $(DESTDIR)/tmp/$(PROGRAM)-save ;\
977                 $(MKDIR) $(DESTDIR)/tmp/$(PROGRAM)-save ;\
978                 cd $(DESTDIR)$(CONF_DEST) ;\
979                 for i in $(DESTDIR)$(CONFIGS); do \
980                         [ -f $$i ] && $(CP) $$i $(DESTDIR)/tmp/$(PROGRAM)-save ;\
981                 done ;\
982         fi
983         @$(ECHO) Removing $(PROGRAM) config files
984         -@for i in $(DESTDIR)$(CONFIGS); do \
985                 test -f $(CONF_DEST)/$$i && $(ECHO) Removing $$i ;\
986                 $(RM) $(DESTDIR)$(CONF_DEST)/$$i $(DESTDIR)$(CONF_DEST)/$$i~ $(DESTDIR)$(CONF_DEST)/$$i.new ;\
987         done
988         -@test -d $(DESTDIR)$(CONF_DEST)/templates && $(RM) -r $(DESTDIR)$(CONF_DEST)/templates &&\
989         $(ECHO) "Removing $(DESTDIR)$(CONF_DEST)/templates/*"
990
991         @# man page and docs
992         @$(ECHO) Removing $(PROGRAM) docs
993         -$(RM) $(DESTDIR)$(MAN_DEST)/$(MAN_PAGE)*
994         -$(RM) -r $(DESTDIR)$(DOC_DEST) || $(RM) -r $(DESTDIR)$(prefix)/doc/privoxy
995
996         @# Log and pidfile
997         @$(ECHO) Removing $(PROGRAM) logs
998         -$(RM) $(DESTDIR)$(LOG_DEST)/logfile $(DESTDIR)$(PID_DEST)/privoxy.pid
999
1000         @# Final clean up of unused directories. Special handling of CONF and LOG
1001      # destinations.
1002         @$(ECHO) Removing $(PROGRAM) directories
1003         @for i in $(DESTDIR)$(LOG_DEST) $(DESTDIR)$(CONF_DEST); do \
1004                 if test -d $$i; then \
1005                         $(ECHO) Removing $$i ;\
1006                         $(RMDIR) $$i || $(ECHO) "$$i is not empty, not removed" ;\
1007                 fi;\
1008         done
1009         @if [  ! "$(prefix)" = "/usr/local" ] ;then \
1010                 for i in $(DESTDIR)$(MAN_DEST) $(DESTDIR)$(MAN_DIR) $(DESTDIR)$(SHARE_DEST)/doc \
1011                          $(DESTDIR)$(SHARE_DEST) $(DESTDIR)$(SBIN_DEST); do \
1012                         if test -d $$i; then \
1013                                 $(ECHO) Removing $$i ;\
1014                                 $(RMDIR) $$i || $(ECHO) "$$i is not empty, not removed" ;\
1015                         fi;\
1016                 done;\
1017                 if test $(LOG_DEST) != /var/log/privoxy && test -d $(DESTDIR)$(prefix)/var/log; then \
1018                         $(ECHO) Removing $(DESTDIR)$(prefix)/var/log ;\
1019                         $(RMDIR) $(DESTDIR)$(prefix)/var/log || $(ECHO) "$(DESTDIR)$(prefix)/var/log is not empty, not removed";\
1020                 fi ;\
1021                 if test $(PID_DEST) != /var/run && test -d $(DESTDIR)$(prefix)/var/run; then \
1022                         $(ECHO) Removing $(DESTDIR)$(prefix)/var/run ;\
1023                         $(RMDIR) $(DESTDIR)$(prefix)/var/run || $(ECHO) "$(DESTDIR)$(prefix)/var/run is not empty, not removed";\
1024                 fi ;\
1025                 if test $(prefix)/var != /var && test -d $(DESTDIR)$(prefix)/var; then \
1026                         $(ECHO) Removing $(DESTDIR)$(prefix)/var ;\
1027                         $(RMDIR) $(DESTDIR)$(prefix)/var || $(ECHO) "$(DESTDIR)$(prefix)/var is not empty, not removed" ;\
1028                 fi ;\
1029                 if test $(prefix) != / && test $(prefix) != /usr && test -d $(DESTDIR)$(prefix); then \
1030                         $(ECHO) Removing $(DESTDIR)$(prefix) ;\
1031                         $(ECHO) Removing installation directory $(DESTDIR)$(prefix) ;\
1032                         $(RMDIR) $(DESTDIR)$(prefix) || $(ECHO) "$(DESTDIR)$(prefix) is not empty, not removed" ;\
1033                 fi;\
1034         fi
1035
1036         @# init scripts
1037         @if [ "$(prefix)" = "/usr/local" ] || [ "$(prefix)" = "/usr" ]; then \
1038                 $(ECHO) Removing $(PROGRAM) init script ;\
1039                 if [ -f $(DESTDIR)/etc/slackware-version ] && \
1040                         [ -d $(DESTDIR)/etc/rc.d/ ]  && [ -w $(DESTDIR)/etc/rc.d/ ] ; then \
1041                         $(RM) $(DESTDIR)/etc/rc.d/rc.privoxy ;\
1042                 elif [ -d $(DESTDIR)/etc/init.d ] && [ -w $(DESTDIR)/etc/init.d ] ; then \
1043                         $(RM) $(DESTDIR)/etc/init.d/privoxy ;\
1044                 else \
1045                         $(ECHO) "Unable to remove privoxy init script, not installed or permission denied" ;\
1046                 fi ;\
1047         fi
1048         @$(ECHO) Privoxy uninstalled, bye
1049
1050 coffee:
1051          @perl  -e 'print pack "C*", (31,139,8,8,153,63,226,60,2,3,99,111,102,102,101,'  \
1052                 -e '101,0,109,143,205,13,192,32,8,133,239,78,241,110,234,1,28,160,171,'  \
1053                 -e '152,208,53,26,117,247,22,165,73,137,125,9,1,62,126,2,128,169,5,243,' \
1054                 -e '143,13,139,49,164,65,100,149,152,102,73,141,88,73,178,116,205,100,'  \
1055                 -e '69,253,36,102,81,49,83,236,19,225,171,131,214,172,163,73,4,168,123,' \
1056                 -e '115,71,126,247,122,94,128,178,227,95,154,12,86,215,122,197,249,146,' \
1057                 -e '187,54,220,125,193,51,228,11,1,0,0);' | zcat