Freshly built HTML docs for 3.0.5 beta.
[privoxy.git] / GNUmakefile.in
1 # Note:  Makefile is built automatically from Makefile.in
2 #
3 # $Id: GNUmakefile.in,v 1.146 2006/09/08 23:57:19 hal9 Exp $
4 #
5 # Written by and Copyright (C) 2001 - 2004 the SourceForge
6 # Privoxy team. http://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 RPM_VERSION   = $(VERSION)
46 RPM_PACKAGEV  = ""
47 SNAPVERSION   = $(RPM_VERSION)-$(shell date "+%Y%m%d")
48
49
50 #############################################################################
51 # "make install" directories and variables
52 #############################################################################
53
54 #User Group paras
55 USER         = @USER@
56 GROUP      = @GROUP@
57
58 prefix       = @prefix@
59 exec_prefix  = @exec_prefix@
60 CONF_BASE    = @sysconfdir@
61 SBIN_DEST    = @sbindir@
62 MAN_DIR      = @mandir@
63 MAN_DEST     = $(MAN_DIR)/man1
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   = 0664
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 RPM        = rpm
125 RPMBUILD   = rpmbuild
126 MV            = mv
127 TAR        = tar
128 LN         = ln
129 TOUCH      = touch
130 KILL       = kill
131 CHMOD      = chmod
132 CHOWN      = chown
133 CHGRP      = chgrp
134 GROUPS     = groups
135 WDUMP      = @WDUMP@ -dump
136 JADECAT    = @JADECAT@
137 JADEBIN    = @JADEBIN@
138 DB         = $(JADEBIN) $(JADECAT) -ihtml -t sgml  -D.. -d ldp.dsl\#html
139 DB2HTML    = @DB2HTML@
140 MAN2HTML   = @MAN2HTML@
141 G2H_CMD    = groff -mandoc -Thtml
142 TARGET_OS  = @host@
143 PERL       = perl
144 DOC_DIR  = doc/source
145 DOC_TMP    = $(DOC_DIR)/tmp
146 DOC_STATUS = @DOC_STATUS@
147
148 # Program to do LF->CRLF
149 #
150 # The sed version should be the most portable, but it doesn't for for me,
151 # the other two do.  FIXME.
152 #   - Jon
153 #DOSFILTER  = $(SED) -e $$'s,$$,\r,'
154 #DOSFILTER  = gawk -v ORS='\r\n' '{print $0;}'
155 DOSFILTER  = $(PERL) -p -e 's/\n/\r\n/'
156 CVSROOT    = :pserver:anonymous@cvs.ijbswa.sourceforge.net:/cvsroot/ijbswa
157 #TMPDIR     := $(shell mktemp -d /tmp/$(PROGRAM).XXXXXX)
158
159 #############################################################################
160 # Setup for make distribution rh and suse for now 
161 #############################################################################
162
163 TAR_ARCH = /tmp/privoxy-$(RPM_VERSION).tar.gz
164 RPM_BASE = @RPM_BASE@
165
166 #############################################################################
167 # We include these files in our distributions
168 #############################################################################
169 CONFIGS = config trust default.action standard.action user.action default.filter user.filter
170 # take care that no CVS .cvsignore or other crappy files
171 # are included here
172 # and escape every '#' in the find. doh.
173 CONFIG_FILES = $(CONFIGS) \
174                 `find templates/ -type f | grep -v "CVS" | grep -v "\.\#" | grep -v ".*~" | grep -v ".cvsignore" | grep -v "TAGS"`
175
176 DOC_FILES = AUTHORS LICENSE README ChangeLog INSTALL \
177                 `find doc/text/ -type f | grep -v "CVS" | grep -v "\.\#" | grep -v ".*~" | grep -v ".cvsignore" | grep -v "TAGS"` \
178                 `find doc/webserver/ -name "*.html" | grep -v "\(webserver\|team\)\/index\.html"` \
179                 `find doc/webserver/ -name "*.css"` \
180                 privoxy.1 \
181                 doc/pdf/*.pdf
182
183 #############################################################################
184 # Filenames and libraries
185 #############################################################################
186
187 C_SRC  = actions.c cgi.c cgiedit.c cgisimple.c deanimate.c encode.c \
188          errlog.c filters.c gateway.c jbsockets.c jcc.c killpopup.c \
189          list.c loadcfg.c loaders.c miscutil.c parsers.c ssplit.c \
190          urlmatch.c
191
192 C_OBJS = $(C_SRC:.c=.@OBJEXT@)
193 C_HDRS = $(C_SRC:.c=.h) project.h actionlist.h
194
195 W32_SRC   = @WIN_ONLY@w32log.c w32taskbar.c win32.c w32svrapi.c
196 W32_FILES = @WIN_ONLY@w32.res
197 W32_OBJS  = @WIN_ONLY@$(W32_SRC:.c=.@OBJEXT@) $(W32_FILES)
198 W32_HDRS  = @WIN_ONLY@w32log.h w32taskbar.h win32.h w32res.h w32svrapi.h
199 W32_LIB   = @WIN_ONLY@-lwsock32 -lcomctl32
200 W32_INIS  = @WIN_ONLY@config.txt trust.txt
201
202 PCRS_SRC     = @STATIC_PCRS_ONLY@pcrs.c
203 PCRS_OBJS    = @STATIC_PCRS_ONLY@$(PCRS_SRC:.c=.@OBJEXT@)
204 PCRS_HDRS    = @STATIC_PCRS_ONLY@$(PCRS_SRC:.c=.h)
205
206 PCRE_SRC     = @STATIC_PCRE_ONLY@pcre/get.c pcre/maketables.c pcre/study.c pcre/pcre.c
207 PCRE_OBJS    = @STATIC_PCRE_ONLY@$(PCRE_SRC:.c=.@OBJEXT@)
208 PCRE_HDRS    = @STATIC_PCRE_ONLY@pcre/config.h pcre/chartables.c pcre/internal.h pcre/pcre.h
209
210 # No REGEX (maybe because dynamically linked pcreposix):
211 REGEX_SRC    =
212 @STATIC_PCRE_ONLY@REGEX_SRC = pcre/pcreposix.c
213
214 REGEX_OBJS   = $(REGEX_SRC:.c=.@OBJEXT@)
215 REGEX_HDRS   = $(REGEX_SRC:.c=.h)
216
217 # Dependencies introduced by #include "project.h".
218 PROJECT_H_DEPS = project.h $(REGEX_HDRS) $(PCRS_HDRS) @STATIC_PCRE_ONLY@pcre/pcre.h
219
220 # Socket libraries for platforms that need them explicitly defined
221 SOCKET_LIB   = @SOCKET_LIB@
222
223 # PThreads library, if needed.
224 PTHREAD_LIB  = @PTHREAD_ONLY@@PTHREAD_LIB@
225
226 SRCS         = $(C_SRC)  $(W32_SRC)  $(PCRS_SRC)  $(PCRE_SRC)  $(REGEX_SRC)
227 OBJS         = $(C_OBJS) $(W32_OBJS) $(PCRS_OBJS) $(PCRE_OBJS) $(REGEX_OBJS)
228 HDRS         = $(C_HDRS) $(W32_HDRS) $(PCRS_HDRS) $(PCRE_OBJS) $(REGEX_HDRS)
229 LIBS         = @LIBS@ $(W32_LIB) $(SOCKET_LIB) $(PTHREAD_LIB)
230
231
232 #############################################################################
233 # Compiler switches
234 #############################################################################
235
236 # The flag "-mno-win32" can be used by Cygwin to emulate a un?x type build.
237 # The flag "-mwindows -mno-cygwin" will cause Cygwin to use MingW32 for a
238 # Win32 GUI build.
239 # The flag "-pthread" is required if using Pthreads under Linux (and
240 # possibly other OSs).
241 SPECIAL_CFLAGS = @SPECIAL_CFLAGS@
242
243 # Add your flags here 
244 OTHER_CFLAGS =   
245
246 CFLAGS = @CFLAGS@ @CPPFLAGS@ $(OTHER_CFLAGS) $(SPECIAL_CFLAGS) -Wall \
247          @STATIC_PCRE_ONLY@ -Ipcre 
248
249 LDFLAGS = $(DEBUG_CFLAGS) $(SPECIAL_CFLAGS)
250
251
252 #############################################################################
253 # Build section.
254 #
255 # There should NOT be any targets above this line.
256 #############################################################################
257 all: $(PROGRAM) default.action
258
259
260 #############################################################################
261 # Phony targets
262 #############################################################################
263 .PHONY: all inifiles redhat-dist redhat-upload solaris-dist suse-dist \
264 suse-upload win-dist tarball-dist dok redhat-dok webserver clean clobber tags \
265 install conectiva-spec conectiva-dist conectiva-upload CONF_DEST LOG_DEST \
266 PID_DEST check_doc install-strip uninstall GROUP_T
267
268 #############################################################################
269 # Define this explicitly because Solaris is broken!
270 #############################################################################
271 %.o: %.c
272         $(CC) -c $(CFLAGS) $(CPPFLAGS) $< -o $@
273
274
275 #############################################################################
276 # Strip master copy comments from default.action:
277 #############################################################################
278 default.action: default.action.master
279         $(GREP) -v '^#MASTER#' $< > $@
280
281 #############################################################################
282 # Win32 config files
283 #############################################################################
284
285 inifiles: $(W32_INIS)
286
287 config.txt: config
288         $(SED) -e 's!\trustfile trust!trustfile trust.txt!' \
289                -e 's!\jarfile jarfile!jarfile jar.log!' \
290                -e 's!\logfile logfile!logfile privoxy.log!' \
291                -e 's!#Win32-only: !!' \
292                < $< | \
293                $(DOSFILTER) > $@
294         # LF to CRLF in default.action
295         $(DOSFILTER) <default.action >default.action.txt && mv default.action.txt default.action
296         # LF to CRLF in default.filter
297         $(DOSFILTER) <default.filter >default.filter.txt && mv default.filter.txt default.filter
298
299 trust.txt: trust
300         $(DOSFILTER) < $< > $@ 
301
302 #############################################################################
303 # Pre-dist check:
304 #############################################################################
305 dist-check:
306         @if [ -d CVS ]; then \
307            $(ECHO) "***************************************************"; \
308            $(ECHO) "***                                             ***"; \
309            $(ECHO) "***                  WARNING                    ***"; \
310            $(ECHO) "***                                             ***"; \
311            $(ECHO) "*** The presence of a CVS subdirectory suggests ***"; \
312            $(ECHO) "*** that you are trying to build a distribution ***"; \
313            $(ECHO) "*** package based on a checked out, not an      ***"; \
314            $(ECHO) "*** exported copy of the source tree. Please    ***"; \
315            $(ECHO) "*** see \"Releasing a new version\" in the        ***"; \
316            $(ECHO) "*** developer manual.                           ***"; \
317            $(ECHO) "***                                             ***"; \
318            $(ECHO) "***************************************************"; \
319            $(ECHO) "Type \"yes i am sure\" if you are sure that you"; \
320            $(ECHO) -n "really want to proceed: "; \
321            read answer; \
322            if [ "$$answer" != "yes i am sure" ]; then exit 1; fi \
323          fi;
324
325
326 #############################################################################
327 # create tar.gz from CVS:
328 # This make-target is usually called through 'create-archive'. If you 
329 # run 'make create-snapshot' without setting SNAPVERSION, you'll get a
330 # tar.gz with the current date in the name and as a releasenumber in the 
331 # spec-file. But the main usage is to run it as follows (Red Hat example):
332 # make SNAPVERSION=1.6x create-snapshot
333 # This creates a tar.gz and spec-file for a Red Hat 6.x version.
334 #############################################################################
335 create-snapshot:
336         TMPDIR=$(shell mktemp -d /tmp/$(PROGRAM).XXXXXX)
337         @tag=`cvs -d $(CVSROOT) status Makefile | awk ' /Sticky Tag/ { print $$3 } '` 2> /dev/null; \
338         [ x"$$tag" = x"(none)" ] && tag=HEAD; \
339         echo "*** Creating package from $$tag!"; \
340         cd $(TMPDIR) ; cvs -Q -d $(CVSROOT) export -r $$tag current || echo "Um... export aborted."
341         @cd $(TMPDIR)/current; \
342         TMPFILE=$$(mktemp -q /tmp/$(PROGRAM).XXXXXX); \
343         if $(SED) -e 's/^\(Version:\).*/\1 $(RPM_VERSION)/g' \
344                 -e 's/^\(Release:\).*/\1 $(SNAPVERSION)/g' \
345                 privoxy-rh.spec > $$TMPFILE ; then \
346                         $(MV) -f $$TMPFILE privoxy-rh.spec; \
347         else \
348                 $(ECHO) "Could not set version info in specfile."; \
349                 exit 1;\
350         fi;\
351         if $(SED) -e 's/^\(Version:\).*/\1 $(RPM_VERSION)/g' \
352              -e 's/^\(Release:\).*/\1 $(SNAPVERSION)/g' \
353               privoxy-suse.spec > $$TMPFILE ; then \
354                         $(MV) -f $$TMPFILE privoxy-suse.spec; \
355         else \
356                 $(ECHO) "Could not set version info in specfile."; \
357                 exit 1;\
358         fi; \
359         $(RM) $(TMPFILE); \
360         cd $(TMPDIR)/current; \
361         $(TAR) --exclude ".cvsignore" --exclude "CVS" --exclude \
362                 "privoxy-suse.spec" -czf $(TMPDIR)/$(PROGRAM)-rh-$(VERSION).tar.gz .; \
363         $(TAR) --exclude ".cvsignore" --exclude "CVS" --exclude \
364                 "privoxy-rh.spec" -czf $(TMPDIR)/$(PROGRAM)-suse-$(VERSION).tar.gz .
365         @$(MV) -f $(TMPDIR)/$(PROGRAM)-rh-$(VERSION).tar.gz .
366         @$(MV) -f $(TMPDIR)/$(PROGRAM)-suse-$(VERSION).tar.gz .
367         @$(RM) -rf $(TMPDIR)
368         @echo "Resulting files are $(PROGRAM)-rh-$(VERSION).tar.gz and"
369         @echo "                    $(PROGRAM)-suse-$(VERSION).tar.gz"
370
371
372 #############################################################################
373 # looks at the version of Makefile and exports a corresponding source-tree
374 # example: if the Makefile has the sticky tag v_2_9_13, you'll get 
375 # privoxy-*-2.4.13.tar.gz. Two different tar files will be written, one for
376 # Red Hat and one for SuSe (different spec-files)
377 #############################################################################
378 create-archive:
379         make SNAPVERSION=$(SNAPVERSION) create-snapshot
380
381 #############################################################################
382 # RPM specifice stuff (SuSE or Redhat, ..)
383 #############################################################################
384 rpm-stuff: dist-check clean clobber 
385         for dir in RPMS SRPMS BUILD SOURCES SPECS; do \
386                 if [ ! -w $(RPM_BASE)/$$dir ]; then \
387                         $(ECHO) "$(RPM_BASE)/$$dir is not writable for you. Maybe try as root."; \
388                         $(ECHO) "Or add a suitable path to .rpmmacros like."; \
389                         $(ECHO) "%_topdir /home/foo/rpm-build"; \
390                         exit 1; \
391                 fi; \
392         done; \
393
394 check-release:
395         @if [ "$(RPM_PACKAGEV)" = "" ]; then \
396                 echo ; \
397                 echo "  ERROR: NO RPM_PACKAGEV VALUE"; \
398                 echo "  No value given for RPM_PACKAGEV. Please use:"; \
399                 echo "  make dist-upload RPM_PACKAGEV=release"; \
400                 echo "  where \"release\" is the release number you want to and"; \
401                 echo "  where \"dist\" is the name of the distro (redhat or suse)"; \
402                 echo ; \
403                 echo "  Ex: make redhat-upload RPM_PACKAGEV=1"; \
404                 echo ""; \
405                 echo "ATTENTION: If your distribution use a specific tag on the"; \
406                 echo "           release field (like \"cl\" for Conectiva, and"; \
407                 echo "           \"mdk\" for Mandrake), DO NOT put it on the value"; \
408                 echo "           given to RPM_PACKAGEV. It will be added automaticaly."; \
409                 echo "           Do it like you would do for a redhat package,"; \
410                 echo "           (i.e. just the number)."; \
411                 echo ; \
412                 exit 1; \
413         fi
414
415
416 #############################################################################
417 # Create Conectiva specfile from RedHat specfile
418 #############################################################################
419 conectiva-spec:
420         $(RM) privoxy-cl.spec
421         chmod a+x genclspec.sh
422         ./genclspec.sh
423
424 #############################################################################
425 # Conectiva distribution for x86
426 #############################################################################
427 conectiva-dist: rpm-stuff conectiva-spec
428
429         $(TAR) --exclude ".cvsignore" --exclude "CVS" --exclude "privoxy-suse.spec" --exclude "privoxy-rh.spec" --exclude "PACKAGERS" -czf $(TAR_ARCH) .
430         $(RPMBUILD) --clean -ta  $(TAR_ARCH)
431         if [ -f $(TAR_ARCH) ]; then  $(RM) $(TAR_ARCH); fi
432
433 conectiva-upload: check-release
434         make redhat-upload RPM_PACKAGEV=$(RPM_PACKAGEV)cl
435
436 #############################################################################
437 # redhat distribution alpha and x86
438 #############################################################################
439 redhat-dist: rpm-stuff
440         echo $(CONFIG_FILES)
441         $(TAR) --exclude ".cvsignore" --exclude "CVS" --exclude "privoxy-suse.spec" --exclude "privoxy-cl.spec" --exclude "PACKAGERS" -czf $(TAR_ARCH) .
442         $(RPMBUILD) --clean -ta  $(TAR_ARCH)
443         if [ -f $(TAR_ARCH) ]; then  $(RM) $(TAR_ARCH); fi
444
445 # For testing build issues only! Use redhat-dist for official releases.
446 redhat-test: 
447         echo $(CONFIG_FILES)
448         $(TAR) --exclude ".cvsignore" --exclude "CVS" --exclude "privoxy-suse.spec" --exclude "privoxy-cl.spec" --exclude "PACKAGERS" -czf $(TAR_ARCH) .
449         $(RPMBUILD) --clean -tb  $(TAR_ARCH)
450         if [ -f $(TAR_ARCH) ]; then  $(RM) $(TAR_ARCH); fi
451         @echo "WARNING: This target is only for testing. Use redhat-dist for releases!!!"
452
453 # anonymously ncftps the rpms to sourceforge
454 redhat-upload: check-release
455         ncftpput -u anonymous -p ijbswa-developers@lists.sourceforge.net upload.sourceforge.net /incoming $(RPM_BASE)/SRPMS/privoxy-$(RPM_VERSION)-$(RPM_PACKAGEV).src.rpm
456 # better should use `arch` here instead of ix86 to support other platforms too
457         ncftpput -u anonymous -p ijbswa-developers@lists.sourceforge.net upload.sourceforge.net /incoming $(RPM_BASE)/RPMS/*/privoxy-$(RPM_VERSION)-$(RPM_PACKAGEV).*.rpm
458         @$(ECHO) -------------------------------------------------------
459         @$(ECHO) Now goto
460         @$(ECHO) http://sourceforge.net/project/admin/editpackages.php?group_id=11118
461         @$(ECHO) ... and release the files.
462         @$(ECHO) -------------------------------------------------------
463      # w3m http://sourceforge.net/project/admin/editpackages.php?group_id=11118
464
465
466 #############################################################################
467 # Creates a Red Hat sourcepackage from CVS (not from the current sources
468 # on disk)
469 #############################################################################
470 redhat-srpm: 
471         make create-archive
472         $(MV) $(PROGRAM)-rh-$(VERSION).tar.gz $(PROGRAM)-$(VERSION).tar.gz
473         $(RPMBUILD) -ts --nodeps $(PROGRAM)-$(VERSION).tar.gz
474
475
476 #############################################################################
477 # suse distribution. works fine. no need to be root. 
478 #############################################################################
479 suse-dist: rpm-stuff
480 #       TMPFILE=$$(mktemp -q /tmp/$(PROGRAM).XXXXXX); \
481 #       if $(SED) -e 's/^\(Version:\).*/\1 $(RPM_VERSION)/g' \
482 #              -e 's/^\(Release:\).*/\1 $(RPM_PACKAGEV)/g' \
483 #               privoxy-suse.spec > $$TMPFILE ; then \
484 #       $(MV) -f $$TMPFILE privoxy-suse.spec; \
485 #       else \
486 #               $(ECHO) "Could not set version info in specfile."; \
487 #       exit 1;\
488 #       fi
489
490         $(TAR) --exclude ".cvsignore" --exclude "CVS" --exclude "privoxy-rh.spec" --exclude "privoxy-cl.spec" --exclude "PACKAGERS" -czf $(TAR_ARCH) .
491         $(RPM) --clean -ta  $(TAR_ARCH)
492         if [ -f $(TAR_ARCH) ]; then  $(RM) $(TAR_ARCH); fi
493
494 # anonymously ncftps the rpms to sourceforge
495 suse-upload: check-release
496         ncftpput -u anonymous -p ijbswa-developers@lists.sourceforge.net upload.sourceforge.net /incoming $(RPM_BASE)/SRPMS/privoxy-suse-$(RPM_VERSION)-$(RPM_PACKAGEV).src.rpm
497 # better should use `arch` here instead of ix86 to support other platforms too
498         ncftpput -u anonymous -p ijbswa-developers@lists.sourceforge.net upload.sourceforge.net /incoming $(RPM_BASE)/RPMS/*/privoxy-suse-$(RPM_VERSION)-$(RPM_PACKAGEV).*.rpm
499         @$(ECHO) -------------------------------------------------------
500         @$(ECHO) Now goto
501         @$(ECHO) http://sourceforge.net/project/admin/editpackages.php?group_id=11118
502         @$(ECHO) ... and release the files.
503         @$(ECHO) -------------------------------------------------------
504
505 # handle with care. use with root.
506 suse-clean:
507         $(RPM) -e junkbuster-suse || true
508         $(RM) -r /etc/junkbuster
509         $(RM) -r /etc/rc.d/junkbuster*
510         $(RM) -r /var/run/junkbuster.pid 
511         $(RM) -r /var/log/junkbuster
512         $(RM) /etc/init.d/junkbuster
513         $(RM) /usr/sbin/junkbuster
514         $(RM) /usr/sbin/rcjunkbuster
515         $(RM) /usr/share/man/man1/junkbuster.1.gz
516         $(RPM) -e privoxy-suse || true
517         $(RM) -r /etc/privoxy
518         $(RM) -r /etc/rc.d/privoxy*
519         $(RM) -r /var/run/privoxy.pid 
520         $(RM) -r /var/log/privoxy
521         $(RM) /etc/init.d/privoxy
522         $(RM) /usr/sbin/privoxy
523         $(RM) /usr/sbin/rcprivoxy
524         $(RM) /usr/share/man/man1/privoxy.1.gz
525
526 #############################################################################
527 # generic distribution
528 #############################################################################
529 gen-dist: dist-check
530         @$(ECHO) ""
531         @$(ECHO) "You have run autoconf && autoheader && ./configure right?"
532         @$(ECHO) ""
533         $(MAKE) $(PROGRAM)
534         $(STRIP_PROG) $(PROGRAM)
535         $(LN) -s current ../privoxy-$(VERSION)-$(CODE_STATUS)
536 # add program
537         (cd .. && $(TAR) -cvhf --exclude "PACKAGERS" privoxy-$(TARGET_OS)-$(VERSION)-$(CODE_STATUS)-src.tar privoxy-$(VERSION)-$(CODE_STATUS)/$(PROGRAM))
538 # add config files
539         for foo in $(CONFIG_FILES); do \
540                 (cd .. && $(TAR) -uvhf --exclude "PACKAGERS" privoxy-$(TARGET_OS)-$(VERSION)-$(CODE_STATUS)-src.tar privoxy-$(VERSION)-$(CODE_STATUS)/$$foo;) \
541         done; 
542 # add documentation
543         for foo in $(DOC_FILES); do \
544                 (cd .. && $(TAR) -uvhf --exclude "PACKAGERS" privoxy-$(TARGET_OS)-$(VERSION)-$(CODE_STATUS)-src.tar privoxy-$(VERSION)-$(CODE_STATUS)/$$foo;) \
545         done;
546 # and zip the archive
547         $(RM) ../privoxy-$(VERSION)-$(CODE_STATUS)
548         $(GZIP_PROG) ../privoxy-$(TARGET_OS)-$(VERSION)-$(CODE_STATUS)-src.tar
549         @$(ECHO) Distribution with binary created.
550
551 # anonymously ncftps the package to sourceforge
552 gen-upload:
553         ncftpput -u anonymous -p ijbswa-developers@lists.sourceforge.net upload.sourceforge.net /incoming ../privoxy-$(TARGET_OS)-$(VERSION)-$(CODE_STATUS)-src.tar.gz
554         @$(ECHO) -------------------------------------------------------
555         @$(ECHO) Now goto
556         @$(ECHO) http://sourceforge.net/project/admin/editpackages.php?group_id=11118
557         @$(ECHO) ... and release the files.
558         @$(ECHO) -------------------------------------------------------
559
560 # use with care
561 gen-clean:
562         $(RM) privoxy-$(TARGET_OS)-$(VERSION)-$(CODE_STATUS)-src.tar*
563
564 #############################################################################
565 # solaris distribution. verified on SF machines by swa.
566 #############################################################################
567 solaris-dist: gen-dist
568         @$(ECHO) Done.
569 # anonymously ncftps the package to sourceforge
570 solaris-upload: gen-upload
571         @$(ECHO) Done.
572 # use with care
573 solaris-clean: gen-clean
574         @$(ECHO) Done.
575
576 #############################################################################
577 # hpux distribution
578 #############################################################################
579 hpux-dist:
580         @$(ECHO) coming soon. 
581 hpux-upload:
582         @$(ECHO) coming soon. 
583
584 #############################################################################
585 # debian distribution
586 #############################################################################
587 debian-dist:
588         @$(ECHO) coming soon. 
589 debian-upload:
590         @$(ECHO) coming soon. 
591
592 #############################################################################
593 # macosx distribution
594 #############################################################################
595 macosx-dist:
596         @$(ECHO) coming soon. 
597 macosx-upload:
598         @$(ECHO) coming soon. 
599
600 #############################################################################
601 # amiga distribution
602 #############################################################################
603 amiga-dist:
604         @$(ECHO) coming soon. 
605 amiga-upload:
606         @$(ECHO) coming soon. 
607
608 #############################################################################
609 # freebsd distribution. verified on SF machines by swa.
610 #############################################################################
611 freebsd-dist: gen-dist
612         @$(ECHO) Done.
613 # anonymously ncftps the package to sourceforge
614 freebsd-upload: gen-upload
615         @$(ECHO) Done.
616 # use with care
617 freebsd-clean: gen-clean
618         @$(ECHO) Done.
619
620 #############################################################################
621 # Windows distribution
622 #############################################################################
623 win-dist:
624         $(ECHO) Not implemented.
625
626
627 #############################################################################
628 # Tarball distribution: No CVS dirs, dotfiles, debian build dir,
629 # (FIXME:) only parts of the static / generated docs mix in doc/webserver
630 #############################################################################
631
632 tarball-dist: dist-check clean clobber
633         $(LN) -s current ../privoxy-$(VERSION)-$(CODE_STATUS)
634
635         for i in `find . -type f -a -not \( -path "*/CVS*" -o -name ".*" \
636         -o -path "*/debian/*" -o -path "*/actions/*" -o -name "*.php" -o \
637         -name "PACKAGERS" -o -path "*/pdf/*" \)`; do \
638            files="$$files privoxy-$(VERSION)-$(CODE_STATUS)/$$i"; \
639         done &&  \
640         cd .. && $(TAR) -cvhf privoxy-$(VERSION)-$(CODE_STATUS)-src.tar $$files ; \
641
642 # and zip the archive
643         $(RM) ../privoxy-$(VERSION)-$(CODE_STATUS) 
644         $(GZIP_PROG) ../privoxy-$(VERSION)-$(CODE_STATUS)-src.tar
645         @$(ECHO) Tarball distribution created.
646
647 # anonymously ncftps the tarball to sourceforge
648 tarball-upload:
649         ncftpput -u anonymous -p ijbswa-developers@lists.sourceforge.net upload.sourceforge.net /incoming ../privoxy-$(VERSION)-$(CODE_STATUS)-src.tar.gz
650         @$(ECHO) -------------------------------------------------------
651         @$(ECHO) Now goto
652         @$(ECHO) http://sourceforge.net/project/admin/editpackages.php?group_id=11118
653         @$(ECHO) ... and release the files.
654         @$(ECHO) -------------------------------------------------------
655
656 tarball-clean:
657         $(RM) ../privoxy-$(VERSION)-$(CODE_STATUS)-src.tar.gz
658
659 #############################################################################
660 #
661 # Documentation
662 #
663 # converts doc/source/*.sgml into html, text and man pages
664 #
665 #############################################################################
666
667 # developer manual
668 dok-devel: 
669         $(RM) doc/webserver/developer-manual/*.html
670         $(RM) -r doc/source/developer-manual
671         mkdir -p doc/text doc/source/developer-manual
672         cd doc/source/developer-manual && $(DB) ../developer-manual.sgml && cd .. && cp developer-manual/*.html ../webserver/developer-manual/
673         cd doc/source && $(DB) -V nochunks developer-manual.sgml > tmp.html && $(WDUMP) tmp.html > ../text/developer-manual.txt && $(RM) -r tmp.html developer-manual
674
675 # user manual
676 dok-user: 
677         $(RM) doc/webserver/user-manual/*.html
678         $(RM) -r doc/source/user-manual/
679         mkdir -p doc/text doc/source/user-manual
680         cd doc/source/user-manual && $(DB) -iuser-man ../user-manual.sgml && cd .. && cp user-manual/*.html ../webserver/user-manual/
681         @#FIXME: temp fix so same stylesheet gets in more than one place so it works \
682         @# for all doc set-ups, including the 'user manual' config option in local \
683         @#system where it MUST be in same directory as html.
684         $(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
685         cd doc/source && $(DB) -iuser-man -V nochunks user-manual.sgml > tmp.html && $(WDUMP) tmp.html > ../text/user-manual.txt && $(RM) -r tmp.html user-manual
686
687 # faq
688 dok-faq: 
689         $(RM) doc/webserver/faq/*.html
690         $(RM) -r doc/source/faq
691         mkdir -p doc/text doc/source/faq
692         cd doc/source/faq && $(DB) ../faq.sgml && cd .. && cp faq/*.html ../webserver/faq/
693         cd doc/source && $(DB) -V nochunks faq.sgml > tmp.html && $(WDUMP) tmp.html > ../text/faq.txt && $(RM) -r tmp.html faq
694
695 # man page, one variation. Try to use the next target, just 'make man'. 
696 dok-man: 
697         $(RM) doc/man/* doc/webserver/man-page/*.html
698 ifneq ($(MAN2HTML),false)
699         $(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
700         man ./privoxy.1 | $(MAN2HTML) -bare >> doc/webserver/man-page/privoxy-man-page.html
701         $(ECHO) "</body></html>" >> doc/webserver/man-page/privoxy-man-page.html
702 else
703         $(MAKE) groff2html
704 endif
705
706 # Build man page from sgml. This requires the SGMLSpm perl module.
707 # See CPAN, or your favorite perl repository. This is the preferred 
708 # target for man page generation!
709 man: dok-release
710         mkdir -p doc/source/temp && cd doc/source/temp && $(RM) * ;\
711         nsgmls ../privoxy-man-page.sgml  | sgmlspl ../../../utils/docbook2man/docbook2man-spec.pl &&\
712         perl -pi.bak -e 's/ <URL:.*>//; s/\[ /\[/g' privoxy.1 ;\
713         $(DB) ../privoxy-man-page.sgml && $(MV) -f privoxy.1 ../../../privoxy.1
714
715 # For those with man2html ala RH7s.
716 man2html:
717         mkdir -p doc/webserver/man-page
718 ifneq ($(MAN2HTML),false)
719         $(MAN2HTML) privoxy.1 |grep -v "^Content-type" > tmp.html
720         $(PERL) -pi.bak -e 's/<A .*Contents<\/A>//; s/<A .*man2html<\/A>/man2html/' tmp.html
721         $(PERL) -pi.bak -e 's/(<\/HEAD>)/<LINK REL=\"STYLESHEET\" TYPE=\"text\/css\" HREF=\"..\/p_doc.css\"><\/HEAD>/' tmp.html
722 # Twice because my version of man2html is pulling in commas and periods in URLs.
723         $(PERL) -pi.bak -e 's/(<A.*),(">)/$$1$$2/g' tmp.html
724         $(PERL) -pi.bak -e 's,\.">,">,g' tmp.html
725 # Get rid of spurious \a from conversion. (How to do this with perl?)
726         $(SED) -e 's/\a//g' tmp.html > doc/webserver/man-page/privoxy-man-page.html && $(RM) tmp.*
727 else
728         $(MAKE) groff2html
729 endif
730
731
732 # Otherwise we get plain groff conversion.
733 groff2html:
734         $(G2H_CMD) ./privoxy.1 | $(SED) -e 's@</head>@<link REL="STYLESHEET" TYPE="text/css" HREF="../p_doc.css"></head>@' > doc/webserver/man-page/privoxy-man-page.html
735
736
737 # readme page and INSTALL file
738 dok-readme: dok-release
739         cd doc/source && $(DB)-notoc -V nochunks readme.sgml > tmp.html &&\
740         $(WDUMP) tmp.html > ../../README ;\
741         $(DB)-notoc -V nochunks install.sgml > tmp.html &&\
742         $(WDUMP) tmp.html > ../../INSTALL ;\
743         $(RM) tmp.*
744
745 # index.sgml is used to create both the Home Page, and a local index
746 # for documentation, etc.
747 #
748 # index.html for webserver:
749 dok-webserver: 
750         cd doc/source/webserver && $(DB)-notoc -ip-homepage -V nochunks index.sgml > ../../webserver/index.html
751         $(PERL) -pi.bak -e 's/..\/p_doc.css/p_doc.css/;\
752      s/<\/HEAD/\n<meta name=\"description\" content=\"Privoxy helps consumers reduce unwanted junk email and protect their privacy from direct marketing companies.\"><\/HEAD/;\
753         s/<\/HEAD/\n<meta name="MSSmartTagsPreventParsing" content="TRUE"><\/HEAD/;\
754         s/\.\d\. //;\
755         s/__copy/&copy;/'\
756      doc/webserver/index.html && $(RM) doc/webserver/*.bak
757
758 # privoxy-index.html for local documentation:
759 dok-index: 
760         cd doc/source/webserver && $(DB)-notoc -ip-index -V nochunks index.sgml > ../../webserver/privoxy-index.html
761         $(PERL) -pi.bak -e 's/..\/p_doc.css/p_doc.css/;\
762      s/<\/HEAD/\n<meta name=\"description\" content=\"Privoxy helps consumers reduce unwanted junk email and protect their privacy from direct marketing companies.\"><\/HEAD/;\
763         s/<\/HEAD/\n<meta name="MSSmartTagsPreventParsing" content="TRUE"><\/HEAD/;\
764         s/\.\d\. //;\
765         s/__copy/&copy;/' \
766      doc/webserver/privoxy-index.html && $(RM) doc/webserver/*.bak
767
768 # Main documentation target.
769 dok: dok-release dok-devel dok-user dok-faq dok-readme dok-webserver dok-authors dok-index
770         @$(ECHO) Documentation created.
771
772 #
773 # an alternative to the above dok. disabled man page creation for the moment
774 #
775 redhat-dok: dok-release dok-devel dok-user dok-faq redhat-readme dok-webserver dok-authors
776         @$(ECHO) Documentation created.
777
778 ## Make README
779 redhat-readme: 
780         cd doc/source && $(DB)-notoc -V nochunks readme.sgml > tmp.html && $(WDUMP) \
781           tmp.html > ../../README && $(RM) -r tmp.html
782
783 ## Make AUTHORS file
784 dok-authors: 
785         cd doc/source && $(DB) -V nochunks authors.sgml > tmp.html && $(WDUMP) \
786           tmp.html > ../../AUTHORS && $(RM) tmp.html
787
788 # Set doc entities for VERSION and CODE_STATUS in sgml docs. Toggle content
789 # exceptions accordingly. This needs to go before any doc building (doh).
790 dok-release:
791         @$(ECHO) Setting doc version and status to $(VERSION), $(CODE_STATUS)
792         @$(PERL) -pi.bak -e 's/<!entity +p-version.*>/<!entity p-version "$(VERSION)">/;\
793      s/<!entity +p-status.*>/<!entity p-status "$(CODE_STATUS)">/' \
794      doc/source/*sgml doc/source/*/*sgml
795         $(RM) -r doc/source/*bak doc/source/*/*bak
796 ifeq ($(CODE_STATUS),stable)
797         @$(ECHO) Setting docs to stable $(VERSION)
798         @$(PERL) -pi.bak -e 's/<!entity +% +p-stable.*>/<!entity % p-stable "INCLUDE">/;\
799      s/<!entity +% +p-not-stable.*>/<!entity % p-not-stable "IGNORE">/' \
800      doc/source/*sgml doc/source/*/*sgml
801         $(RM) -r doc/source/*bak doc/source/*/*bak
802 else
803         @$(ECHO) Setting docs to not stable $(VERSION)
804         @$(PERL) -pi.bak -e 's/<!entity +% +p-stable.*>/<!entity % p-stable "IGNORE">/;\
805      s/<!entity +% +p-not-stable.*>/<!entity % p-not-stable "INCLUDE">/' \
806      doc/source/*sgml doc/source/*/*sgml
807         $(RM) -r doc/source/*bak doc/source/*/*bak
808 endif
809
810 # Generate single page html. Used only for creating pdf docs (ATM).
811 # Currently using: See http://www.easysw.com/htmldoc/pdf-o-matic.php.
812 # If using this generator, remember U-M has a couple of graphics in 
813 # a parallel directory.
814 #
815 dok-shtml: dok-release 
816         mkdir -p doc/source/temp # this directory not in cvs
817         cd doc/source && $(DB) -iuser-man -V nochunks user-manual.sgml > temp/privoxy-user-manual.html
818         cd doc/source && $(DB) -V nochunks developer-manual.sgml > temp/privoxy-developer-manual.html
819         cd doc/source && $(DB) -V nochunks faq.sgml > temp/privoxy-faq.html
820 # one could use html2ps and ps2pdf. well, that does not work. htmlps produces incorrect output.
821
822 # Make pdf docs from single page html. Requires htmldoc, see
823 # (http://www.easysw.com/htmldoc/). Note: 1.8.20 has a TOC bug.
824 # PDF docs are uploaded to webserver as zip archive.
825 dok-pdf: dok-shtml
826         @$(ECHO) -n "starting htmldoc version: ";
827         if htmldoc --version ; then : ; \
828            else $(ECHO) "WARNING: could not get htmldoc version" ; fi
829         cd utils/ldp_print && $(RM) *html *bak *jpg *tmp *pdf *zip
830         cp -f doc/source/temp/*html doc/webserver/user-manual/*jpg utils/ldp_print
831         cd utils/ldp_print ;\
832         $(PERL) -pi.bak -e 's/\.\.\/images\///; s/(<\/?)SUB/$$1small/i;\
833                             s/\.\.\/user-manual\/index\.html/privoxy-user-manual.pdf/;\
834                                         s/\.\.\/developer-manual\/index\.html/privoxy-developer-manual.pdf/;\
835                                         s/\.\.\/faq\/index\.html/privoxy-faq.pdf/' *.html ;\
836         for i in developer-manual user-manual faq; do \
837                 ./ldp_print privoxy-$$i.html ;\
838                 $(ECHO) DONE: privoxy-$$i.pdf ;\
839         done ;\
840         $(MV) *.pdf  ../../doc/pdf ;\
841         $(RM) -r *html *bak *jpg *pdf *zip ../../doc/source/temp
842
843 # Create release announcement in text and html, with short and long versions.
844 # This is a standalone target, and must be invoked directly.
845 # announce: dok-release
846 #       mkdir -p $(DOC_TMP)
847 #       cd $(DOC_TMP) && cp -f ../announce.sgml . && $(DB) -iannounce-big announce.sgml &&\
848 #       mv -f index.html announce.html && $(WDUMP) announce.html > announce.txt
849 #       cd $(DOC_TMP) && $(DB) announce.sgml &&\
850 #       mv -f index.html announce-mini.html && $(WDUMP) announce-mini.html > announce-mini.txt &&\
851 #       mv -f *html *txt ../../.. 
852 #       rm -fr $(DOC_TMP)
853
854 # The main Privoxy config file, generated from sgml sources. 
855 # NOTE: This will require some hand editing. The new file is outputted 
856 # as config.new so that problem sections can be compared to previous
857 # version. This is hardcored to w3m for html/text conversion. Also, 
858 # requires the shell util 'fmt'.
859 config-file: dok-release
860         cd doc/source && $(DB)-notoc -iconfig-file -V nochunks config.sgml > __tmp.html &&\
861         w3m -dump __tmp.html |fmt -w 70 > ../../config.new && $(RM) -r __tmp.*
862         $(PERL) -pi.bak -e 's/^1\. \@\@TITLE\@\@/     /i;\
863                      /^\d\.\d\.\s+/ && tr/[a-z]/[A-Z]/;\
864                      $$header_len=0 unless $$hit_header;\
865                      if ($$hit_header) {\
866                         print "#  ";\
867                         for ($$i=1; $$i < $$header_len; $$i++) {print "=";}\
868                         print "\n";\
869                      };\
870                      $$hit_header=0;\
871                      $$hit_header=1 if m/^(\d\.)(\d\.)(\d\.)?\s/ && s/^(\d\.)//;\
872                      $$header_len = length($$_);\
873                                  s/^/#  /;  /^#  #{12,}/ && s/^#  #/####/;\
874                      s/^.*$$// if $$hit_option;\
875                      $$hit_option=0;\
876                      s/^\n//;  s/^#\s*-{20,}//; s/ *$$//;\
877                      $$hit_option=1 if s/^#\s+@@//;'   config.new
878         $(RM) *.bak
879         @$(ECHO)  "****************************************************"
880         @$(ECHO)  "The output file is config.new."
881         @$(ECHO)  "Now -- you need to hand edit the results!!!"
882         @$(ECHO)  "In particular, check the Debug levels, the"
883         @$(ECHO)  "permit-access, forward & socks examples and the"
884         @$(ECHO)  "various user-manual examples, which all"
885         @$(ECHO)  "probably got hammered."
886         @$(ECHO)  "****************************************************"
887
888 # config file, alternate verison using lynx (perl stuff unfinished). Lynx
889 # does not do so good a job.
890 config-file-alt: 
891         cd doc/source && $(ECHO) -e ".h2 JUSTIFY\\nJUSTIFY:FALSE" > __tmp.lynx_cfg &&\
892         $(DB)-notoc -iconfig-file -V nochunks config.sgml > __tmp.html &&\
893         lynx -cfg=__tmp.lynx_cfg -width=78 -dump __tmp.html > ../../config.new && $(RM) -r __tmp.*
894         $(PERL) -pi -e 's/^(   )//;\
895                         s/:$\/:\n/' config.new
896
897 #############################################################################
898 #
899 # Webserver
900 #
901 # moves dokumentation to webserver
902 #
903 #############################################################################
904 webserver: tidy
905         @$(ECHO) -------------------------------------------------------
906         @$(ECHO) You have run make dok/redhat-dok before, right?
907         @$(ECHO) Note that this command scps all stuff to the webserver,
908         @$(ECHO) it will not remove obsolete documents.
909         @$(ECHO) -------------------------------------------------------
910
911         @$(ECHO) Uploading html
912         @cd doc/webserver; \
913           upload=`find . -type f -a -not \( -path "*/CVS*" -o -path "*/results*" \)`; \
914           $(TAR) c $$upload | ssh ijbswa.sourceforge.net 'cd /home/groups/i/ij/ijbswa/htdocs/; tar xvm 2>&1 | grep -v timestamp'
915
916         @$(ECHO) Uploading pdf
917         @cd doc/pdf;\
918           zip privoxy-pdf-docs *.pdf  ;\
919                 scp -q privoxy-pdf-docs.zip ijbswa.sourceforge.net:/home/groups/i/ij/ijbswa/htdocs/pdf
920
921         @$(ECHO) Fixing permissions
922         @ssh ijbswa.sourceforge.net 'chmod -R 775 /home/groups/i/ij/ijbswa/htdocs 2>/dev/null; true'
923         @ssh ijbswa.sourceforge.net 'find /home/groups/i/ij/ijbswa/htdocs/ -type f | xargs chmod 664 2>/dev/null; true'
924         @ssh ijbswa.sourceforge.net 'chmod 666 /home/groups/i/ij/ijbswa/htdocs/actions/results/actions-feedback.txt 2>/dev/null; true'
925
926
927 web-actions: tidy
928         @$(ECHO) Uploading 
929         @cd doc/webserver/actions; \
930           upload=`find . -type f -a -not \( -path "*/CVS*" -o -path "*/results*" \)`; \
931           $(TAR) c $$upload | ssh ijbswa.sourceforge.net 'cd /home/groups/i/ij/ijbswa/htdocs/actions; tar xvm'
932
933         @$(ECHO) Fixing permissions
934         @ssh ijbswa.sourceforge.net 'find /home/groups/i/ij/ijbswa/htdocs/actions/ -type f | xargs chmod 664 2>/dev/null'
935         @ssh ijbswa.sourceforge.net 'chmod 666 /home/groups/i/ij/ijbswa/htdocs/actions/results/actions-feedback.txt 2>/dev/null'
936
937 ## 
938 dok-put:
939         tar --exclude ".cvsignore" --exclude "CVS" --exclude "source" --exclude ".htaccess" \
940              --exclude "obsolete" --exclude "actions" --exclude "*.zip" --exclude "robots.txt"\
941                 doc/* INSTALL LICENSE AUTHORS README \
942                 -czf $(DOC_FILE) ;\
943                 $(ECHO) "Uploading doc package ..." ;\
944                 scp $(DOC_FILE) ijbswa.sourceforge.net:/home/groups/i/ij/ijbswa/htdocs/docs/
945                 @ssh ijbswa.sourceforge.net 'chmod 775 /home/groups/i/ij/ijbswa/htdocs/docs/*gz 2>/dev/null; true'
946                 $(RM) $(DOC_FILE)
947
948 dok-get:
949         cd /tmp ;\
950         $(WGET) http://privoxy.org/docs/$(DOC_FILE) ;\
951         $(TAR) -zxvf $(DOC_FILE)
952
953
954 #############################################################################
955 # Source file dependencies
956 #############################################################################
957
958 actions.@OBJEXT@:   actions.c   actions.h   config.h $(PROJECT_H_DEPS) errlog.h jcc.h list.h loaders.h miscutil.h actionlist.h ssplit.h
959 cgi.@OBJEXT@:       cgi.c       cgi.h       config.h $(PROJECT_H_DEPS) cgiedit.h cgisimple.h list.h pcrs.h encode.h ssplit.h jcc.h filters.h actions.h errlog.h miscutil.h
960 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 actions.h errlog.h miscutil.h
961 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
962 deanimate.@OBJEXT@: deanimate.c deanimate.h config.h $(PROJECT_H_DEPS)
963 encode.@OBJEXT@:    encode.c    encode.h    config.h
964 errlog.@OBJEXT@:    errlog.c    errlog.h    config.h $(PROJECT_H_DEPS) @WIN_ONLY@w32log.h
965 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 @WIN_ONLY@win32.h 
966 gateway.@OBJEXT@:   gateway.c   gateway.h   config.h $(PROJECT_H_DEPS) errlog.h jbsockets.h jcc.h loadcfg.h
967 jbsockets.@OBJEXT@: jbsockets.c jbsockets.h config.h $(PROJECT_H_DEPS) filters.h
968 jcc.@OBJEXT@:       jcc.c       jcc.h       config.h $(PROJECT_H_DEPS) errlog.h filters.h gateway.h jbsockets.h killpopup.h loadcfg.h loaders.h miscutil.h parsers.h @WIN_ONLY@w32log.h win32.h w32svrapi.h cgi.h
969 killpopup.@OBJEXT@: killpopup.c killpopup.h config.h $(PROJECT_H_DEPS) jcc.h loadcfg.h
970 list.@OBJEXT@:      list.c      list.h      config.h $(PROJECT_H_DEPS) list.h miscutil.h
971 loadcfg.@OBJEXT@:   loadcfg.c   loadcfg.h   config.h $(PROJECT_H_DEPS) errlog.h filters.h gateway.h jbsockets.h jcc.h killpopup.h loaders.h miscutil.h parsers.h @WIN_ONLY@w32log.h win32.h
972 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
973 miscutil.@OBJEXT@:  miscutil.c  miscutil.h  config.h
974 parsers.@OBJEXT@:   parsers.c   parsers.h   config.h $(PROJECT_H_DEPS) errlog.h encode.h filters.h jbsockets.h jcc.h loadcfg.h loaders.h miscutil.h ssplit.h
975 ssplit.@OBJEXT@:    ssplit.c    ssplit.h    config.h miscutil.h
976 urlmatch.@OBJEXT@:  urlmatch.c  urlmatch.h  config.h $(PROJECT_H_DEPS) errlog.h miscutil.h ssplit.h
977
978 # GNU regex
979 gnu_regex.@OBJEXT@: gnu_regex.c gnu_regex.h config.h
980
981 # PCRS
982 pcrs.@OBJEXT@: pcrs.c pcrs.h config.h pcre/pcre.h 
983
984 # PCRE
985 pcre/get.@OBJEXT@:        pcre/get.c        pcre/config.h pcre/internal.h pcre/pcre.h
986 pcre/maketables.@OBJEXT@: pcre/maketables.c pcre/config.h pcre/internal.h pcre/pcre.h
987 pcre/pcre.@OBJEXT@:       pcre/pcre.c       pcre/config.h pcre/internal.h pcre/pcre.h pcre/chartables.c 
988 pcre/pcreposix.@OBJEXT@:  pcre/pcreposix.c  pcre/config.h pcre/internal.h pcre/pcre.h pcre/pcreposix.h
989 pcre/study.@OBJEXT@:      pcre/study.c      pcre/config.h pcre/internal.h pcre/pcre.h
990
991 # An auxiliary program makes the PCRE default character table source
992
993 pcre/chartables.c:   pcre/dftables@EXEEXT@
994                 pcre/dftables@EXEEXT@ >pcre/chartables.c
995
996 pcre/dftables@EXEEXT@:       pcre/dftables.c pcre/maketables.c pcre/pcre.h pcre/internal.h pcre/config.h
997                 $(CC) -o pcre/dftables@EXEEXT@ $(CFLAGS) pcre/dftables.c
998
999 # Win32
1000 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
1001 w32taskbar.@OBJEXT@: w32taskbar.c config.h w32log.h w32taskbar.h
1002 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
1003
1004 w32.res: w32.rc w32res.h icons/ico00001.ico icons/ico00002.ico icons/ico00003.ico icons/ico00004.ico icons/ico00005.ico icons/ico00006.ico icons/ico00007.ico icons/ico00008.ico icons/idle.ico icons/privoxy.ico config.h
1005         windres -D__MINGW32__=0.2 -O coff -i $< -o $@
1006
1007 # AmigaOS
1008 @AMIGAOS_ONLY@OBJS += amiga.o
1009 @AMIGAOS_ONLY@CFLAGS += -D__AMIGAVERSION__=\"$(VERSION_MAJOR).$(VERSION_MINOR)$(VERSION_POINT)\" -D__AMIGADATE__=\"`date +%d.%m.%Y`\" -W -m68020 -noixemul -fbaserel -msmall-code
1010 @AMIGAOS_ONLY@LDFLAGS += -m68020 -noixemul -fbaserel
1011 @AMIGAOS_ONLY@LIBS = -lm /gg/lib/libb/libm020/libnix/swapstack.o
1012 @AMIGAOS_ONLY@amiga.o: amiga.c amiga.h config.h
1013
1014
1015 $(PROGRAM): $(OBJS) $(W32_FILES)
1016         $(LD) $(LDFLAGS) -o $(PROGRAM) $(OBJS) $(LIBS)
1017
1018 clean:
1019         $(RM) a.out $(OBJS) $(W32_FILES) $(W32_INIS) $(PROGRAM) default.action `find . -name TAGS -o -name tags` config.base config.tmp
1020
1021 tidy:
1022         $(RM) `find . -name "*~"`
1023 #       $(RM) `find . -name "#*#"` # what is this for??
1024         $(RM) `find . -name ".\#*"`
1025
1026 clobber: tidy
1027         $(RM) GNUmakefile configure config.h.in config.h config.cache config.status config.log logfile \
1028               privoxy.log core *.tar.gz *.tar privoxy-cl.spec doc/source/ldp.dsl config.new
1029         $(RM) -r autom4te.cache
1030
1031 #
1032 # FIXME: What is all this? 
1033 #
1034         $(RM) cscope.*  *.pdb *.lib *.exp 
1035
1036 distclean: clobber
1037
1038 tags: $(SRCS) $(HDRS)
1039         etags $(SRCS) $(HDRS)
1040
1041 CONF_DEST:=$(shell if [ "$(prefix)" = "/usr/local" ] && [ "$(CONF_BASE)" = "$(prefix)/etc" ];then \
1042                 $(ECHO) "$(CONF_BASE)/privoxy";\
1043          else\
1044                  $(ECHO) "$(CONF_BASE)";\
1045          fi)
1046
1047 LOG_DEST:=$(shell if [ "$(prefix)" = "/usr/local" ] && [ "$(LOGS_DEST)" = "$(prefix)/var/log/privoxy" ];then \
1048                 $(ECHO) "/var/log/privoxy" ;\
1049          else\
1050                  $(ECHO) "$(LOGS_DEST)";\
1051          fi)
1052
1053 PID_DEST:=$(shell if [ "$(prefix)" = "/usr/local" ] && [ "$(PIDS_DEST)" = "$(prefix)/var/run" ];then \
1054                 $(ECHO) "/var/run" ;\
1055          else\
1056                  $(ECHO) "$(PIDS_DEST)";\
1057          fi)
1058
1059 check_doc:=$(shell if [ ! -d "$(SHARE_DEST)/doc" ] && [ "$(prefix)" = "/usr/local" ]  && [ -d "$(prefix)/doc" ];then \
1060                 $(ECHO) "1";\
1061          else\
1062                  $(ECHO) "0";\
1063          fi)
1064
1065 # If USER is specified but no GROUP, assume there is a GROUP of same name.
1066 GROUP_T:=$(shell if [ x$(GROUP) = x ] && [ x$(USER) != x ];then \
1067                 $(ECHO) "$(USER)" ;\
1068          else\
1069                  $(ECHO) "$(GROUP)";\
1070          fi)
1071
1072 install-strip:
1073         $(MAKE) install STRIP=-s
1074
1075 # FIXME: Test USER and GROUP on Slack to make sure this works as 
1076 # intended.
1077 #
1078 # FIXME: id handling needs help, probably via configure, since 'id -u' is not 
1079 # universally reliable (eg Solaris). Group handling could be better. 
1080 # Perhaps the whole user/group validation should be done here, and simplified.
1081 PROGRAM_V = Privoxy $(VERSION) $(CODE_STATUS)
1082 install: CONF_DEST LOG_DEST PID_DEST check_doc GROUP_T
1083         @# Quick test for valid USER.
1084         @if [ -n "$(USER)" ]; then \
1085                 $(ID) $(USER) >/dev/null || exit 1;\
1086         fi
1087         @# Test for valid group. FIXME. USER does not have to belong to GROUP 
1088         @# for file ownership purposes.
1089 #       if [ -n "$(GROUP_T)" ] && [ -n "$(USER)" ] && ! $(GROUPS) $(USER) | $(GREP) "\<$(GROUP_T)\>" >/dev/null; then \
1090 #               $(ECHO) Group $(GROUP_T) for User $(USER) is invalid && exit 1 ;\
1091 #       fi
1092
1093         @$(ECHO) "Creating directories, and preparing $(PROGRAM_V) installation"
1094         $(CHMOD) $(DIR_MODE) $(MKDIR)
1095         @$(MKDIR) $(SBIN_DEST) $(prefix) $(CONF_DEST) $(CONF_DEST)/templates $(SHARE_DEST) \
1096                 $(LOG_DEST) $(PID_DEST)
1097         @# Install the executable binary, strip if invoked as install-strip
1098         @test -n "$(STRIP)" &&\
1099         $(ECHO) Installing $(PROGRAM) stripped executable to $(SBIN_DEST) ||\
1100         $(ECHO) Installing $(PROGRAM) executable to $(SBIN_DEST)
1101         $(INSTALL) $(INSTALL_P) $(STRIP) $(PROGRAM) $(SBIN_DEST)
1102      
1103         @# Install the DOCS and man page. install-sh only does one file at a time.
1104         @# FIXME: only handles jpegs.
1105         -@if [ $(check_doc) = 0 ]; then \
1106                 DOC=$(DOC_DEST) ;\
1107         else \
1108                 DOC=$(prefix)/doc/privoxy ;\
1109         fi;\
1110         $(MKDIR) $$DOC $$DOC/user-manual $$DOC/faq $$DOC/developer-manual \
1111              $$DOC/man-page $$DOC/images $(MAN_DEST) ;\
1112         if [ -d "$(DOK_WEB)" ]; then \
1113                 $(ECHO) Installing FAQ, Manual, and other docs to $$DOC;\
1114           for i in user-manual developer-manual faq; do \
1115                for ii in $(DOK_WEB)/$$i/*html; do \
1116                     $(INSTALL) $(INSTALL_T) $$ii $$DOC/$$i;\
1117                done ;\
1118           done ;\
1119                 for i in $(DOK_WEB)/user-manual/*jpg; do \
1120                $(INSTALL) $(INSTALL_T) $$i $$DOC/user-manual;\
1121           done ;\
1122                 $(INSTALL) $(INSTALL_T) $(DOK_WEB)/man-page/*html $$DOC/man-page;\
1123                 $(INSTALL) $(INSTALL_T) $(DOK_WEB)/privoxy-index.html $$DOC/index.html;\
1124                 $(INSTALL) $(INSTALL_T) AUTHORS $$DOC;\
1125                 $(INSTALL) $(INSTALL_T) LICENSE $$DOC;\
1126                 $(INSTALL) $(INSTALL_T) README $$DOC;\
1127                 $(INSTALL) $(INSTALL_T) ChangeLog $$DOC;\
1128                 $(INSTALL) $(INSTALL_T) $(DOK_WEB)/p_doc.css $$DOC;\
1129                 $(INSTALL) $(INSTALL_T) $(DOK_WEB)/p_doc.css $$DOC/user-manual;\
1130         fi
1131         @# Not all platforms support gzipped man pages.
1132         @$(ECHO) Installing man page to $(MAN_DEST)/privoxy.1
1133         -$(INSTALL) $(INSTALL_T) privoxy.1  $(MAN_DEST)/privoxy.1
1134
1135         @# Change the config file default directories according to the configured ones
1136         @$(ECHO) Rewriting config for this installation
1137         @if [ -f config.base ] ; then \
1138                 $(CAT) config >config~ ;\
1139                 $(MV) config.base config ;\
1140         fi
1141         $(SED) 's+confdir .+confdir $(CONF_DEST)+' config | \
1142         $(SED) 's+logdir .+logdir $(LOG_DEST)+' >config.tmp
1143         -@if [ $(check_doc) = 0 ]; then \
1144       $(SED) 's+^#\?user-manual .*+user-manual $(DOC_DEST)/user-manual/+' config.tmp >config.updated ;\
1145         else \
1146       $(SED) 's+^#\?user-manual .*+user-manual $(prefix)/doc/privoxy/user-manual/+' config.tmp >config.updated ;\
1147         fi;\
1148         $(MV) config config.base
1149         $(MV) config.updated config 
1150
1151         @# Install the config support files. Test for root install, and abort 
1152         @# if there is no privoxy user, and no other user was enabled during 
1153         @# configure. Later, install init script if appropriate.
1154         @$(ECHO) Installing templates to $(CONF_DEST)/templates
1155         @for i in `find templates -type f`; do \
1156                 $(INSTALL) $(INSTALL_T) $$i $(CONF_DEST)/templates ;\
1157         done
1158
1159         @# FIXME: group/user validation is overly convoluted.
1160         @# If superuser install ... we require a minimum of group ownership
1161         @# of those files the daemon writes to, to be non-root owned.
1162         @if [ "`$(ID) |sed 's/(.*//' |sed 's/.*=//'`" = "0" ] ;then\
1163                 if [ x$(USER) = x ] || [ $(USER) = root ]; then \
1164                         if [ x$(GROUP) = x ] || [ $(GROUP) = root ]; then \
1165                                 if [ "`$(ID) privoxy`" ] && \
1166                                         $(GROUPS) privoxy | $(SED) 's/^.*://' |$(GREP) "\<privoxy\>" >/dev/null; then \
1167                                         $(ECHO) "Warning: Setting group owner to privoxy";\
1168                                         GROUP_T=privoxy ;\
1169                                 else \
1170                                         $(ECHO)  "******************************************************************" ;\
1171                                         $(ECHO)  " WARNING! WARNING! installing config files as root!" ;\
1172                                         $(ECHO)  " It is strongly recommended to run $(PROGRAM) as a non-root user," ;\
1173                                         $(ECHO)  " and to install the config files as that user and/or group!" ;\
1174                                         $(ECHO)  " Please read INSTALL, and create a privoxy user and group!" ;\
1175                                         $(ECHO)  "*******************************************************************" ;\
1176                                         exit 1 ;\
1177                                 fi ;\
1178                         else \
1179                                 GROUP_T=$(GROUP) ;\
1180                         fi ;\
1181                         INSTALL_CONF="$(INSTALL_R) -g $$GROUP_T " ;\
1182                 else \
1183                         $(ECHO) "Superuser install, installing config files as $(USER):$(GROUP_T)" ;\
1184                         INSTALL_CONF="$(INSTALL_R) -o $(USER) -g $(GROUP_T)" ;\
1185                         GROUP_T=$(GROUP_T) ;\
1186                 fi ;\
1187         else \
1188                 if [ ! "`id $(USER)`" = "`id`" ] ;then \
1189                         $(ECHO) "** WARNING ** current install user different from configured user!!" ;\
1190                         $(ECHO) "Edit may fail." ;\
1191                 fi ;\
1192                 INSTALL_CONF="$(INSTALL_R)" ;\
1193         fi ;\
1194         $(ECHO) Installing configuration files to $(CONF_DEST);\
1195         for i in $(CONFIGS); do \
1196                 if [ "$$i" == "default.action" ] || [ "$$i" == "default.filter" ] || [ "$$i" == "standard.action" ]; then \
1197                         $(RM) $(CONF_DEST)/$$i ;\
1198                         $(ECHO) Installing fresh $$i;\
1199                         $(INSTALL) $$INSTALL_CONF $$i $(CONF_DEST) || exit 1;\
1200                 elif [ -s "$(CONF_DEST)/$$i" ]; then \
1201                         $(ECHO) Installing $$i as $$i.new ;\
1202                         $(INSTALL) $$INSTALL_CONF $$i $(CONF_DEST)/$$i.new || exit 1;\
1203                         NEW=1;\
1204                 else \
1205                         $(INSTALL) $$INSTALL_CONF $$i $(CONF_DEST) || exit 1;\
1206                 fi ;\
1207         done ;\
1208         if [ -n "$$NEW" ]; then \
1209                 $(CHMOD) $(RWD_MODE) $(CONF_DEST)/*.new || exit 1 ;\
1210                 $(ECHO) "Warning: Older config files are preserved. Check new versions for changes!" ;\
1211         fi ;\
1212         [ ! -f $(LOG_DEST)/logfile ] && $(ECHO) Creating logfiles in $(LOG_DEST) || \
1213                 $(ECHO) Checking logfiles in $(LOG_DEST) ;\
1214                 $(TOUCH) $(LOG_DEST)/logfile $(LOG_DEST)/jarfile || exit 1 ;\
1215         if [ x$$USER != x ]; then \
1216                 $(CHOWN) $$USER $(LOG_DEST)/logfile $(LOG_DEST)/jarfile || \
1217                 $(ECHO) "** WARNING ** current install user different from configured user. Logging may fail!!" ;\
1218         fi ;\
1219         if [ x$$GROUP_T != x ]; then \
1220                 $(CHGRP) $$GROUP_T $(LOG_DEST)/logfile $(LOG_DEST)/jarfile || \
1221                 $(ECHO) "** WARNING ** current install user different from configured user. Logging may fail!!" ;\
1222         fi ;\
1223         $(CHMOD) $(RWD_MODE) $(LOG_DEST)/logfile $(LOG_DEST)/jarfile || exit 1 ;\
1224         if [ "$(prefix)" = "/usr/local" ] || [ "$(prefix)" = "/usr" ]; then \
1225                 if [ -f /etc/slackware-version ] && [ -d /etc/rc.d/ ] && [ -w /etc/rc.d/ ] ; then \
1226                $(SED) 's+%PROGRAM%+$(PROGRAM)+' slackware/rc.privoxy.orig | \
1227                $(SED) 's+%SBIN_DEST%+$(SBIN_DEST)+' | \
1228                $(SED) 's+%CONF_DEST%+$(CONF_DEST)+' | \
1229                $(SED) 's+%USER%+$$USER+' | \
1230                $(SED) 's+%GROUP%+$(GROUP_T)+' >slackware/rc.privoxy ;\
1231                         $(INSTALL) $(INSTALL_P) slackware/rc.privoxy /etc/rc.d/ ;\
1232                $(ECHO) "Installing for Slackware." ;\
1233                $(ECHO) "Dont forget to add the rc.privoxy to rc.local if you want it started at every boot" ;\
1234                 elif [ -f /etc/redhat-release ] && [ -d /etc/rc.d/init.d/ ] && [ -w /etc/rc.d/init.d/ ] ; then \
1235                $(ECHO) "Installing init script to /etc/rc.d/init.d/privoxy" ;\
1236                         $(SED) 's,^PRIVOXY_BIN=.*,PRIVOXY_BIN="/usr/local/sbin/$(PROGRAM)",' privoxy.init |\
1237                         $(SED) 's,^PRIVOXY_CONF=.*,PRIVOXY_CONF="$(CONF_DEST)/config",' |\
1238                         $(SED) "s,^PRIVOXY_USER=.*,PRIVOXY_USER=$$USER," > init.tmp ;\
1239                         $(INSTALL) $(INSTALL_P) init.tmp /etc/rc.d/init.d/privoxy && $(RM) init.tmp;\
1240                         $(MKDIR) /etc/logrotate.d/ ;\
1241                         $(ECHO) "Installing logrotate script to /etc/logrotate.d/" ;\
1242                         $(INSTALL) -m 0644 privoxy.logrotate /etc/logrotate.d/privoxy ;\
1243                 elif [ -d /etc/init.d ] && [ -w /etc/init.d ] ; then \
1244                         $(ECHO) "Installing generic init script to /etc/init.d/privoxy" ;\
1245                         $(ECHO) "Please check that the PATHs are correct, and edit if needed." ;\
1246                         $(INSTALL) $(INSTALL_P) privoxy-generic.init /etc/init.d/privoxy ;\
1247                 fi ;\
1248         else \
1249                 $(ECHO) "No init script installed, install it manually if needed" ;\
1250         fi
1251         $(RM) config.base config.tmp
1252         @# mmmmm, good.
1253         @$(ECHO) "$(PROGRAM_V) installation succeeded!"
1254         @$(ECHO) "The Privoxy configuration files have been installed in $(CONF_DEST)"
1255
1256 # rmdir is used as a precaution since it will not remove non-empty
1257 # directories. RH init script creates lock file and pid file.
1258 uninstall: CONF_DEST LOG_DEST PID_DEST check_doc
1259         @$(ECHO) Starting Privoxy uninstallation
1260         @# KILL privoxy if running
1261         -@if [ -f /etc/redhat-release ] && [ -x /etc/rc.d/init.d/privoxy ]; then \
1262                 /etc/rc.d/init.d/privoxy stop >/dev/null 2>/dev/null ;\
1263                 chkconfig --del $(PROGRAM) 2>/dev/null;\
1264         fi
1265         -@test -f $(PID_DEST)/privoxy.pid && $(ECHO) Stopping $(PROGRAM) &&\
1266          $(KILL) `$(CAT) $(PID_DEST)/privoxy.pid` || :
1267         -@test -f /var/run/privoxy.pid && $(ECHO) Stopping $(PROGRAM) &&\
1268           $(KILL) `$(CAT) /var/run/privoxy.pid ` || :
1269
1270         @# Program binary
1271         @$(ECHO) Removing $(PROGRAM) binary
1272         $(RM) $(SBIN_DEST)/$(PROGRAM) $(SBIN_DEST)/$(PROGRAM)~
1273
1274         @# config files and dir, and maybe old install backups
1275         -@if [ -d $(CONF_DEST) ]; then \
1276                 $(ECHO) Saving $(PROGRAM) config files to /tmp/$(PROGRAM)-save ;\
1277                 $(MKDIR) /tmp/$(PROGRAM)-save ;\
1278                 cd $(CONF_DEST) ;\
1279                 for i in $(CONFIGS); do \
1280                         [ -f $$i ] && $(CP) $$i /tmp/$(PROGRAM)-save ;\
1281                 done ;\
1282         fi
1283         @$(ECHO) Removing $(PROGRAM) config files
1284         -@for i in $(CONFIGS); do \
1285                 test -f $(CONF_DEST)/$$i && $(ECHO) Removing $$i ;\
1286                 $(RM) $(CONF_DEST)/$$i $(CONF_DEST)/$$i~ $(CONF_DEST)/$$i.new ;\
1287         done
1288         -@test -d $(CONF_DEST)/templates && $(RM) -r $(CONF_DEST)/templates &&\
1289         $(ECHO) "Removing $(CONF_DEST)/templates/*"
1290
1291         @# man page and docs
1292         @$(ECHO) Removing $(PROGRAM) docs
1293         -$(RM) $(MAN_DEST)/privoxy.1*
1294         -$(RM) -r $(DOC_DEST) || $(RM) -r $(prefix)/doc/privoxy
1295
1296         @# Log and jarfile and pidfile
1297         @$(ECHO) Removing $(PROGRAM) logs
1298         -$(RM) $(LOG_DEST)/logfile $(PID_DEST)/privoxy.pid $(LOG_DEST)/jarfile
1299
1300         @# Final clean up of unused directories. Special handling of CONF and LOG
1301      # destinations.
1302         @$(ECHO) Removing $(PROGRAM) directories
1303         @for i in $(LOG_DEST) $(CONF_DEST); do \
1304                 if test -d $$i; then \
1305                         $(ECHO) Removing $$i ;\
1306                         $(RMDIR) $$i || $(ECHO) "$$i is not empty, not removed" ;\
1307                 fi;\
1308         done
1309         @if [  ! "$(prefix)" = "/usr/local" ] ;then \
1310                 for i in $(MAN_DEST) $(MAN_DIR) $(SHARE_DEST)/doc $(SHARE_DEST) $(SBIN_DEST); do \
1311                         if test -d $$i; then \
1312                                 $(ECHO) Removing $$i ;\
1313                                 $(RMDIR) $$i || $(ECHO) "$$i is not empty, not removed" ;\
1314                         fi;\
1315                 done;\
1316                 if test $(LOG_DEST) != /var/log/privoxy && test -d $(prefix)/var/log; then \
1317                         $(ECHO) Removing $(prefix)/var/log ;\
1318                         $(RMDIR) $(prefix)/var/log || $(ECHO) "$(prefix)/var/log is not empty, not removed";\
1319                 fi ;\
1320                 if test $(PID_DEST) != /var/run && test -d $(prefix)/var/run; then \
1321                         $(ECHO) Removing $(prefix)/var/run ;\
1322                         $(RMDIR) $(prefix)/var/run || $(ECHO) "$(prefix)/var/run is not empty, not removed";\
1323                 fi ;\
1324                 if test $(prefix)/var != /var && test -d $(prefix)/var; then \
1325                         $(ECHO) Removing $(prefix)/var ;\
1326                         $(RMDIR) $(prefix)/var || $(ECHO) "$(prefix)/var is not empty, not removed" ;\
1327                 fi ;\
1328                 if test $(prefix) != / && test $(prefix) != /usr && test -d $(prefix); then \
1329                         $(ECHO) Removing $(prefix) ;\
1330                         $(ECHO) Removing installation directory $(prefix) ;\
1331                         $(RMDIR) $(prefix) || $(ECHO) "$(prefix) is not empty, not removed" ;\
1332                 fi;\
1333         fi
1334
1335         @# init scripts and logrotate
1336         @if [ "$(prefix)" = "/usr/local" ] || [ "$(prefix)" = "/usr" ]; then \
1337                 $(ECHO) Removing $(PROGRAM) init script ;\
1338                 if [ -f /etc/slackware-version ] && [ -d /etc/rc.d/ ]  && [ -w /etc/rc.d/ ] ; then \
1339                         $(RM) /etc/rc.d/rc.privoxy ;\
1340                 elif [ -f /etc/redhat-release ] && [ -d /etc/rc.d/init.d/ ]  && [ -w /etc/rc.d/init.d/ ] ; then \
1341                         $(RM) /etc/rc.d/init.d/privoxy /etc/logrotate.d/privoxy;\
1342                 elif [ -d /etc/init.d ] && [ -w /etc/init.d ] ; then \
1343                         $(RM) /etc/init.d/privoxy ;\
1344                 else \
1345                         $(ECHO) "Unable to remove privoxy init script, not installed or permission denied" ;\
1346                 fi ;\
1347         fi
1348         @$(ECHO) Privoxy uninstalled, bye
1349
1350 coffee:
1351          @perl -e 'print pack "C*", (31,139,8,8,153,63,226,60,2,3,99,111,102,102,101,101,0,109,143,205,13,192,32,8,133,\
1352                   239,78,241,110,234,1,28,160,171,152,208,53,26,117,247,22,165,73,137,125,9,1,62,126,2,128,169,5,243,143,\
1353                   13,139,49,164,65,100,149,152,102,73,141,88,73,178,116,205,100,69,253,36,102,81,49,83,236,19,225,171,131,\
1354                   214,172,163,73,4,168,123,115,71,126,247,122,94,128,178,227,95,154,12,86,215,122,197,249,146,187,54,220,125,\
1355                   193,51,228,11,1,0,0);'|zcat
1356
1357 #############################################################################
1358
1359 ## Local Variables:
1360 ## tab-width: 3
1361 ## end:
1362
1363 # $Log: GNUmakefile.in,v $
1364 # Revision 1.146  2006/09/08 23:57:19  hal9
1365 # User manual images are now user-manual doc directory, and fix make install
1366 # target accordingly.
1367 #
1368 # Revision 1.145  2006/09/08 02:32:00  hal9
1369 # Various changes to implement building and installing docs to be compatible
1370 # with the new "user-manual" settings in config from Roland. Docbook does not
1371 # seem to like dealing with more than one css file, so workaround that here.
1372 # Change 'make install' so it provides p_doc.css in the user-manual doc
1373 # directory so that functions well, and lastly modify 'make install' so that the
1374 # PATH is automatically set, and the 'user-manual' directive should done during
1375 # the install.
1376 #
1377 # Revision 1.144  2006/09/07 22:53:20  hal9
1378 # Make sure config sgml build related artifacts are cleaned out.
1379 #
1380 # Revision 1.143  2006/09/02 15:59:40  hal9
1381 # Add to code status to make install output.
1382 #
1383 # Revision 1.142  2006/08/29 01:46:24  hal9
1384 # Add user.filter to $CONFIGS.
1385 #
1386 # Revision 1.141  2006/08/12 03:54:37  david__schmidt
1387 # Windows service integration
1388 #
1389 # Revision 1.140  2006/07/18 14:48:45  david__schmidt
1390 # Reorganizing the repository: swapping out what was HEAD (the old 3.1 branch)
1391 # with what was really the latest development (the v_3_0_branch branch)
1392 #
1393 # Revision 1.104.2.28  2004/06/10 17:06:05  hal9
1394 # Fix bug #959617, by moving TMPDIR var to create-snapshot target, which is the
1395 # only place it is used.
1396 #
1397 # Revision 1.104.2.27  2004/02/07 16:11:10  oes
1398 # Make clobber remove the autom4te.cache dir.
1399 # Closes BR #889300
1400 #
1401 # Revision 1.104.2.26  2004/01/31 16:32:25  oes
1402 # Adding a check for an htmldoc variant from the debian diff
1403 #
1404 # Revision 1.104.2.25  2004/01/31 01:15:33  oes
1405 # Fixed a typo; updated copyright notice
1406 #
1407 # Revision 1.104.2.24  2003/12/03 10:30:02  oes
1408 # - Added new dependency: actions.c -> ssplit.h
1409 # - Excluded PDF docs from src tarball
1410 #
1411 # Revision 1.104.2.23  2003/04/20 17:28:52  hal9
1412 # Strip trailing spaces from config-file generation, bug #724596.
1413 #
1414 # Revision 1.104.2.22  2003/03/28 03:32:01  hal9
1415 # Minor changes for Privoxy home page:
1416 #  - Handle &copy; more sanely
1417 #  - include link to announce.txt
1418 # Also, disable 'make announce' target.
1419 #
1420 # Revision 1.104.2.21  2002/11/04 07:04:03  hal9
1421 # Catch up with main trunk install/uninstall. Quiet output, etc.
1422 #
1423 # Revision 1.104.2.20  2002/10/25 02:44:22  hal9
1424 # Port of make install, etc from main trunk. Needs testing! Add Slackware
1425 # support, and other related changes. Update related docs.
1426 #
1427 # Revision 1.104.2.19  2002/09/26 22:50:02  hal9
1428 # New user-manual examples in config-file are getting wrapped. Add warning.
1429 #
1430 # Revision 1.104.2.18  2002/08/23 12:22:40  oes
1431 # Added warning to broken install target
1432 #
1433 # Revision 1.104.2.17  2002/08/16 03:19:34  hal9
1434 # More (minor) cleanup of html before pdf processing to make some relative
1435 # links work as pdf -> pdf. Upload pdf as zip archive now.
1436 #
1437 # Revision 1.104.2.16  2002/08/14 16:43:27  hal9
1438 # Added pdf docs to make webserver target.
1439 #
1440 # Revision 1.104.2.15  2002/08/11 20:02:41  hal9
1441 # New targets for man page (make man) and pdf (make dok-pdf) targets.
1442 #
1443 # Revision 1.104.2.14  2002/08/10 11:19:37  oes
1444 # - Make -Ipcre (again) conditional on STATIC_PCRE
1445 # - $(RPMBUILD) -> $(RPM) for SuSE
1446 # - Add dependency: pcrs.o deps on config.h
1447 #
1448 # Revision 1.104.2.13  2002/08/07 15:13:54  hal9
1449 # Remove pdf2 target, and make it dok-shtml (single page html for pdf
1450 # conversion).
1451 #
1452 # Revision 1.104.2.12  2002/08/06 11:29:36  oes
1453 # Fixed detection/inclusion of pcre.h, which is in a pcre subdir on RH
1454 #
1455 # Revision 1.104.2.11  2002/07/30 19:38:11  hal9
1456 # Add redhat-test target for testing purposes only. Fix RPM_PACKAGEV to what
1457 # *I think* it was supposed to be (was breaking upload targets since it was
1458 # set to RPM_VERSION).
1459 #
1460 # Revision 1.104.2.10  2002/07/27 22:56:53  kick_
1461 # cleanups of the redhat-srpm target
1462 #
1463 # Revision 1.104.2.9  2002/07/26 15:17:02  oes
1464 # - Added generation of default.action from defaul.action.master
1465 # - Deleted obsolete re_filterfile.txt generation
1466 #
1467 # Revision 1.104.2.8  2002/07/12 10:04:32  kick_
1468 # added helper targets to the makefile. They shouldn't break anything, but
1469 # make my life a lot easier.
1470 #
1471 # The new rpm has been splitted into two parts, one for package installation/
1472 # removal, one for package building.
1473 # Therefore rpm -ta isn't a valid command anymore and needs to be replaced
1474 # by rpmbuild -ta  (this is backwards compatible)
1475 #
1476 # Revision 1.104.2.7  2002/06/07 00:23:47  hal9
1477 # Fixing a quirk of man2html (on my system) that pulls punctuation into URLs,
1478 # thus breaking them completely.
1479 #
1480 # Revision 1.104.2.6  2002/06/02 03:26:25  hal9
1481 # Update CONFIG_FILES (ie update basic.action, etc), and also DOC_FILES (exclude
1482 # index.html and team/index.html)
1483 #
1484 # Revision 1.104.2.5  2002/05/30 15:35:01  hal9
1485 # This is more cleanup on the make config-file target. Most issues for
1486 # automatic generation are taken care of. There are still some problems
1487 # that require hand editing. Namely, some of the examples that are > 80 chars.
1488 #
1489 # Revision 1.104.2.4  2002/05/29 02:12:17  hal9
1490 # Ooops...forgot about perl -pi cygwin problem. Add -pi.bak. Also, the
1491 # new target is 'make config-file', _not_ make config.
1492 #
1493 # Revision 1.104.2.3  2002/05/29 02:05:48  hal9
1494 # 'make config' target added (WIP) for future generation of config file from
1495 # text in u-m so the two are in sync. New generated config, which requires
1496 # some hand editing for the time being.
1497 #
1498 # Revision 1.104.2.2  2002/05/28 02:32:55  hal9
1499 # New target 'make dok-index' for privoxy-index.html. Also, fixed *.bak files
1500 # not being cleaned up in doc/webserver.
1501 #
1502 # Revision 1.104.2.1  2002/05/26 17:19:34  hal9
1503 # Remove Table of Contents from readme with oes's dsl trick.
1504 #
1505 # Revision 1.104  2002/05/24 00:03:49  oes
1506 # Use p_doc.css for the Homepage for consistency
1507 #
1508 # Revision 1.103  2002/05/23 23:19:00  oes
1509 # Use dsl without TOC for the homepage
1510 #
1511 # Revision 1.102  2002/05/16 01:20:17  hal9
1512 # make announce target added.
1513 #
1514 # Revision 1.101  2002/05/15 12:28:46  oes
1515 # Trying to keep Hal happy :)
1516 #
1517 # Revision 1.100  2002/05/08 13:48:18  hal9
1518 # Ooops, that trashed JB v2.0.2 comment. Fixed.
1519 #
1520 # Revision 1.99  2002/05/08 13:42:07  hal9
1521 # This fixes the numbering problem on index.html in contact info section (.1.). Using
1522 # perl, since its way too convoluted to try to fix proper with docbook.
1523 #
1524 # Revision 1.98  2002/05/03 14:33:06  oes
1525 # Replaced ldp(OK).dsl handling with generation via autoconf; handle all file exeptions to src tarball via find
1526 #
1527 # Revision 1.97  2002/04/27 20:27:43  swa
1528 # no longer needed due to new
1529 # PACKAGE_VERSION process
1530 #
1531 # Revision 1.96  2002/04/27 17:44:32  morcego
1532 # - Correcting typo in my name (Rodrigo, not Rodgrigo) :-)
1533 # - Using the RM macro everywhere rm is called (either we use, or don't)
1534 # - Same for RPM
1535 #
1536 # Revision 1.95  2002/04/27 15:37:25  swa
1537 # replacing directory in document creation process
1538 # no longer necessary.
1539 #
1540 # Revision 1.94  2002/04/27 08:23:29  swa
1541 # pdf process reviewed and cleaned up
1542 #
1543 # Revision 1.93  2002/04/27 04:55:53  morcego
1544 # privoxy-cl.spec now gets removed by clobber target
1545 #
1546 # Revision 1.92  2002/04/27 04:53:40  morcego
1547 # Adding --exclude "PACKAGERS" to every tar command that applies (not for
1548 #   webserver target)
1549 #
1550 # Revision 1.91  2002/04/27 04:44:51  morcego
1551 # GNUmakefile.in: The tarball created on redhat-dist and suse-dist now ignore
1552 #   the PACKAGERS file, as well privoxy-cl.spec (in case it was created)
1553 # GNUmakefile.in: New targets -> conectiva-spec, conectiva-dist and
1554 #   conectiva-upload
1555 # genclspec.sh  : New file to generate, from privoxy-rh.spec, a specfile
1556 #   for Conectiva Linux
1557 #
1558 # Revision 1.90  2002/04/26 17:46:53  swa
1559 # be consistent
1560 #
1561 # Revision 1.89  2002/04/26 17:20:54  swa
1562 # just produce single html files to proces them later with Destiller or somesuch. looks prettier.
1563 #
1564 # Revision 1.88  2002/04/25 19:13:57  morcego
1565 # Removed RPM release number declaration on configure.in
1566 # Changed makefile to use given value for RPM_PACKAGEV when on uploading
1567 # targets (will produce an error, explaining who to do it, if no value
1568 # if provided).
1569 #
1570 # Revision 1.87  2002/04/23 14:10:59  swa
1571 # now create pdf documents
1572 #
1573 # Revision 1.86  2002/04/15 04:30:27  hal9
1574 # Missed two -pi.bak's on perl/cygwin problem.
1575 #
1576 # Revision 1.85  2002/04/14 01:05:34  hal9
1577 # Revert dok-webserver change for SF logo.
1578 #
1579 # Revision 1.84  2002/04/13 22:43:25  hal9
1580 # -Fix dok-webserver for SF logo (more perl).
1581 # -Change all perl -pi to perl -pi.bak for Cygwin problem.
1582 #
1583 # Revision 1.83  2002/04/12 09:39:25  oes
1584 # Excluding yet more files from tarball; making dist warning yet more scary
1585 #
1586 # Revision 1.82  2002/04/11 21:07:11  oes
1587 # Excluding more files from tarball build
1588 #
1589 # Revision 1.81  2002/04/11 14:40:27  oes
1590 # Fixed typo -- Thanks, Moritz!
1591 #
1592 # Revision 1.80  2002/04/11 12:50:00  oes
1593 # Fixed tarball-dist target
1594 #
1595 # Revision 1.79  2002/04/11 06:49:28  oes
1596 # webserver target: silenced timestamp warnings resulting from uploading westwards, made permissions fixing independant of screwed local dir permissions, suppress (false alarm) make error if not owner of feedback log
1597 #
1598 # Revision 1.78  2002/04/09 13:37:11  sarantis
1599 # fix tar options typo
1600 #
1601 # Revision 1.77  2002/04/09 13:28:53  swa
1602 # build suse and gen-dist with html docs
1603 #
1604 # Revision 1.76  2002/04/08 22:43:41  oes
1605 # Fix: Include dotfiles in fixing webserver permissions
1606 #
1607 # Revision 1.75  2002/04/08 22:14:59  oes
1608 # Silencing tar warnings in the web* targets
1609 #
1610 # Revision 1.74  2002/04/08 15:22:44  hal9
1611 # This has finishing touches for dok building. Should be ready to go.
1612 # -The main doc build is now 'make dok', should work on Redhat too.
1613 # -Removed man page from main doc build. It is built separately due to
1614 #  perl scripts that most aren't likely to have.
1615 #
1616 # Revision 1.73  2002/04/08 14:03:24  oes
1617 # oes for al: Fix install target
1618 #
1619 # Revision 1.72  2002/04/08 13:42:11  oes
1620 # Added safety check to *-dist targets; fixed permissions for feedback logfile
1621 #
1622 # Revision 1.71  2002/04/07 20:32:03  hal9
1623 # -Add meta data kludge for make dok-webserver via $(PERL).
1624 # -Add subdirs for 'make dok-release'.
1625 #
1626 # Revision 1.70  2002/04/07 08:59:40  swa
1627 # generated files. do NOT edit.
1628 # fixed directory bug in makefile.
1629 #
1630 # Revision 1.69  2002/04/07 08:10:47  swa
1631 # create some of the webserver docs
1632 # automatically (in particular if
1633 # those docs recycle other documentation
1634 # fragments). Now committed webserver's
1635 # index file.
1636 #
1637 # Revision 1.68  2002/04/07 07:58:11  swa
1638 # create some of the webserver docs
1639 # automatically (in particular if
1640 # those docs recycle other documentation
1641 # fragments)
1642 #
1643 # Revision 1.67  2002/04/07 05:31:42  hal9
1644 # Add 'dok-release' target:
1645 # -Set doc entities to VERSION and CODE_STATUS during make.
1646 # -Set doc conditional content flags (stable vs non-stable).
1647 # A separate target for the time being but needs to be incorporated into
1648 # dok build at some point.
1649 # -Filter out a spurious ^G from new man page > html converion in man2html.
1650 #
1651 # Revision 1.66  2002/04/06 20:28:21  jongfoster
1652 # Prettifying groff2html.
1653 # Using GNU Make's conditional makefile feature rather than shell "if"s.
1654 # (The shell "if"s were hiding errors)
1655 # "perl" -> "$(PERL)"
1656 # Spaces->tabs in a couple of places.
1657 #
1658 # Revision 1.65  2002/04/06 05:16:39  hal9
1659 # -Add 'authors' and 'man' targets for AUTHORS and man-page (WIP).
1660 # -Both of these will soon be generated files.
1661 #
1662 # Revision 1.64  2002/04/04 22:14:51  oes
1663 # No longer rely on find honoring -iname
1664 #
1665 # Revision 1.63  2002/04/04 21:06:22  swa
1666 # cosmetics.
1667 #
1668 # Revision 1.62  2002/04/04 20:49:50  swa
1669 # attempt to consolidate the
1670 # different dokbook versions.
1671 #
1672 # Revision 1.61  2002/04/04 19:18:21  swa
1673 # readme was leftover directory. use w3m instead
1674 # of lynx to be consistent among developers. use
1675 # consistent target naming.
1676 #
1677 # Revision 1.60  2002/04/04 12:25:41  oes
1678 # Tidy webserver upload w/o *~ files, CVS dirs and logfiles and with proper dir and file permissions
1679 #
1680 # Revision 1.59  2002/04/04 08:32:45  swa
1681 # wrong name for tarball-dist target. further fixed content of tarball dist
1682 #
1683 # Revision 1.58  2002/04/04 06:32:58  hal9
1684 # New dok targets for make readme.
1685 #
1686 # Revision 1.57  2002/04/04 00:36:36  gliptak
1687 # always use pcre for matching
1688 #
1689 # Revision 1.56  2002/04/03 22:28:03  gliptak
1690 # Removed references to gnu_regex
1691 #
1692 # Revision 1.55  2002/04/03 19:54:29  swa
1693 # freebsd tested to work. attempt to move tarball dist target forward
1694 #
1695 # Revision 1.54  2002/04/03 14:54:07  oes
1696 # Standard clean and clobber semantics II
1697 #
1698 # Revision 1.53  2002/04/03 14:19:16  oes
1699 # Standard clean and clobber semantics
1700 #
1701 # Revision 1.52  2002/04/03 02:56:18  hal9
1702 # Revert previous FAQ numbering kludge.
1703 #
1704 # Revision 1.51  2002/04/02 13:03:56  oes
1705 # Added fix for webserver permissions
1706 #
1707 # Revision 1.50  2002/04/02 03:46:24  hal9
1708 # Rewrite ldpOK.dsl so that sections are NOT numbered on FAQ, in an effort
1709 # to make the Table of Contents not so 'busy' looking. SuSE needs testing :)
1710 #
1711 # Revision 1.49  2002/03/30 22:20:12  swa
1712 # cd didn't work. neither did find.
1713 #
1714 # Revision 1.48  2002/03/30 19:04:06  swa
1715 # people release differently. no good.
1716 # I want to make parts of the docs only.
1717 #
1718 # Revision 1.47  2002/03/30 09:05:21  swa
1719 # better packaging. better rpm building.
1720 # tar failed on sun (no exclude there).
1721 #
1722 # Revision 1.46  2002/03/29 20:09:01  swa
1723 # al's patch
1724 #
1725 # Revision 1.45  2002/03/29 19:45:45  swa
1726 # for lazy swa
1727 #
1728 # Revision 1.44  2002/03/29 17:42:44  gliptak
1729 # Correcting for Solaris tar limitations
1730 #
1731 # Revision 1.43  2002/03/29 07:40:03  swa
1732 # fixed make webserver. doh
1733 #
1734 # Revision 1.42  2002/03/29 06:59:04  swa
1735 # other users could not modify files on webserver
1736 #
1737 # Revision 1.41  2002/03/28 20:43:00  swa
1738 # set make correctly
1739 #
1740 # Revision 1.40  2002/03/28 04:22:44  hal9
1741 # More on man2html stuff.
1742 #
1743 # Revision 1.39  2002/03/28 01:04:14  hal9
1744 # More man2html stuff for docs.
1745 #
1746 # Revision 1.38  2002/03/27 16:02:30  swa
1747 # have a generic target
1748 #
1749 # Revision 1.37  2002/03/27 15:30:26  swa
1750 # have a consistent appearance
1751 #
1752 # Revision 1.36  2002/03/27 14:58:08  swa
1753 # can be used by mutilple targets
1754 #
1755 # Revision 1.35  2002/03/27 14:53:19  swa
1756 # added solaris-dist
1757 #
1758 # Revision 1.34  2002/03/27 10:30:11  swa
1759 # we want a html man file on the webserver
1760 #
1761 # Revision 1.33  2002/03/27 03:05:35  hal9
1762 # Added man2html target for docs (redhat-dok only for now)
1763 #
1764 # Revision 1.32  2002/03/26 22:29:54  swa
1765 # we have a new homepage!
1766 #
1767 # Revision 1.31  2002/03/26 14:00:18  swa
1768 # fixed make tarball, tarball-dist, tarball-clean
1769 #
1770 # Revision 1.30  2002/03/25 12:52:25  swa
1771 # new targets
1772 #
1773 # Revision 1.29  2002/03/24 17:03:55  jongfoster
1774 # Name change
1775 #
1776 # Revision 1.28  2002/03/24 16:19:48  swa
1777 # configure needs to be generated.
1778 #
1779 # Revision 1.27  2002/03/24 16:13:57  swa
1780 # generated files are a nono in cvs
1781 #
1782 # Revision 1.26  2002/03/24 15:36:02  swa
1783 # did not build.
1784 #
1785 # Revision 1.25  2002/03/24 14:31:08  swa
1786 # remove more crappy files. set RPM
1787 # release version correctly.
1788 #
1789 # Revision 1.24  2002/03/24 14:19:55  swa
1790 # set rpm package release in configure.in. nowhere else.
1791 #
1792 # Revision 1.23  2002/03/24 13:06:49  swa
1793 # suse-clean now runs fine
1794 #
1795 # Revision 1.22  2002/03/24 12:56:21  swa
1796 # name change related issues.
1797 #
1798 # Revision 1.21  2002/03/24 12:43:57  swa
1799 # name change
1800 #
1801 # Revision 1.20  2002/03/24 11:39:17  jongfoster
1802 # Renaming config files
1803 #
1804 # Revision 1.19  2002/03/22 20:53:03  morcego
1805 # - Ongoing process to change name to JunkbusterNG
1806 # - configure/configure.in: no change needed
1807 # - GNUmakefile.in:
1808 #         - TAR_ARCH = /tmp/JunkbusterNG-$(RPM_VERSION).tar.gz
1809 #         - PROGRAM    = jbng@EXEEXT@
1810 #         - rh-spec now references as junkbusterng-rh.spec
1811 #         - redhat-upload: references changed to junkbusterng-* (package names)
1812 #         - tarball-dist: references changed to JunkbusterNG-distribution-*
1813 #         - tarball-src: now JunkbusterNG-*
1814 #         - install: initscript now junkbusterng.init and junkbusterng (when
1815 #                    installed)
1816 # - junkbuster-rh.spec: renamed to junkbusterng-rh.spec
1817 # - junkbusterng.spec:
1818 #         - References to the expression ijb where changed where possible
1819 #         - New package name: junkbusterng (all in lower case, acording to
1820 #           the LSB recomendation)
1821 #         - Version changed to: 2.9.13
1822 #         - Release: 1
1823 #         - Added: junkbuster to obsoletes and conflicts (Not sure this is
1824 #           right. If it obsoletes, why conflict ? Have to check it later)
1825 #         - Summary changed: Stefan, please check and aprove it
1826 #         - Changes description to use the new name
1827 #         - Sed string was NOT changed. Have to wait to the manpage to
1828 #           change first
1829 #         - Keeping the user junkbuster for now. It will require some aditional
1830 #           changes on the script (scheduled for the next specfile release)
1831 #         - Added post entry to move the old logfile to the new log directory
1832 #         - Removing "chkconfig --add" entry (not good to have it automaticaly
1833 #           added to the startup list).
1834 #         - Added preun section to stop the service with the old name, as well
1835 #           as remove it from the startup list
1836 #         - Removed the chkconfig --del entry from the conditional block on
1837 #           the preun scriptlet (now handled on the %files section)
1838 # - junkbuster.init: renamed to junkbusterng.init
1839 # - junkbusterng.init:
1840 #         - Changed JB_BIN to jbng
1841 #         - Created JB_OBIN with the old value of JB_BIN (junkbuster), to
1842 #           be used where necessary (config dir)
1843 #
1844 # Aditional notes:
1845 # - The config directory is /etc/junkbuster yet. Have to change it on the
1846 # specfile, after it is changes on the code
1847 # - The only files that got renamed on the cvs tree were the rh specfile and
1848 # the init file. Some file references got changes on the makefile and on the
1849 # rh-spec (as listed above)
1850 #
1851 # Revision 1.18  2002/03/21 23:00:00  swa
1852 # want to autogenerate stuff.
1853 #
1854 # Revision 1.17  2002/03/19 19:30:04  morcego
1855 # - Fixing stylesheet checking on configure. If it is found, no further checks
1856 #   should be done
1857 #
1858 # - configure will now check for db2html or docbook2html (should work now
1859 #   on SuSe without the docbktls package)
1860 #
1861 # Revision 1.16  2002/03/14 22:32:32  hal9
1862 # Bumped the RPM version.
1863 #
1864 # Revision 1.15  2002/03/08 20:00:28  swa
1865 # some leftovers.
1866 #
1867 # Revision 1.14  2002/03/07 18:25:56  swa
1868 # synced redhat and suse build process
1869 #
1870 # Revision 1.13  2002/03/07 17:17:56  oes
1871 # (Hopefully) fixed for older make versions
1872 #
1873 # Revision 1.12  2002/03/07 15:28:27  swa
1874 # more informative
1875 #
1876 # Revision 1.11  2002/03/06 14:33:18  sarantis
1877 # Use proper temp file, not "abc".
1878 #
1879 # Revision 1.10  2002/03/06 14:19:35  sarantis
1880 # Cleanup PID_FILE_PATH from redhat-dist target
1881 #
1882 # Revision 1.9  2002/03/05 17:31:11  morcego
1883 # Search for docbook.dsl. Should solve portability problems for SuSe.
1884 #
1885 # Revision 1.8  2002/03/05 14:07:42  morcego
1886 # configure now detects rpm topdir, and change GNUmakefile acordingly
1887 #    (based on sugestion by Sarantis Paskalis)
1888 #
1889 # Revision 1.7  2002/03/05 13:43:28  morcego
1890 # Checking for text browser, so redhat-dok can work.
1891 #
1892 # Revision 1.6  2002/03/05 13:10:51  morcego
1893 # Changes to implement redhat-dok (Hal Burgiss)
1894 # Changes to make it work on other distros and out-of-the-shelf configurations
1895 #
1896 # Revision 1.5  2002/02/27 15:30:39  hal9
1897 # Reset $(RPM_PACKAGEV) to 1 (was 2)
1898 #
1899 # Revision 1.4  2002/01/17 21:44:04  jongfoster
1900 # Adding urlmatch.[ch]
1901 #
1902 # Revision 1.3  2002/01/04 15:26:08  oes
1903 # Added tarball-src target
1904 #
1905 # Revision 1.2  2001/12/30 14:07:31  steudten
1906 # - Add signal handling (unix)
1907 # - Add SIGHUP handler (unix)
1908 # - Add creation of pidfile (unix)
1909 # - Add action 'top' in rc file (RH)
1910 # - Add entry 'SIGNALS' to manpage
1911 # - Add exit message to logfile (unix)
1912 #
1913 # Revision 1.1  2001/12/01 11:22:57  jongfoster
1914 # Renaming Makefile.in to GNUmakefile.in so that non-GNU versions of
1915 # make break in a more obvious way.
1916 # Adding .PHONY section.
1917 #
1918 # Revision 1.40  2001/12/01 00:24:11  jongfoster
1919 # Renaming various config files
1920 # Fixing CR->CRLF under Win32 (I hope)
1921 #
1922 # Revision 1.39  2001/11/06 12:07:30  steudten
1923 # Add --clean for building rpm in target redhat-dist.
1924 #
1925 # Revision 1.38  2001/11/05 21:35:23  steudten
1926 # Complete rewrite for the 'redhat-dist' target.
1927 # Checks for writeable RPM build directories for calling user.
1928 # So you must not be root, just set the modes to 1777 to
1929 # build a RH package.
1930 # Fix the upload-target to be arch independant.
1931 # Add target for 'solaris-dist' - coming soon.
1932 #
1933 # Revision 1.37  2001/11/01 00:52:04  hal9
1934 # Redhat-upload stuff per Stefan.
1935 #
1936 # Revision 1.36  2001/10/31 19:26:13  swa
1937 # automate process of uploading new releases
1938 # to sf.
1939 #
1940 # Revision 1.35  2001/10/15 22:14:59  joergs
1941 # Removed -O2 and -Wall from AmigaOS-only CFLAGS since they are now in
1942 #  the general CFLAGS already.
1943 #
1944 # Revision 1.34  2001/10/15 18:28:06  steudten
1945 # remove config.cache for target clobber.
1946 # Cleanup make dist for RH and S.u.S.E.
1947 #
1948 # Revision 1.33  2001/10/10 12:43:33  oes
1949 # Added ugly hack to make install target work at least for some setups.
1950 #
1951 # Revision 1.32  2001/10/09 22:38:19  jongfoster
1952 # Correcting actionsfile filename for Win32 INI build
1953 #
1954 # Revision 1.31  2001/09/23 10:13:48  swa
1955 # upload process established. run make webserver and
1956 # the documentation is moved to the webserver. documents
1957 # are now linked correctly.
1958 #
1959 # Revision 1.30  2001/09/19 17:55:49  oes
1960 # Fixed CFLAGS
1961 #
1962 # Revision 1.29  2001/09/16 17:34:27  jongfoster
1963 # Removing showargs.[ch], adding cgi(simple|edit).[ch]
1964 # Replacing $(OBJEXT) with @OBJEXT@ - this seems to be a common source
1965 # of build problems.
1966 #
1967 # Revision 1.28  2001/09/13 15:19:08  swa
1968 # we want text files as well.
1969 #
1970 # Revision 1.27  2001/09/13 13:11:37  steudten
1971 #
1972 # Replace DEBUG_CFLAGS with OTHER_CFLAGS
1973 #
1974 # Revision 1.26  2001/09/12 23:44:54  david__schmidt
1975 # Mac OSX (Darwin) support added.
1976 #
1977 # Revision 1.25  2001/09/12 22:55:45  joergs
1978 # AmigaOS support added.
1979 #
1980 # Revision 1.24  2001/09/12 17:28:59  david__schmidt
1981 #
1982 # OS/2 port: update autoconf'd support for the platform.
1983 #
1984 # Revision 1.23  2001/09/12 16:28:42  swa
1985 # added "make dok" section to generate html pages from
1986 # the sgml source documents. note that the we do not want
1987 # generated stuff in cvs.
1988 #
1989 # Revision 1.22  2001/09/10 16:31:23  swa
1990 # buildroot definition in the specfile fucks up the build
1991 # process under suse. hence I moved it to the "rpm -ta"
1992 # command
1993 #
1994 # Revision 1.21  2001/09/10 11:12:49  oes
1995 # Turning on -Wall
1996 #
1997 # Revision 1.20  2001/08/02 22:04:29  jongfoster
1998 # Removing some remaining references to obsolete w32rulesdlg.[ch]
1999 #
2000 # Revision 1.19  2001/07/30 22:14:03  jongfoster
2001 # Removing obsolete w32rulesdlg.c and w32rulesdlg.h
2002 #
2003 # Revision 1.18  2001/07/29 17:09:17  jongfoster
2004 # Major changes to build system in order to fix these bugs:
2005 # - pthreads under Linux was broken - changed -lpthread to -pthread
2006 # - Compiling in MinGW32 mode under CygWin now correctly detects
2007 #   which shared libraries are available
2008 # - Solaris support (?) (Not tested under Solaris yet)
2009 #
2010 # Revision 1.17  2001/07/28 16:44:54  oes
2011 # Fixed sed LF->CRLF conversion and removed deprecated files
2012 #
2013 # Revision 1.16  2001/07/15 19:45:33  jongfoster
2014 # Added support for linking with POSIX threads library
2015 #
2016 # Revision 1.15  2001/07/13 13:48:07  oes
2017 #  - Moved STATIC #define for pcre to (ac)config.h
2018 #  - Made -Ipcre depandant on static pcre compilation to
2019 #    avoid version conflicts
2020 #  - Included compilation and depandancies for new deanimate.c
2021 #  - Made changes to the pcre/pcreposix/pcrs build process
2022 #    as required by the new library autodetection in
2023 #    configure.in
2024 #
2025 # Revision 1.14  2001/07/01 16:27:44  oes
2026 # Fixed misplaced dependancy
2027 #
2028 # Revision 1.13  2001/06/29 13:18:36  oes
2029 # - added depandancy of filters.o on cgi.h
2030 #
2031 # Revision 1.12  2001/06/12 17:15:56  swa
2032 # fixes, because a clean build on rh6.1 was impossible.
2033 # GZIP confuses make, %configure confuses rpm, etc.
2034 #
2035 # Revision 1.11  2001/06/11 11:26:35  sarantis
2036 # RPM version should be the same as ijbswa version.  The rpm release is
2037 # specified in the specfile.
2038 #
2039 # Revision 1.10  2001/06/07 17:27:45  swa
2040 # added suse build section
2041 #
2042 # Revision 1.9  2001/06/04 18:31:58  swa
2043 # files are now prefixed with either `confdir' or `logdir'.
2044 # `make redhat-dist' replaces both entries confdir and logdir
2045 # with redhat values
2046 #
2047 # Revision 1.8  2001/06/04 10:44:57  swa
2048 # `make redhatr-dist' now works. Except for the paths
2049 # in the config file.
2050 #
2051 # Revision 1.7  2001/06/03 17:09:09  swa
2052 # swa for oes: reversed my earlier change
2053 #
2054 # Revision 1.6  2001/06/03 17:07:27  swa
2055 # swa for oes
2056 #
2057 # Revision 1.5  2001/06/03 13:57:26  swa
2058 # compile cgi.c (for andreas' GUI)
2059 #
2060 # Revision 1.4  2001/05/31 21:18:45  jongfoster
2061 # Added files actions.[ch], actionlist.h, list.[ch] to Makefile
2062 #
2063 # Revision 1.3  2001/05/29 20:02:48  joergs
2064 # Changes for AmigaOS added.
2065 #
2066 # Revision 1.2  2001/05/17 22:23:23  oes
2067 #  - Added auto-generation of CRLFs for Win32 config files
2068 #  - Added comment-prefix to all Win32-only options in the config file
2069 #    and provided auto stripping of this prefix for the Win32 platform by make
2070 #
2071 # Revision 1.1.1.1  2001/05/15 13:59:00  oes
2072 # Initial import of version 2.9.3 source tree
2073 #
2074 #