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