create some of the webserver docs
[privoxy.git] / GNUmakefile.in
1 # Note:  Makefile is built automatically from Makefile.in
2 #
3 # $Id: GNUmakefile.in,v 1.68 2002/04/07 07:58:11 swa 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 # will automatically be postfixed with -$(RPM_PACKAGEV) in the SPECfile
46 RPM_VERSION   = $(VERSION)
47 RPM_PACKAGEV  = @VERSION_RPM_PACKAGE@
48
49
50 #############################################################################
51 # Directories for "make install"
52 #############################################################################
53
54 DEST        = @prefix@
55 CONFDEST    = @prefix@@sysconfdir@
56 SBIN_DEST   = @prefix@@sbindir@
57 MAN_DEST    = @prefix@@mandir@
58
59
60 #############################################################################
61 # Build tools
62 #############################################################################
63
64 PROGRAM    = privoxy@EXEEXT@
65 CC         = @CC@
66 ECHO       = echo
67 GZIP_PROG  = gzip
68 #INSTALL    = cp -f
69 INSTALL    = @INSTALL@
70 INSTALL_P  = -m 0750 -g @GROUP@ -o @USER@ -b
71 INSTALL_T  = -m 0640 -g @GROUP@ -o @USER@ -b
72 INSTALL_D  = -m 0750 -g @GROUP@ -o @USER@ -d
73 LD         = @CC@
74 RM         = rm -f
75 STRIP_PROG = strip
76 SED        = sed
77 CAT        = cat
78 RPM        = rpm
79 MV         = mv
80 TAR        = tar
81 LN         = ln
82 WDUMP      = @WDUMP@ -dump
83 JADECAT    = @JADECAT@
84 JADEBIN    = @JADEBIN@
85 DB         = $(JADEBIN) $(JADECAT) -t sgml -ihtml -D.. -d ldpOK.dsl\#html
86 DB2HTML    = @DB2HTML@
87 DKPREFIX   = @DKPREFIX@
88 MAN2HTML   = @MAN2HTML@
89 G2H_CMD    = groff -mandoc -Thtml
90 TARGET_OS  = @host@
91 PERL       = perl
92
93 #User Group paras
94 USER       = @USER@
95 GROUP      = @GROUP@
96
97 # Program to do LF->CRLF
98 #
99 # The sed version should be the most portable, but it doesn't for for me,
100 # the other two do.  FIXME.
101 #   - Jon
102 #DOSFILTER  = $(SED) -e $$'s,$$,\r,'
103 #DOSFILTER  = gawk -v ORS='\r\n' '{print $0;}'
104 DOSFILTER  = $(PERL) -p -e 's/\n/\r\n/'
105
106 #############################################################################
107 # Setup for make distribution rh and suse for now 
108 #############################################################################
109
110 TAR_ARCH = /tmp/privoxy-$(RPM_VERSION).tar.gz
111 RPM_BASE = @RPM_BASE@
112
113 #############################################################################
114 # We include these files in our distributions
115 #############################################################################
116 # take care that no CVS .cvsignore or other crappy files
117 # are included here
118 # and escape every '#' in the find. doh.
119 CONFIG_FILES = config trust \
120                 default.action \
121                 basic.action intermediate.action advanced.action \
122                 default.filter \
123                 `find templates/ -type f | grep -v "CVS" | grep -v "\.\#" | grep -v ".*~" | grep -v ".cvsignore" | grep -v "TAGS"`
124
125 DOC_FILES = AUTHORS LICENSE README ChangeLog \
126                 `find doc/text/ -type f | grep -v "CVS" | grep -v "\.\#" | grep -v ".*~" | grep -v ".cvsignore" | grep -v "TAGS"` privoxy.1
127
128 #############################################################################
129 # Filenames and libraries
130 #############################################################################
131
132 C_SRC  = actions.c cgi.c cgiedit.c cgisimple.c deanimate.c encode.c \
133          errlog.c filters.c gateway.c jbsockets.c jcc.c killpopup.c \
134          list.c loadcfg.c loaders.c miscutil.c parsers.c ssplit.c \
135          urlmatch.c
136
137 C_OBJS = $(C_SRC:.c=.@OBJEXT@)
138 C_HDRS = $(C_SRC:.c=.h) project.h actionlist.h
139
140 W32_SRC   = @WIN_ONLY@w32log.c w32taskbar.c win32.c
141 W32_FILES = @WIN_ONLY@w32.res
142 W32_OBJS  = @WIN_ONLY@$(W32_SRC:.c=.@OBJEXT@) $(W32_FILES)
143 W32_HDRS  = @WIN_ONLY@w32log.h w32taskbar.h win32.h w32res.h
144 W32_LIB   = @WIN_ONLY@-lwsock32 -lcomctl32
145 W32_INIS  = @WIN_ONLY@config.txt trust.txt
146
147 PCRS_SRC     = @STATIC_PCRS_ONLY@pcrs.c
148 PCRS_OBJS    = @STATIC_PCRS_ONLY@$(PCRS_SRC:.c=.@OBJEXT@)
149 PCRS_HDRS    = @STATIC_PCRS_ONLY@$(PCRS_SRC:.c=.h)
150
151 PCRE_SRC     = @STATIC_PCRE_ONLY@pcre/get.c pcre/maketables.c pcre/study.c pcre/pcre.c
152 PCRE_OBJS    = @STATIC_PCRE_ONLY@$(PCRE_SRC:.c=.@OBJEXT@)
153 PCRE_HDRS    = @STATIC_PCRE_ONLY@pcre/config.h pcre/chartables.c pcre/internal.h pcre/pcre.h
154
155 # No REGEX (maybe because dynamically linked pcreposix):
156 REGEX_SRC    =
157 @STATIC_PCRE_ONLY@REGEX_SRC = pcre/pcreposix.c
158
159 REGEX_OBJS   = $(REGEX_SRC:.c=.@OBJEXT@)
160 REGEX_HDRS   = $(REGEX_SRC:.c=.h)
161
162 # Dependencies introduced by #include "project.h".
163 PROJECT_H_DEPS = project.h $(REGEX_HDRS) $(PCRS_HDRS) @STATIC_PCRE_ONLY@pcre/pcre.h
164
165 # Socket libraries for platforms that need them explicitly defined
166 SOCKET_LIB   = @SOCKET_LIB@
167
168 # PThreads library, if needed.
169 PTHREAD_LIB  = @PTHREAD_ONLY@@PTHREAD_LIB@
170
171 SRCS         = $(C_SRC)  $(W32_SRC)  $(PCRS_SRC)  $(PCRE_SRC)  $(REGEX_SRC)
172 OBJS         = $(C_OBJS) $(W32_OBJS) $(PCRS_OBJS) $(PCRE_OBJS) $(REGEX_OBJS)
173 HDRS         = $(C_HDRS) $(W32_HDRS) $(PCRS_HDRS) $(PCRE_OBJS) $(REGEX_HDRS)
174 LIBS         = @LIBS@ $(W32_LIB) $(SOCKET_LIB) $(PTHREAD_LIB)
175
176
177 #############################################################################
178 # Compiler switches
179 #############################################################################
180
181 # The flag "-mno-win32" can be used by Cygwin to emulate a un?x type build.
182 # The flag "-mwindows -mno-cygwin" will cause Cygwin to use MingW32 for a
183 # Win32 GUI build.
184 # The flag "-pthread" is required if using Pthreads under Linux (and
185 # possibly other OSs).
186 SPECIAL_CFLAGS = @SPECIAL_CFLAGS@
187
188 # Add your flags here 
189 OTHER_CFLAGS =   
190
191 CFLAGS = @CFLAGS@ @CPPFLAGS@ $(OTHER_CFLAGS) $(SPECIAL_CFLAGS) -Wall \
192          @STATIC_PCRE_ONLY@ -Ipcre 
193
194 LDFLAGS = $(DEBUG_CFLAGS) $(SPECIAL_CFLAGS)
195
196
197 #############################################################################
198 # Build section.
199 #
200 # There should NOT be any targets above this line.
201 #############################################################################
202 all: $(PROGRAM)
203
204
205 #############################################################################
206 # Phony targets
207 #############################################################################
208 .PHONY: all inifiles redhat-dist redhat-upload solaris-dist suse-dist \
209 suse-upload win-dist tarball-dist dok redhat-dok webserver clean clobber tags \
210 install
211
212
213 #############################################################################
214 # Define this explicitly because Solaris is broken!
215 #############################################################################
216 %.o: %.c
217         $(CC) -c $(CFLAGS) $(CPPFLAGS) $< -o $@
218
219
220 #############################################################################
221 # Win32 config files
222 #############################################################################
223
224 inifiles: $(W32_INIS)
225
226 config.txt: config
227         $(SED) -e 's!\trustfile trust!trustfile trust.txt!' \
228                -e 's!\jarfile jarfile!jarfile jar.log!' \
229                -e 's!\logfile logfile!logfile privoxy.log!' \
230                -e 's!#Win32-only: !!' \
231                < $< | \
232                $(DOSFILTER) > $@
233         # LF to CRLF in default.action
234         $(DOSFILTER) <default.action >default.action.txt && mv default.action.txt default.action
235         # LF to CRLF in default.filter
236         $(DOSFILTER) <default.filter >default.filter.txt && mv default.filter.txt default.filter
237
238 trust.txt: trust
239         $(DOSFILTER) < $< > $@ 
240
241 re_filterfile.txt: re_filterfile
242         $(DOSFILTER) < $< > $@ 
243
244 #############################################################################
245 # RPM specifice stuff (SuSE or Redhat, ..)
246 #############################################################################
247 rpm-stuff: clean clobber
248         for dir in RPMS SRPMS BUILD SOURCES SPECS; do \
249                 if [ ! -w $(RPM_BASE)/$$dir ]; then \
250                         $(ECHO) "$(RPM_BASE)/$$dir is not writable for you. Maybe try as root."; \
251                         $(ECHO) "Or add a suitable path to .rpmmacros like."; \
252                         $(ECHO) "%_topdir /home/foo/rpm-build"; \
253                         exit 1; \
254                 fi; \
255         done; \
256
257 #############################################################################
258 # redhat distribution alpha and x86
259 #############################################################################
260 redhat-dist: rpm-stuff
261         TMPFILE=$$(mktemp -q /tmp/$(PROGRAM).XXXXXX); \
262         if $(SED) -e 's/^\(Version:\).*/\1 $(RPM_VERSION)/g' \
263              -e 's/^\(Release:\).*/\1 $(RPM_PACKAGEV)/g' \
264               privoxy-rh.spec > $$TMPFILE ; then \
265         $(MV) -f $$TMPFILE privoxy-rh.spec; \
266         else \
267                 $(ECHO) "Could not set version info in specfile."; \
268         exit 1;\
269         fi
270
271         $(TAR) --exclude "CVS" --exclude "privoxy-suse.spec" -czf $(TAR_ARCH) .
272         $(RPM) --clean -ta  $(TAR_ARCH)
273         if [ -f $(TAR_ARCH) ]; then  $(RM) $(TAR_ARCH); fi
274
275 # anonymously ncftps the rpms to sourceforge
276 redhat-upload:
277         ncftpput -u anonymous -p ijbswa-developers@lists.sourceforge.net upload.sourceforge.net /incoming $(RPM_BASE)/SRPMS/privoxy-$(RPM_VERSION)-$(RPM_PACKAGEV).src.rpm
278 # better should use `arch` here instead of ix86 to support other platforms too
279         ncftpput -u anonymous -p ijbswa-developers@lists.sourceforge.net upload.sourceforge.net /incoming $(RPM_BASE)/RPMS/*/privoxy-$(RPM_VERSION)-$(RPM_PACKAGEV).*.rpm
280         @$(ECHO) -------------------------------------------------------
281         @$(ECHO) Now goto
282         @$(ECHO) http://sourceforge.net/project/admin/editpackages.php?group_id=11118
283         @$(ECHO) ... and release the files.
284         @$(ECHO) -------------------------------------------------------
285      # w3m http://sourceforge.net/project/admin/editpackages.php?group_id=11118
286
287 #############################################################################
288 # suse distribution. works fine. no need to be root. 
289 #############################################################################
290 suse-dist: rpm-stuff
291         TMPFILE=$$(mktemp -q /tmp/$(PROGRAM).XXXXXX); \
292         if $(SED) -e 's/^\(Version:\).*/\1 $(RPM_VERSION)/g' \
293              -e 's/^\(Release:\).*/\1 $(RPM_PACKAGEV)/g' \
294               privoxy-suse.spec > $$TMPFILE ; then \
295         $(MV) -f $$TMPFILE privoxy-suse.spec; \
296         else \
297                 $(ECHO) "Could not set version info in specfile."; \
298         exit 1;\
299         fi
300
301         $(TAR) --exclude "CVS" --exclude "privoxy-rh.spec" -czf $(TAR_ARCH) .
302         $(RPM) --clean -ta  $(TAR_ARCH)
303         if [ -f $(TAR_ARCH) ]; then  $(RM) $(TAR_ARCH); fi
304
305 # anonymously ncftps the rpms to sourceforge
306 suse-upload:
307         ncftpput -u anonymous -p ijbswa-developers@lists.sourceforge.net upload.sourceforge.net /incoming $(RPM_BASE)/SRPMS/privoxy-suse-$(RPM_VERSION)-$(RPM_PACKAGEV).src.rpm
308 # better should use `arch` here instead of ix86 to support other platforms too
309         ncftpput -u anonymous -p ijbswa-developers@lists.sourceforge.net upload.sourceforge.net /incoming $(RPM_BASE)/RPMS/*/privoxy-suse-$(RPM_VERSION)-$(RPM_PACKAGEV).*.rpm
310         @$(ECHO) -------------------------------------------------------
311         @$(ECHO) Now goto
312         @$(ECHO) http://sourceforge.net/project/admin/editpackages.php?group_id=11118
313         @$(ECHO) ... and release the files.
314         @$(ECHO) -------------------------------------------------------
315
316 # handle with care. use with root.
317 suse-clean:
318         rpm -e junkbuster-suse || true
319         rm -rf /etc/junkbuster
320         rm -rf /etc/rc.d/junkbuster*
321         rm -rf /var/run/junkbuster.pid 
322         rm -rf /var/log/junkbuster
323         rm -f /etc/init.d/junkbuster
324         rm -f /usr/sbin/junkbuster
325         rm -f /usr/sbin/rcjunkbuster
326         rm -f /usr/share/man/man1/junkbuster.1.gz
327         rpm -e privoxy-suse || true
328         rm -rf /etc/privoxy
329         rm -rf /etc/rc.d/privoxy*
330         rm -rf /var/run/privoxy.pid 
331         rm -rf /var/log/privoxy
332         rm -f /etc/init.d/privoxy
333         rm -f /usr/sbin/privoxy
334         rm -f /usr/sbin/rcprivoxy
335         rm -f /usr/share/man/man1/privoxy.1.gz
336
337 #############################################################################
338 # generic distribution
339 #############################################################################
340 gen-dist:
341         @$(ECHO) ""
342         @$(ECHO) "You have run autoconf && autoheader && ./configure right?"
343         @$(ECHO) ""
344         $(MAKE) $(PROGRAM)
345         $(STRIP_PROG) $(PROGRAM)
346         $(LN) -s current ../privoxy-$(VERSION)-$(CODE_STATUS)
347 # add program
348         (cd .. && $(TAR) -cvhf privoxy-$(TARGET_OS)-$(VERSION)-$(CODE_STATUS)-src.tar privoxy-$(VERSION)-$(CODE_STATUS)/$(PROGRAM))
349 # add config files
350         for foo in $(CONFIG_FILES); do \
351                 (cd .. && $(TAR) -uvhf privoxy-$(TARGET_OS)-$(VERSION)-$(CODE_STATUS)-src.tar privoxy-$(VERSION)-$(CODE_STATUS)/$$foo;) \
352         done; 
353 # add documentation
354         for foo in $(DOC_FILES); do \
355                 (cd .. && $(TAR) -uvhf privoxy-$(TARGET_OS)-$(VERSION)-$(CODE_STATUS)-src.tar privoxy-$(VERSION)-$(CODE_STATUS)/$$foo;) \
356         done;
357 # and zip the archive
358         $(RM) ../privoxy-$(VERSION)-$(CODE_STATUS)
359         $(GZIP_PROG) ../privoxy-$(TARGET_OS)-$(VERSION)-$(CODE_STATUS)-src.tar
360         @$(ECHO) Distribution with binary created.
361
362 # anonymously ncftps the package to sourceforge
363 gen-upload:
364         ncftpput -u anonymous -p ijbswa-developers@lists.sourceforge.net upload.sourceforge.net /incoming ../privoxy-$(TARGET_OS)-$(VERSION)-$(CODE_STATUS)-src.tar.gz
365         @$(ECHO) -------------------------------------------------------
366         @$(ECHO) Now goto
367         @$(ECHO) http://sourceforge.net/project/admin/editpackages.php?group_id=11118
368         @$(ECHO) ... and release the files.
369         @$(ECHO) -------------------------------------------------------
370
371 # use with care
372 gen-clean:
373         $(RM) privoxy-$(TARGET_OS)-$(VERSION)-$(CODE_STATUS)-src.tar*
374
375 #############################################################################
376 # solaris distribution. verified on SF machines by swa.
377 #############################################################################
378 solaris-dist: gen-dist
379         @$(ECHO) Done.
380 # anonymously ncftps the package to sourceforge
381 solaris-upload: gen-upload
382         @$(ECHO) Done.
383 # use with care
384 solaris-clean: gen-clean
385         @$(ECHO) Done.
386
387 #############################################################################
388 # hpux distribution
389 #############################################################################
390 hpux-dist:
391         @$(ECHO) coming soon. 
392 hpux-upload:
393         @$(ECHO) coming soon. 
394
395 #############################################################################
396 # debian distribution
397 #############################################################################
398 debian-dist:
399         @$(ECHO) coming soon. 
400 debian-upload:
401         @$(ECHO) coming soon. 
402
403 #############################################################################
404 # macosx distribution
405 #############################################################################
406 macosx-dist:
407         @$(ECHO) coming soon. 
408 macosx-upload:
409         @$(ECHO) coming soon. 
410
411 #############################################################################
412 # amiga distribution
413 #############################################################################
414 amiga-dist:
415         @$(ECHO) coming soon. 
416 amiga-upload:
417         @$(ECHO) coming soon. 
418
419 #############################################################################
420 # freebsd distribution. verified on SF machines by swa.
421 #############################################################################
422 freebsd-dist: gen-dist
423         @$(ECHO) Done.
424 # anonymously ncftps the package to sourceforge
425 freebsd-upload: gen-upload
426         @$(ECHO) Done.
427 # use with care
428 freebsd-clean: gen-clean
429         @$(ECHO) Done.
430
431 #############################################################################
432 # Windows distribution
433 #############################################################################
434 win-dist:
435         $(ECHO) Not implemented.
436
437
438 #############################################################################
439 # Tarball distribution. Only source files. No binaries.
440 #############################################################################
441
442 MISC_FILES = install-sh config.sub configure.in GNUmakefile.in config.h.in config.guess privoxy*
443
444 tarball-dist:
445         $(LN) -s current ../privoxy-$(VERSION)-$(CODE_STATUS)
446 # add source files
447         for foo in `find . -name "*.c"`; do \
448                 (cd .. && $(TAR) -uvhf privoxy-$(VERSION)-$(CODE_STATUS)-src.tar privoxy-$(VERSION)-$(CODE_STATUS)/$$foo;) \
449         done; 
450 # add header files
451         for foo in `find . -name "*.h"`; do \
452                 (cd .. && $(TAR) -uvhf privoxy-$(VERSION)-$(CODE_STATUS)-src.tar privoxy-$(VERSION)-$(CODE_STATUS)/$$foo;) \
453         done; 
454 # add config files
455         for foo in $(CONFIG_FILES); do \
456                 (cd .. && $(TAR) -uvhf privoxy-$(TARGET_OS)-$(VERSION)-$(CODE_STATUS)-src.tar privoxy-$(VERSION)-$(CODE_STATUS)/$$foo;) \
457         done; 
458 # add misc files
459         for foo in $(MISC_FILES); do \
460                 (cd .. && $(TAR) -uvhf privoxy-$(VERSION)-$(CODE_STATUS)-src.tar privoxy-$(VERSION)-$(CODE_STATUS)/$$foo;) \
461         done; 
462 # add documentation
463         for foo in $(DOC_FILES); do \
464                 (cd .. && $(TAR) -uvhf privoxy-$(VERSION)-$(CODE_STATUS)-src.tar privoxy-$(VERSION)-$(CODE_STATUS)/$$foo;) \
465         done;
466 # and zip the archive
467         $(RM) ../privoxy-$(VERSION)-$(CODE_STATUS)
468         $(GZIP_PROG) ../privoxy-$(VERSION)-$(CODE_STATUS)-src.tar
469         @$(ECHO) Tarball distribution created.
470
471 # anonymously ncftps the tarball to sourceforge
472 tarball-upload:
473         ncftpput -u anonymous -p ijbswa-developers@lists.sourceforge.net upload.sourceforge.net /incoming privoxy-$(VERSION)-$(CODE_STATUS)-src.tar.gz
474         @$(ECHO) -------------------------------------------------------
475         @$(ECHO) Now goto
476         @$(ECHO) http://sourceforge.net/project/admin/editpackages.php?group_id=11118
477         @$(ECHO) ... and release the files.
478         @$(ECHO) -------------------------------------------------------
479
480 # handle with care
481 tarball-clean:
482         $(RM) privoxy-$(VERSION)-$(CODE_STATUS)-src.tar.gz
483
484 #############################################################################
485 #
486 # Documentation
487 #
488 # converts doc/source/*.sgml into html, text and man pages
489 #
490 #############################################################################
491
492 # our style file
493 doc/source/ldpOK.dsl:
494         if [ "$(DKPREFIX)" != "none" ]; then \
495                 sed -e "s@/usr/share/sgml/docbook/dsssl-stylesheets@$(DKPREFIX)@g" doc/source/ldp.dsl > doc/source/ldpOK.dsl; \
496         else \
497                 cp doc/source/ldp.dsl doc/source/ldpOK.dsl; \
498         fi
499
500 # Otherwise we get plain groff conversion.
501 groff2html:
502         $(G2H_CMD) ./privoxy.1 | $(SED) -e 's@</head>@<link REL="STYLESHEET" TYPE="text/css" HREF="../p_doc.css"></head>@' > doc/webserver/man-page/privoxy-man-page.html
503
504 # developer manual
505 dok-devel: doc/source/ldpOK.dsl
506         rm -rf doc/webserver/developer-manual doc/source/developer-manual
507         mkdir -p doc/text doc/source/developer-manual
508         cd doc/source/developer-manual && $(DB) ../developer-manual.sgml && cd .. && mv developer-manual ../webserver
509         cd doc/source && $(DB) -V nochunks developer-manual.sgml > tmp.html && $(WDUMP) tmp.html > ../text/developer-manual.txt && rm -rf tmp.html developer-manual
510
511 # user manual
512 dok-user: doc/source/ldpOK.dsl
513         rm -rf doc/webserver/user-manual doc/source/user-manual
514         mkdir -p doc/text doc/source/user-manual
515         cd doc/source/user-manual && $(DB) ../user-manual.sgml && cd .. && mv user-manual ../webserver
516         cd doc/source && $(DB) -V nochunks user-manual.sgml > tmp.html && $(WDUMP) tmp.html > ../text/user-manual.txt && rm -rf tmp.html user-manual
517
518 # faq
519 dok-faq: doc/source/ldpOK.dsl
520         rm -rf doc/webserver/faq doc/source/faq
521         mkdir -p doc/text doc/source/faq
522         cd doc/source/faq && $(DB) ../faq.sgml && cd .. && mv faq ../webserver
523         cd doc/source && $(DB) -V nochunks faq.sgml > tmp.html && $(WDUMP) tmp.html > ../text/faq.txt && rm -rf tmp.html faq
524
525 # man page
526 dok-man: doc/source/ldpOK.dsl
527         rm -rf doc/man doc/webserver/man-page
528         mkdir -p doc/man -p doc/webserver/man-page
529 ifneq ($(MAN2HTML),false)
530         $(ECHO) "<html><head><title>Privoxy Man page</title><link rel=\"stylesheet\" type=\"text/css\" href=\"../p_web.css\"></head><body><H2>NAME</H2>" > doc/webserver/man-page/privoxy-man-page.html
531         man ./privoxy.1 | $(MAN2HTML) -bare >> doc/webserver/man-page/privoxy-man-page.html
532         $(ECHO) "</body></html>" >> doc/webserver/man-page/privoxy-man-page.html
533 else
534         $(MAKE) groff2html
535 endif
536
537 # readme page
538 dok-readme: doc/source/ldpOK.dsl
539         cd doc/source && $(DB) -V nochunks readme.sgml > tmp.html &&\
540         $(WDUMP) tmp.html > ../../README && rm -rf tmp.html
541
542 # webserver files
543 dok-webserver: doc/source/ldpOK.dsl
544         cd doc/source/webserver && $(DB) -V nochunks index.sgml > ../../webserver/index.html
545
546 dok: dok-devel dok-user dok-faq dok-man dok-readme dok-webserver
547 # kludge to force recreation on next run. Rodgrigo?
548         @rm -f doc/source/ldpOK.dsl
549         @$(ECHO) Documentation created.
550
551 #
552 # an alternative to the above dok
553 #
554 redhat-dok: doc/source/ldpOK.dsl man2html
555         mkdir -p doc/text doc/man doc/source/user-manual \
556           doc/source/developer-manual doc/source/faq
557 ##  user manual
558         rm -rf doc/webserver/user-manual
559         cd doc/source/user-manual && $(DB) ../user-manual.sgml && cd .. &&\
560           mv user-manual ../webserver
561         cd doc/source && $(DB) -V nochunks user-manual.sgml > tmp.html && \
562           $(WDUMP) tmp.html > ../text/user-manual.txt && rm -rf tmp.html \
563           user-manual
564 ##  developer manual
565         rm -rf doc/webserver/developer-manual
566         cd doc/source/developer-manual && $(DB) ../developer-manual.sgml &&\
567           cd .. && mv developer-manual ../webserver
568         cd doc/source && $(DB) -V nochunks developer-manual.sgml > tmp.html && \
569           $(WDUMP) tmp.html > ../text/developer-manual.txt && rm -rf tmp.html \
570           developer-manual
571 ##  faq
572         rm -rf doc/webserver/faq
573         cd doc/source/faq && $(DB) ../faq.sgml && cd .. && mv faq ../webserver
574         cd doc/source && $(DB) -V nochunks faq.sgml > tmp.html && $(WDUMP) \
575           tmp.html > ../text/faq.txt && rm -rf tmp.html faq
576 ## readme
577         $(MAKE) redhat-readme
578 # kludge to force recreation on next run. Rodgrigo?
579         @rm -f doc/source/ldpOK.dsl
580
581 # For those with man2html ala RH7's.
582 man2html:
583         mkdir -p doc/webserver/man-page
584 ifneq ($(MAN2HTML),false)
585         $(MAN2HTML) privoxy.1 |grep -v "^Content-type" > tmp.html
586         $(PERL) -pi -e 's/<A .*Contents<\/A>//; s/<A .*man2html<\/A>/man2html/' tmp.html
587         $(PERL) -pi -e 's/(<\/HEAD>)/<LINK REL=\"STYLESHEET\" TYPE=\"text\/css\" HREF=\"..\/p_doc.css\"><\/HEAD>/' tmp.html
588 # Get rid of spurious \a from converion. (How to do this with perl?)
589         $(SED) -e 's/\a//g' tmp.html > doc/webserver/man-page/privoxy-man-page.html && rm -f tmp.html
590 else
591         $(MAKE) groff2html
592 endif
593
594 ## Make README
595 redhat-readme: doc/source/ldpOK.dsl
596         cd doc/source && $(DB) -V nochunks readme.sgml > tmp.html && $(WDUMP) \
597           tmp.html > ../../README && rm -rf tmp.html
598         # kludge to force recreation on next run. Rodgrigo?
599         @rm -f doc/source/ldpOK.dsl
600
601 #### WIP targets HB ##################
602 ## Make AUTHORS file
603 authors: doc/source/ldpOK.dsl
604         cd doc/source && $(DB) -V nochunks authors.sgml > tmp.html && $(WDUMP) \
605           tmp.html > ../../AUTHORS && rm -f tmp.html
606         # kludge to force recreation on next run. Rodgrigo?
607         @rm -f doc/source/ldpOK.dsl
608
609 # make a man page, and then (lousy) HTML version.
610 man: doc/source/ldpOK.dsl
611         mkdir -p doc/source/man
612         cd doc/source/man && docbook2man ../privoxy-man-page.sgml &&\
613         $(PERL) -pi -e 's/ <URL:.*>//; s/\[ /\[/g' privoxy.1
614         cd doc/source/man && $(DB) ../privoxy-man-page.sgml &&\
615         mv -f index.html privoxy-man-page.html
616         # kludge to force recreation on next run. Rodgrigo?
617         @rm -f doc/source/ldpOK.dsl
618
619 # Set doc entities for VERSION and CODE_STATUS. Toggle content 
620 # exceptions accordingly. When 'make dok' gets stable, this 
621 # needs to go before any doc building (doh).
622 make dok-release:
623         @$(ECHO) Setting doc version and status to $(VERSION), $(CODE_STATUS)
624         @$(PERL) -pi -e 's/<!entity +p-version.*>/<!entity p-version "$(VERSION)">/;\
625      s/<!entity +p-status.*>/<!entity p-status "$(CODE_STATUS)">/' \
626      doc/source/*sgml
627 ifeq ($(CODE_STATUS),stable)
628         @$(ECHO) Setting docs to stable $(VERSION)
629         @$(PERL) -pi -e 's/<!entity +% +p-stable.*>/<!entity % p-stable "INCLUDE">/;\
630      s/<!entity +% +p-not-stable.*>/<!entity % p-not-stable "IGNORE">/' \
631      doc/source/*sgml
632 else
633         @$(ECHO) Setting docs to not stable $(VERSION)
634         @$(PERL) -pi -e 's/<!entity +% +p-stable.*>/<!entity % p-stable "IGNORE">/;\
635      s/<!entity +% +p-not-stable.*>/<!entity % p-not-stable "INCLUDE">/' \
636      doc/source/*sgml
637 endif
638
639 #############################################################################
640 #
641 # Webserver
642 #
643 # moves dokumentation to webserver
644 #
645 #############################################################################
646 webserver: tidy
647         @$(ECHO) -------------------------------------------------------
648         @$(ECHO) You have run make dok/redhat-dok before, right?
649         @$(ECHO) Note that this command scps all stuff to the webserver,
650         @$(ECHO) it will not remove obsolete documents.
651         @$(ECHO) -------------------------------------------------------
652
653         @$(ECHO) Uploading 
654         @cd doc/webserver; \
655           upload=`find . -type f -a -not \( -path "*/CVS*" -o -path "*/results*" \)`; \
656           $(TAR) c $$upload | ssh ijbswa.sourceforge.net 'cd /home/groups/i/ij/ijbswa/htdocs/; tar xv'
657
658         @$(ECHO) Fixing permissions
659         @ssh ijbswa.sourceforge.net 'find /home/groups/i/ij/ijbswa/htdocs/* -type d | xargs chmod 775 2>/dev/null'
660         @ssh ijbswa.sourceforge.net 'find /home/groups/i/ij/ijbswa/htdocs/* -type f | xargs chmod 664 2>/dev/null'
661
662 web-actions: tidy
663         @$(ECHO) Uploading 
664         @cd doc/webserver/actions; \
665           upload=`find . -type f -a -not \( -path "*/CVS*" -o -path "*/results*" \)`; \
666           $(TAR) c $$upload | ssh ijbswa.sourceforge.net 'cd /home/groups/i/ij/ijbswa/htdocs/actions; tar xv'
667
668         @$(ECHO) Fixing permissions
669         @ssh ijbswa.sourceforge.net 'find /home/groups/i/ij/ijbswa/htdocs/actions/* -type f | xargs chmod 664 2>/dev/null'      
670
671 #############################################################################
672 # Source file dependencies
673 #############################################################################
674
675 actions.@OBJEXT@:   actions.c   actions.h   config.h $(PROJECT_H_DEPS) errlog.h jcc.h list.h loaders.h miscutil.h actionlist.h
676 cgi.@OBJEXT@:       cgi.c       cgi.h       config.h $(PROJECT_H_DEPS) cgiedit.h cgisimple.h list.h pcrs.h encode.h ssplit.h jcc.h filters.h actions.h errlog.h miscutil.h
677 cgiedit.@OBJEXT@:   cgiedit.c   cgiedit.h   config.h $(PROJECT_H_DEPS) cgi.h list.h pcrs.h encode.h ssplit.h jcc.h filters.h actions.h errlog.h miscutil.h
678 cgisimple.@OBJEXT@: cgisimple.c cgisimple.h config.h $(PROJECT_H_DEPS) cgi.h list.h pcrs.h encode.h ssplit.h jcc.h filters.h actions.h errlog.h miscutil.h
679 deanimate.@OBJEXT@: deanimate.c deanimate.h config.h $(PROJECT_H_DEPS)
680 encode.@OBJEXT@:    encode.c    encode.h    config.h
681 errlog.@OBJEXT@:    errlog.c    errlog.h    config.h $(PROJECT_H_DEPS) @WIN_ONLY@w32log.h
682 filters.@OBJEXT@:   filters.c   filters.h   config.h $(PROJECT_H_DEPS) errlog.h encode.h gateway.h jbsockets.h jcc.h loadcfg.h parsers.h ssplit.h cgi.h deanimate.h @WIN_ONLY@win32.h 
683 gateway.@OBJEXT@:   gateway.c   gateway.h   config.h $(PROJECT_H_DEPS) errlog.h jbsockets.h jcc.h loadcfg.h
684 jbsockets.@OBJEXT@: jbsockets.c jbsockets.h config.h $(PROJECT_H_DEPS) filters.h
685 jcc.@OBJEXT@:       jcc.c       jcc.h       config.h $(PROJECT_H_DEPS) errlog.h filters.h gateway.h jbsockets.h killpopup.h loadcfg.h loaders.h miscutil.h parsers.h @WIN_ONLY@w32log.h win32.h cgi.h
686 killpopup.@OBJEXT@: killpopup.c killpopup.h config.h $(PROJECT_H_DEPS) jcc.h loadcfg.h
687 list.@OBJEXT@:      list.c      list.h      config.h $(PROJECT_H_DEPS) list.h miscutil.h
688 loadcfg.@OBJEXT@:   loadcfg.c   loadcfg.h   config.h $(PROJECT_H_DEPS) errlog.h filters.h gateway.h jbsockets.h jcc.h killpopup.h loaders.h miscutil.h parsers.h @WIN_ONLY@w32log.h win32.h
689 loaders.@OBJEXT@:   loaders.c   loaders.h   config.h $(PROJECT_H_DEPS) errlog.h encode.h filters.h gateway.h jcc.h loadcfg.h miscutil.h parsers.h ssplit.h
690 miscutil.@OBJEXT@:  miscutil.c  miscutil.h  config.h
691 parsers.@OBJEXT@:   parsers.c   parsers.h   config.h $(PROJECT_H_DEPS) errlog.h encode.h filters.h jbsockets.h jcc.h loadcfg.h loaders.h miscutil.h ssplit.h
692 ssplit.@OBJEXT@:    ssplit.c    ssplit.h    config.h miscutil.h
693 urlmatch.@OBJEXT@:  urlmatch.c  urlmatch.h  config.h $(PROJECT_H_DEPS) errlog.h miscutil.h ssplit.h
694
695 # GNU regex
696 gnu_regex.@OBJEXT@: gnu_regex.c gnu_regex.h config.h
697
698 # PCRS
699 pcrs.@OBJEXT@: pcrs.c pcre/pcre.h pcrs.h
700
701 # PCRE
702 pcre/get.@OBJEXT@:        pcre/get.c        pcre/config.h pcre/internal.h pcre/pcre.h
703 pcre/maketables.@OBJEXT@: pcre/maketables.c pcre/config.h pcre/internal.h pcre/pcre.h
704 pcre/pcre.@OBJEXT@:       pcre/pcre.c       pcre/config.h pcre/internal.h pcre/pcre.h pcre/chartables.c 
705 pcre/pcreposix.@OBJEXT@:  pcre/pcreposix.c  pcre/config.h pcre/internal.h pcre/pcre.h pcre/pcreposix.h
706 pcre/study.@OBJEXT@:      pcre/study.c      pcre/config.h pcre/internal.h pcre/pcre.h
707
708 # An auxiliary program makes the PCRE default character table source
709
710 pcre/chartables.c:   pcre/dftables@EXEEXT@
711                 pcre/dftables@EXEEXT@ >pcre/chartables.c
712
713 pcre/dftables@EXEEXT@:       pcre/dftables.c pcre/maketables.c pcre/pcre.h pcre/internal.h pcre/config.h
714                 $(CC) -o pcre/dftables@EXEEXT@ $(CFLAGS) pcre/dftables.c
715
716 # Win32
717 w32log.@OBJEXT@: w32log.c errlog.h config.h jcc.h loadcfg.h miscutil.h pcre/pcre.h pcre/pcreposix.h pcrs.h project.h w32log.h w32taskbar.h win32.h
718 w32taskbar.@OBJEXT@: w32taskbar.c config.h w32log.h w32taskbar.h
719 win32.@OBJEXT@: win32.c config.h jcc.h loadcfg.h pcre/pcre.h pcre/pcreposix.h pcrs.h project.h w32log.h win32.h
720
721 w32.res: w32.rc w32res.h icons/ico00001.ico icons/ico00002.ico icons/ico00003.ico icons/ico00004.ico icons/ico00005.ico icons/ico00006.ico icons/ico00007.ico icons/ico00008.ico icons/idle.ico icons/privoxy.ico config.h
722         windres -D__MINGW32__=0.2 -O coff -i $< -o $@
723
724 # AmigaOS
725 @AMIGAOS_ONLY@OBJS += amiga.o
726 @AMIGAOS_ONLY@CFLAGS += -D__AMIGAVERSION__=\"$(VERSION_MAJOR).$(VERSION_MINOR)$(VERSION_POINT)\" -D__AMIGADATE__=\"`date +%d.%m.%Y`\" -W -m68020 -noixemul -fbaserel -msmall-code
727 @AMIGAOS_ONLY@LDFLAGS += -m68020 -noixemul -fbaserel
728 @AMIGAOS_ONLY@LIBS = -lm /gg/lib/libb/libm020/libnix/swapstack.o
729 @AMIGAOS_ONLY@amiga.o: amiga.c amiga.h config.h
730
731
732 $(PROGRAM): $(OBJS) $(W32_FILES)
733         $(LD) $(LDFLAGS) -o $(PROGRAM) $(OBJS) $(LIBS)
734
735 clean:
736         $(RM) a.out $(OBJS) $(W32_FILES) $(W32_INIS) $(PROGRAM) `find . -name TAGS -o -name tags` 
737
738 tidy:
739         $(RM) `find . -name "*~" -o -name "#*#"`
740
741 clobber: tidy
742         $(RM) GNUmakefile configure config.h.in config.h config.cache config.status config.log logfile privoxy.log core *.tar.gz *.tar
743 #
744 # FIXME: What is all this? 
745 #
746         $(RM) cscope.*  *.pdb *.lib *.exp 
747
748 distclean: clobber
749
750 tags: $(SRCS) $(HDRS)
751         etags $(SRCS) $(HDRS)
752
753 install: all
754         #
755         # FIXME: This is a dirty hack to have an install target
756         #        that works at least for some setups. This needs
757         #        to be fixed!
758         #
759         $(STRIP_PROG) $(PROGRAM)
760         $(INSTALL) $(INSTALL_D) $(SBIN_DEST)
761         $(INSTALL) $(INSTALL_D) $(DEST)/user-manual
762         $(INSTALL) $(INSTALL_D) $(DEST)/templates
763         $(INSTALL) $(INSTALL_D) $(CONFDEST)
764         $(INSTALL) $(INSTALL_P) $(PROGRAM) $(SBIN_DEST)
765         if [ -d "doc/webserver/user-manual" ]; then $(INSTALL) $(INSTALL_T) doc/webserver/user-manual $(DEST); fi
766         $(INSTALL) $(INSTALL_T) templates/[a-z]* $(DEST)/templates
767         $(INSTALL) $(INSTALL_T) config default.action default.filter trust $(CONFDEST)
768         # FIXME $(ECHO) privoxy.logrotate privoxy.monthly privoxy.weekly
769         # FIXME: Need new manual! $(GZIP_PROG) -c privoxy.1 > $(MAN_DEST)/privoxy.1.gz
770         $(INSTALL) $(INSTALL_P) privoxy.init /etc/init.d/privoxy
771
772
773 #############################################################################
774
775 ## Local Variables:
776 ## tab-width: 3
777 ## end:
778
779 # $Log: GNUmakefile.in,v $
780 # Revision 1.68  2002/04/07 07:58:11  swa
781 # create some of the webserver docs
782 # automatically (in particular if
783 # those docs recycle other documentation
784 # fragments)
785 #
786 # Revision 1.67  2002/04/07 05:31:42  hal9
787 # Add 'dok-release' target:
788 # -Set doc entities to VERSION and CODE_STATUS during make.
789 # -Set doc conditional content flags (stable vs non-stable).
790 # A separate target for the time being but needs to be incorporated into
791 # dok build at some point.
792 # -Filter out a spurious ^G from new man page > html converion in man2html.
793 #
794 # Revision 1.66  2002/04/06 20:28:21  jongfoster
795 # Prettifying groff2html.
796 # Using GNU Make's conditional makefile feature rather than shell "if"s.
797 # (The shell "if"s were hiding errors)
798 # "perl" -> "$(PERL)"
799 # Spaces->tabs in a couple of places.
800 #
801 # Revision 1.65  2002/04/06 05:16:39  hal9
802 # -Add 'authors' and 'man' targets for AUTHORS and man-page (WIP).
803 # -Both of these will soon be generated files.
804 #
805 # Revision 1.64  2002/04/04 22:14:51  oes
806 # No longer rely on find honoring -iname
807 #
808 # Revision 1.63  2002/04/04 21:06:22  swa
809 # cosmetics.
810 #
811 # Revision 1.62  2002/04/04 20:49:50  swa
812 # attempt to consolidate the
813 # different dokbook versions.
814 #
815 # Revision 1.61  2002/04/04 19:18:21  swa
816 # readme was leftover directory. use w3m instead
817 # of lynx to be consistent among developers. use
818 # consistent target naming.
819 #
820 # Revision 1.60  2002/04/04 12:25:41  oes
821 # Tidy webserver upload w/o *~ files, CVS dirs and logfiles and with proper dir and file permissions
822 #
823 # Revision 1.59  2002/04/04 08:32:45  swa
824 # wrong name for tarball-dist target. further fixed content of tarball dist
825 #
826 # Revision 1.58  2002/04/04 06:32:58  hal9
827 # New dok targets for make readme.
828 #
829 # Revision 1.57  2002/04/04 00:36:36  gliptak
830 # always use pcre for matching
831 #
832 # Revision 1.56  2002/04/03 22:28:03  gliptak
833 # Removed references to gnu_regex
834 #
835 # Revision 1.55  2002/04/03 19:54:29  swa
836 # freebsd tested to work. attempt to move tarball dist target forward
837 #
838 # Revision 1.54  2002/04/03 14:54:07  oes
839 # Standard clean and clobber semantics II
840 #
841 # Revision 1.53  2002/04/03 14:19:16  oes
842 # Standard clean and clobber semantics
843 #
844 # Revision 1.52  2002/04/03 02:56:18  hal9
845 # Revert previous FAQ numbering kludge.
846 #
847 # Revision 1.51  2002/04/02 13:03:56  oes
848 # Added fix for webserver permissions
849 #
850 # Revision 1.50  2002/04/02 03:46:24  hal9
851 # Rewrite ldpOK.dsl so that sections are NOT numbered on FAQ, in an effort
852 # to make the Table of Contents not so 'busy' looking. SuSE needs testing :)
853 #
854 # Revision 1.49  2002/03/30 22:20:12  swa
855 # cd didn't work. neither did find.
856 #
857 # Revision 1.48  2002/03/30 19:04:06  swa
858 # people release differently. no good.
859 # I want to make parts of the docs only.
860 #
861 # Revision 1.47  2002/03/30 09:05:21  swa
862 # better packaging. better rpm building.
863 # tar failed on sun (no exclude there).
864 #
865 # Revision 1.46  2002/03/29 20:09:01  swa
866 # al's patch
867 #
868 # Revision 1.45  2002/03/29 19:45:45  swa
869 # for lazy swa
870 #
871 # Revision 1.44  2002/03/29 17:42:44  gliptak
872 # Correcting for Solaris tar limitations
873 #
874 # Revision 1.43  2002/03/29 07:40:03  swa
875 # fixed make webserver. doh
876 #
877 # Revision 1.42  2002/03/29 06:59:04  swa
878 # other users could not modify files on webserver
879 #
880 # Revision 1.41  2002/03/28 20:43:00  swa
881 # set make correctly
882 #
883 # Revision 1.40  2002/03/28 04:22:44  hal9
884 # More on man2html stuff.
885 #
886 # Revision 1.39  2002/03/28 01:04:14  hal9
887 # More man2html stuff for docs.
888 #
889 # Revision 1.38  2002/03/27 16:02:30  swa
890 # have a generic target
891 #
892 # Revision 1.37  2002/03/27 15:30:26  swa
893 # have a consistent appearance
894 #
895 # Revision 1.36  2002/03/27 14:58:08  swa
896 # can be used by mutilple targets
897 #
898 # Revision 1.35  2002/03/27 14:53:19  swa
899 # added solaris-dist
900 #
901 # Revision 1.34  2002/03/27 10:30:11  swa
902 # we want a html man file on the webserver
903 #
904 # Revision 1.33  2002/03/27 03:05:35  hal9
905 # Added man2html target for docs (redhat-dok only for now)
906 #
907 # Revision 1.32  2002/03/26 22:29:54  swa
908 # we have a new homepage!
909 #
910 # Revision 1.31  2002/03/26 14:00:18  swa
911 # fixed make tarball, tarball-dist, tarball-clean
912 #
913 # Revision 1.30  2002/03/25 12:52:25  swa
914 # new targets
915 #
916 # Revision 1.29  2002/03/24 17:03:55  jongfoster
917 # Name change
918 #
919 # Revision 1.28  2002/03/24 16:19:48  swa
920 # configure needs to be generated.
921 #
922 # Revision 1.27  2002/03/24 16:13:57  swa
923 # generated files are a nono in cvs
924 #
925 # Revision 1.26  2002/03/24 15:36:02  swa
926 # did not build.
927 #
928 # Revision 1.25  2002/03/24 14:31:08  swa
929 # remove more crappy files. set RPM
930 # release version correctly.
931 #
932 # Revision 1.24  2002/03/24 14:19:55  swa
933 # set rpm package release in configure.in. nowhere else.
934 #
935 # Revision 1.23  2002/03/24 13:06:49  swa
936 # suse-clean now runs fine
937 #
938 # Revision 1.22  2002/03/24 12:56:21  swa
939 # name change related issues.
940 #
941 # Revision 1.21  2002/03/24 12:43:57  swa
942 # name change
943 #
944 # Revision 1.20  2002/03/24 11:39:17  jongfoster
945 # Renaming config files
946 #
947 # Revision 1.19  2002/03/22 20:53:03  morcego
948 # - Ongoing process to change name to JunkbusterNG
949 # - configure/configure.in: no change needed
950 # - GNUmakefile.in:
951 #         - TAR_ARCH = /tmp/JunkbusterNG-$(RPM_VERSION).tar.gz
952 #         - PROGRAM    = jbng@EXEEXT@
953 #         - rh-spec now references as junkbusterng-rh.spec
954 #         - redhat-upload: references changed to junkbusterng-* (package names)
955 #         - tarball-dist: references changed to JunkbusterNG-distribution-*
956 #         - tarball-src: now JunkbusterNG-*
957 #         - install: initscript now junkbusterng.init and junkbusterng (when
958 #                    installed)
959 # - junkbuster-rh.spec: renamed to junkbusterng-rh.spec
960 # - junkbusterng.spec:
961 #         - References to the expression ijb where changed where possible
962 #         - New package name: junkbusterng (all in lower case, acording to
963 #           the LSB recomendation)
964 #         - Version changed to: 2.9.13
965 #         - Release: 1
966 #         - Added: junkbuster to obsoletes and conflicts (Not sure this is
967 #           right. If it obsoletes, why conflict ? Have to check it later)
968 #         - Summary changed: Stefan, please check and aprove it
969 #         - Changes description to use the new name
970 #         - Sed string was NOT changed. Have to wait to the manpage to
971 #           change first
972 #         - Keeping the user junkbuster for now. It will require some aditional
973 #           changes on the script (scheduled for the next specfile release)
974 #         - Added post entry to move the old logfile to the new log directory
975 #         - Removing "chkconfig --add" entry (not good to have it automaticaly
976 #           added to the startup list).
977 #         - Added preun section to stop the service with the old name, as well
978 #           as remove it from the startup list
979 #         - Removed the chkconfig --del entry from the conditional block on
980 #           the preun scriptlet (now handled on the %files section)
981 # - junkbuster.init: renamed to junkbusterng.init
982 # - junkbusterng.init:
983 #         - Changed JB_BIN to jbng
984 #         - Created JB_OBIN with the old value of JB_BIN (junkbuster), to
985 #           be used where necessary (config dir)
986 #
987 # Aditional notes:
988 # - The config directory is /etc/junkbuster yet. Have to change it on the
989 # specfile, after it is changes on the code
990 # - The only files that got renamed on the cvs tree were the rh specfile and
991 # the init file. Some file references got changes on the makefile and on the
992 # rh-spec (as listed above)
993 #
994 # Revision 1.18  2002/03/21 23:00:00  swa
995 # want to autogenerate stuff.
996 #
997 # Revision 1.17  2002/03/19 19:30:04  morcego
998 # - Fixing stylesheet checking on configure. If it is found, no further checks
999 #   should be done
1000 #
1001 # - configure will now check for db2html or docbook2html (should work now
1002 #   on SuSe without the docbktls package)
1003 #
1004 # Revision 1.16  2002/03/14 22:32:32  hal9
1005 # Bumped the RPM version.
1006 #
1007 # Revision 1.15  2002/03/08 20:00:28  swa
1008 # some leftovers.
1009 #
1010 # Revision 1.14  2002/03/07 18:25:56  swa
1011 # synced redhat and suse build process
1012 #
1013 # Revision 1.13  2002/03/07 17:17:56  oes
1014 # (Hopefully) fixed for older make versions
1015 #
1016 # Revision 1.12  2002/03/07 15:28:27  swa
1017 # more informative
1018 #
1019 # Revision 1.11  2002/03/06 14:33:18  sarantis
1020 # Use proper temp file, not "abc".
1021 #
1022 # Revision 1.10  2002/03/06 14:19:35  sarantis
1023 # Cleanup PID_FILE_PATH from redhat-dist target
1024 #
1025 # Revision 1.9  2002/03/05 17:31:11  morcego
1026 # Search for docbook.dsl. Should solve portability problems for SuSe.
1027 #
1028 # Revision 1.8  2002/03/05 14:07:42  morcego
1029 # configure now detects rpm topdir, and change GNUmakefile acordingly
1030 #    (based on sugestion by Sarantis Paskalis)
1031 #
1032 # Revision 1.7  2002/03/05 13:43:28  morcego
1033 # Checking for text browser, so redhat-dok can work.
1034 #
1035 # Revision 1.6  2002/03/05 13:10:51  morcego
1036 # Changes to implement redhat-dok (Hal Burgiss)
1037 # Changes to make it work on other distros and out-of-the-shelf configurations
1038 #
1039 # Revision 1.5  2002/02/27 15:30:39  hal9
1040 # Reset $(RPM_PACKAGEV) to 1 (was 2)
1041 #
1042 # Revision 1.4  2002/01/17 21:44:04  jongfoster
1043 # Adding urlmatch.[ch]
1044 #
1045 # Revision 1.3  2002/01/04 15:26:08  oes
1046 # Added tarball-src target
1047 #
1048 # Revision 1.2  2001/12/30 14:07:31  steudten
1049 # - Add signal handling (unix)
1050 # - Add SIGHUP handler (unix)
1051 # - Add creation of pidfile (unix)
1052 # - Add action 'top' in rc file (RH)
1053 # - Add entry 'SIGNALS' to manpage
1054 # - Add exit message to logfile (unix)
1055 #
1056 # Revision 1.1  2001/12/01 11:22:57  jongfoster
1057 # Renaming Makefile.in to GNUmakefile.in so that non-GNU versions of
1058 # make break in a more obvious way.
1059 # Adding .PHONY section.
1060 #
1061 # Revision 1.40  2001/12/01 00:24:11  jongfoster
1062 # Renaming various config files
1063 # Fixing CR->CRLF under Win32 (I hope)
1064 #
1065 # Revision 1.39  2001/11/06 12:07:30  steudten
1066 # Add --clean for building rpm in target redhat-dist.
1067 #
1068 # Revision 1.38  2001/11/05 21:35:23  steudten
1069 # Complete rewrite for the 'redhat-dist' target.
1070 # Checks for writeable RPM build directories for calling user.
1071 # So you must not be root, just set the modes to 1777 to
1072 # build a RH package.
1073 # Fix the upload-target to be arch independant.
1074 # Add target for 'solaris-dist' - coming soon.
1075 #
1076 # Revision 1.37  2001/11/01 00:52:04  hal9
1077 # Redhat-upload stuff per Stefan.
1078 #
1079 # Revision 1.36  2001/10/31 19:26:13  swa
1080 # automate process of uploading new releases
1081 # to sf.
1082 #
1083 # Revision 1.35  2001/10/15 22:14:59  joergs
1084 # Removed -O2 and -Wall from AmigaOS-only CFLAGS since they are now in
1085 #  the general CFLAGS already.
1086 #
1087 # Revision 1.34  2001/10/15 18:28:06  steudten
1088 # remove config.cache for target clobber.
1089 # Cleanup make dist for RH and S.u.S.E.
1090 #
1091 # Revision 1.33  2001/10/10 12:43:33  oes
1092 # Added ugly hack to make install target work at least for some setups.
1093 #
1094 # Revision 1.32  2001/10/09 22:38:19  jongfoster
1095 # Correcting actionsfile filename for Win32 INI build
1096 #
1097 # Revision 1.31  2001/09/23 10:13:48  swa
1098 # upload process established. run make webserver and
1099 # the documentation is moved to the webserver. documents
1100 # are now linked correctly.
1101 #
1102 # Revision 1.30  2001/09/19 17:55:49  oes
1103 # Fixed CFLAGS
1104 #
1105 # Revision 1.29  2001/09/16 17:34:27  jongfoster
1106 # Removing showargs.[ch], adding cgi(simple|edit).[ch]
1107 # Replacing $(OBJEXT) with @OBJEXT@ - this seems to be a common source
1108 # of build problems.
1109 #
1110 # Revision 1.28  2001/09/13 15:19:08  swa
1111 # we want text files as well.
1112 #
1113 # Revision 1.27  2001/09/13 13:11:37  steudten
1114 #
1115 # Replace DEBUG_CFLAGS with OTHER_CFLAGS
1116 #
1117 # Revision 1.26  2001/09/12 23:44:54  david__schmidt
1118 # Mac OSX (Darwin) support added.
1119 #
1120 # Revision 1.25  2001/09/12 22:55:45  joergs
1121 # AmigaOS support added.
1122 #
1123 # Revision 1.24  2001/09/12 17:28:59  david__schmidt
1124 #
1125 # OS/2 port: update autoconf'd support for the platform.
1126 #
1127 # Revision 1.23  2001/09/12 16:28:42  swa
1128 # added "make dok" section to generate html pages from
1129 # the sgml source documents. note that the we do not want
1130 # generated stuff in cvs.
1131 #
1132 # Revision 1.22  2001/09/10 16:31:23  swa
1133 # buildroot definition in the specfile fucks up the build
1134 # process under suse. hence I moved it to the "rpm -ta"
1135 # command
1136 #
1137 # Revision 1.21  2001/09/10 11:12:49  oes
1138 # Turning on -Wall
1139 #
1140 # Revision 1.20  2001/08/02 22:04:29  jongfoster
1141 # Removing some remaining references to obsolete w32rulesdlg.[ch]
1142 #
1143 # Revision 1.19  2001/07/30 22:14:03  jongfoster
1144 # Removing obsolete w32rulesdlg.c and w32rulesdlg.h
1145 #
1146 # Revision 1.18  2001/07/29 17:09:17  jongfoster
1147 # Major changes to build system in order to fix these bugs:
1148 # - pthreads under Linux was broken - changed -lpthread to -pthread
1149 # - Compiling in MinGW32 mode under CygWin now correctly detects
1150 #   which shared libraries are available
1151 # - Solaris support (?) (Not tested under Solaris yet)
1152 #
1153 # Revision 1.17  2001/07/28 16:44:54  oes
1154 # Fixed sed LF->CRLF conversion and removed deprecated files
1155 #
1156 # Revision 1.16  2001/07/15 19:45:33  jongfoster
1157 # Added support for linking with POSIX threads library
1158 #
1159 # Revision 1.15  2001/07/13 13:48:07  oes
1160 #  - Moved STATIC #define for pcre to (ac)config.h
1161 #  - Made -Ipcre depandant on static pcre compilation to
1162 #    avoid version conflicts
1163 #  - Included compilation and depandancies for new deanimate.c
1164 #  - Made changes to the pcre/pcreposix/pcrs build process
1165 #    as required by the new library autodetection in
1166 #    configure.in
1167 #
1168 # Revision 1.14  2001/07/01 16:27:44  oes
1169 # Fixed misplaced dependancy
1170 #
1171 # Revision 1.13  2001/06/29 13:18:36  oes
1172 # - added depandancy of filters.o on cgi.h
1173 #
1174 # Revision 1.12  2001/06/12 17:15:56  swa
1175 # fixes, because a clean build on rh6.1 was impossible.
1176 # GZIP confuses make, %configure confuses rpm, etc.
1177 #
1178 # Revision 1.11  2001/06/11 11:26:35  sarantis
1179 # RPM version should be the same as ijbswa version.  The rpm release is
1180 # specified in the specfile.
1181 #
1182 # Revision 1.10  2001/06/07 17:27:45  swa
1183 # added suse build section
1184 #
1185 # Revision 1.9  2001/06/04 18:31:58  swa
1186 # files are now prefixed with either `confdir' or `logdir'.
1187 # `make redhat-dist' replaces both entries confdir and logdir
1188 # with redhat values
1189 #
1190 # Revision 1.8  2001/06/04 10:44:57  swa
1191 # `make redhatr-dist' now works. Except for the paths
1192 # in the config file.
1193 #
1194 # Revision 1.7  2001/06/03 17:09:09  swa
1195 # swa for oes: reversed my earlier change
1196 #
1197 # Revision 1.6  2001/06/03 17:07:27  swa
1198 # swa for oes
1199 #
1200 # Revision 1.5  2001/06/03 13:57:26  swa
1201 # compile cgi.c (for andreas' GUI)
1202 #
1203 # Revision 1.4  2001/05/31 21:18:45  jongfoster
1204 # Added files actions.[ch], actionlist.h, list.[ch] to Makefile
1205 #
1206 # Revision 1.3  2001/05/29 20:02:48  joergs
1207 # Changes for AmigaOS added.
1208 #
1209 # Revision 1.2  2001/05/17 22:23:23  oes
1210 #  - Added auto-generation of CRLFs for Win32 config files
1211 #  - Added comment-prefix to all Win32-only options in the config file
1212 #    and provided auto stripping of this prefix for the Win32 platform by make
1213 #
1214 # Revision 1.1.1.1  2001/05/15 13:59:00  oes
1215 # Initial import of version 2.9.3 source tree
1216 #
1217 #