Add a filter to make updating the "What's New in this Release"
[privoxy.git] / privoxy-rh.spec
1 # $Id: privoxy-rh.spec,v 1.56 2008/03/16 14:17:25 fabiankeil Exp $
2 #
3 # Written by and Copyright (C) 2001-2006 the SourceForge
4 # Privoxy team. http://www.privoxy.org/
5 #
6 # Based on the Internet Junkbuster originally written
7 # by and Copyright (C) 1997 Anonymous Coders and 
8 # Junkbusters Corporation.  http://www.junkbusters.com
9 #
10 # This program is free software; you can redistribute it 
11 # and/or modify it under the terms of the GNU General
12 # Public License as published by the Free Software
13 # Foundation; either version 2 of the License, or (at
14 # your option) any later version.
15 #
16 # This program is distributed in the hope that it will
17 # be useful, but WITHOUT ANY WARRANTY; without even the
18 # implied warranty of MERCHANTABILITY or FITNESS FOR A
19 # PARTICULAR PURPOSE.  See the GNU General Public
20 # License for more details.
21 #
22 # The GNU General Public License should be included with
23 # this file.  If not, you can view it at
24 # http://www.gnu.org/copyleft/gpl.html
25 # or write to the Free Software Foundation, Inc., 59
26 # Temple Place - Suite 330, Boston, MA  02111-1307, USA.
27 #
28
29 # Defines should happen in the begining of the file
30 %define veryoldname junkbust
31 %define oldname junkbuster
32 %define privoxyconf %{_sysconfdir}/%{name}
33 %define privoxy_uid 73
34 %define privoxy_gid 73
35
36 Name: privoxy
37 # ATTENTION
38 # Version and release should be updated accordingly on configure.in and
39 # configure. Otherwise, the package can be build with the wrong value
40 Version: 3.0.9
41 Release: 1
42 Summary: Privoxy - privacy enhancing proxy
43 License: GPL
44 Source0: http://dl.sf.net/ijbswa/%{name}-%{version}-stable-src.tar.gz
45 BuildRoot: %{_tmppath}/%{name}-%{version}-root
46 Group: System Environment/Daemons
47 URL: http://www.privoxy.org/
48 Obsoletes: junkbuster-raw junkbuster-blank junkbuster
49 # Prereq: /usr/sbin/useradd , /sbin/chkconfig , /sbin/service 
50 Prereq: shadow-utils, chkconfig, initscripts, sh-utils
51 BuildRequires: perl gzip sed libtool autoconf 
52 Conflicts: junkbuster-raw junkbuster-blank junkbuster
53
54 %description 
55 Privoxy is a web proxy with advanced filtering capabilities for
56 protecting privacy, filtering web page data, managing cookies,
57 controlling access, and removing ads, banners, pop-ups and other
58 obnoxious Internet junk. Privoxy has a very flexible configuration and
59 can be customized to suit individual needs and tastes. Privoxy has application
60 for both stand-alone systems and multi-user networks.
61
62 Privoxy is based on the Internet Junkbuster.
63
64 %prep
65 #%setup -q -c
66 %setup -q -n "%{name}-%{version}-stable"
67
68 %build
69
70 # We check to see if versions match
71 VERSION_MAJOR=3
72 VERSION_MINOR=0
73 VERSION_POINT=9
74
75 # find CVS files and remove it.
76 find -name CVS | xargs rm -rf
77
78 CONFIG_VERSION=`cat configure.in | sed -n -e 's/^VERSION_MAJOR=\([0-9]*\)/\1./p' -e 's/^VERSION_MINOR=\([0-9]*\)/\1./p' -e 's/^VERSION_POINT=\([0-9]*\)/\1/p' | awk '{printf $1}'`
79 if [ "%{version}" != "${CONFIG_VERSION}" ]; then
80         echo "The version declared on the specfile does not match the version"
81         echo "declared on configure.in. This should not happen. The build will"
82         echo "be interrupted now, so you can fix it."
83         exit 1
84 fi
85 autoheader
86 autoconf
87 %configure --disable-dynamic-pcre
88 make 
89 # Docs are in CVS and tarball now.
90 #%%make dok
91
92 ## Explicitily stripping is not recomended.
93 ## This is handled altomaticaly by RPM, and can couse troubles if
94 ## anyone wants to build an unstriped version - morcego
95 #strip %{name}
96
97 %install
98 [ "%{buildroot}" != "/" ] && rm -rf %{buildroot}
99 mkdir -p %{buildroot}%{_sbindir} \
100          %{buildroot}%{_mandir}/man1 \
101          %{buildroot}%{_localstatedir}/log/%{name} \
102          %{buildroot}%{privoxyconf}/templates \
103          %{buildroot}%{_sysconfdir}/logrotate.d \
104          %{buildroot}%{_sysconfdir}/rc.d/init.d 
105
106 ## Manual gziping of manpages should not be done, once it can
107 ## break the building on some distributions. Anyway, rpm does it
108 ## automagicaly these days
109 ## Gziping the documentation files is not recomended - morcego
110 #gzip README AUTHORS ChangeLog %{name}.1 || /bin/true
111
112 install -s -m 744 %{name} %{buildroot}%{_sbindir}/%{name}
113
114 # Using sed to "convert" from DOS format to UNIX
115 # This is important behaviour, and should not be removed without some
116 # other assurance that these files don't get packed in the the
117 # wrong format
118 for i in `ls *.action`
119 do
120        cat $i | sed -e 's/[[:cntrl:]]*$//' > %{buildroot}%{privoxyconf}/$i
121 done
122 cat default.filter | sed -e 's/[[:cntrl:]]*$//' > %{buildroot}%{privoxyconf}/default.filter
123 cat user.filter | sed -e 's/[[:cntrl:]]*$//' > %{buildroot}%{privoxyconf}/user.filter
124 cat trust | sed -e 's/[[:cntrl:]]*$//' > %{buildroot}%{privoxyconf}/trust
125 (
126 cd templates
127 for i in `ls`
128 do
129         cat $i | sed -e 's/[[:cntrl:]]*$//' > %{buildroot}%{privoxyconf}/templates/$i
130 done
131 )
132
133 cp -f %{name}.1 %{buildroot}%{_mandir}/man1/%{name}.1
134 cp -f %{name}.logrotate %{buildroot}%{_sysconfdir}/logrotate.d/%{name}
135 install -m 755 %{name}.init %{buildroot}%{_sysconfdir}/rc.d/init.d/%{name}
136 install -m 711 -d %{buildroot}%{_localstatedir}/log/%{name}
137
138 # verify all file locations, etc. in the config file
139 # don't start with ^ or commented lines are not replaced
140 ## Changing the sed paramter delimiter to @, so we don't have to
141 ## escape the slashes
142 cat config | \
143     sed 's@^confdir.*@confdir %{privoxyconf}@g' | \
144 #    sed 's/^permissionsfile.*/permissionsfile \/etc\/%{name}\/permissionsfile/g' | \
145 #    sed 's/^filterfile.*/default.filter \/etc\/%{name}\/default.filter/g' | \
146 #    sed 's/^logfile.*/logfile \%{_localstatedir}\/log\/%{name}\/logfile/g' | \
147 #    sed 's/^jarfile.*/jarfile \%{_localstatedir}\/log\/%{name}\/jarfile/g' | \
148 #    sed 's/^forward.*/forward \/etc\/%{name}\/forward/g' | \
149 #    sed 's/^aclfile.*/aclfile \/etc\/%{name}\/aclfile/g' > \
150     sed 's@^logdir.*@logdir %{_localstatedir}/log/%{name}@g' | \
151     sed 's@#user-manual http://www.privoxy.org/user-manual/@user-manual %{_docdir}/%{name}-%{version}/user-manual/@g' | \
152     sed -e 's/[[:cntrl:]]*$//' > \
153     %{buildroot}%{privoxyconf}/config
154 perl -pe 's/{-no-cookies}/{-no-cookies}\n\.redhat.com/' default.action >\
155     %{buildroot}%{privoxyconf}/default.action
156
157
158 ## Macros are expanded even on commentaries. So, we have to use %%
159 ## -- morcego
160 #%%makeinstall
161
162 %pre
163 # This is where we handle old usernames (junkbust and junkbuster)
164 # I'm not sure we should do that, but this is the way we have been
165 # doing it for some time now -- morcego
166 # We should do it for the group as well -- morcego
167 # Doing it by brute force. Much cleaner (no more Mr. Nice Guy) -- morcego
168
169 # Same for username
170 usermod -u %{privoxy_uid} -g %{privoxy_gid} -l %{name} -d %{_sysconfdir}/%{name} -s "" %{oldname} > /dev/null 2>&1 || :
171 usermod -u %{privoxy_uid} -g %{privoxy_gid} -l %{name} -d %{_sysconfdir}/%{name} -s "" %{veryoldname} > /dev/null 2>&1 || :
172 userdel %{oldname} > /dev/null 2>&1 ||:
173 userdel %{veryoldname} > /dev/null 2>&1 ||:
174
175 # Change the group name. Remove anything left behind.
176 groupmod -g %{privoxy_gid} -n %{name} %{oldname} > /dev/null 2>&1 ||:
177 groupmod -g %{privoxy_gid} -n %{name} %{veryoldname} > /dev/null 2>&1 ||:
178 groupdel %{oldname} > /dev/null 2>&1 ||:
179 groupdel %{veryoldname} > /dev/null 2>&1 ||:
180
181 # Doublecheck to see if the group exist, and that it has the correct gid
182 /bin/grep -E '^%{name}:' %{_sysconfdir}/group > /dev/null 2>&1
183 if [ $? -eq 1 ]; then
184         # Looks like it does not exist. Create it
185         groupadd -g %{privoxy_gid} %{name} > /dev/null 2>&1
186 else
187         /bin/grep -E '^%{name}:[^:]*:%{privoxy_gid}:' %{_sysconfdir}/group > /dev/null 2>&1
188         if [ $? -eq 1 ]; then
189                 # The group exists, but does not have the correct gid
190                 groupmod -g %{privoxy_gid} %{name} > /dev/null 2>&1
191         fi
192 fi
193
194 # Check to see if everything is okey. Create user if it still does not
195 # exist
196 id %{name} > /dev/null 2>&1
197 if [ $? -eq 1 ]; then
198         %{_sbindir}/useradd -u %{privoxy_uid} -g %{privoxy_gid} -d %{_sysconfdir}/%{name} -r -s "" %{name} > /dev/null 2>&1 
199 fi
200
201 # Double check that the group has the correct uid
202 P_UID=`id -u %{name} 2>/dev/null`
203 if [ $P_UID -ne %{privoxy_uid} ]; then
204         %{_sbindir}/usermod -u %{privoxy_uid} %{name}
205 fi
206
207 # The same for the gid
208 P_GID=`id -g %{name} 2>/dev/null`
209 if [ $P_GID -ne %{privoxy_gid} ]; then
210         %{_sbindir}/usermod -g %{privoxy_gid} %{name}
211 fi
212
213 %post
214 # for upgrade from 2.0.x
215 [ -f %{_localstatedir}/log/%{oldname}/logfile ] && {
216   mv -f %{_localstatedir}/log/%{oldname}/logfile %{_localstatedir}/log/%{name}/logfile ||: ;
217   chown -R %{name}:%{name} %{_localstatedir}/log/%{name} 2>/dev/null ||: ;
218 }
219 [ -f %{_localstatedir}/log/%{name}/%{name} ] && {
220   mv -f %{_localstatedir}/log/%{name}/%{name} %{_localstatedir}/log/%{name}/logfile ||: ;
221   chown -R %{name}:%{name} %{_sysconfdir}/%{name} 2>/dev/null ||: ;
222 }
223 /sbin/chkconfig --add privoxy
224 if [ "$1" = "1" ]; then
225         /sbin/service %{name} condrestart > /dev/null 2>&1 ||:
226 fi
227
228 %preun
229 /sbin/service %{veryoldname} stop > /dev/null 2>&1 ||:
230 /sbin/service %{oldname} stop > /dev/null 2>&1 ||:
231
232 if [ "$1" = "0" ]; then
233         /sbin/service %{name} stop > /dev/null 2>&1 ||:
234         /sbin/chkconfig --del privoxy
235 fi
236
237 %postun
238 #if [ "$1" -ge "1" ]; then
239 #       /sbin/service %{name} condrestart > /dev/null 2>&1
240 #fi
241 # We only remove it we this is not an upgrade
242 if [ "$1" = "0" ]; then
243         id privoxy > /dev/null 2>&1 && %{_sbindir}/userdel privoxy || /bin/true
244         /bin/grep -E '^%{name}:' %{_sysconfdir}/group > /dev/null && %{_sbindir}/groupdel %{name} || /bin/true
245 fi
246
247 %clean
248 [ "%{buildroot}" != "/" ] && rm -rf %{buildroot}
249
250 %files
251 %defattr(0644,root,root,0755)
252 %doc README AUTHORS ChangeLog LICENSE 
253 %doc doc/text/developer-manual.txt doc/text/user-manual.txt doc/text/faq.txt
254 %doc doc/webserver/developer-manual
255 %doc doc/webserver/user-manual
256 %doc doc/webserver/faq
257 %doc doc/webserver/p_doc.css doc/webserver/privoxy-index.html
258 %doc doc/webserver/images
259 %doc doc/webserver/man-page
260
261 # ATTENTION FOR defattr change here !
262 %defattr(0644,%{name},%{name},0755)
263
264 %dir %{privoxyconf}
265 %dir %{privoxyconf}/templates
266 %dir %{_localstatedir}/log/%{name}
267
268 %attr(0744,%{name},%{name})%{_sbindir}/%{name}
269
270 # WARNING ! WARNING ! WARNING ! WARNING ! WARNING ! WARNING ! WARNING !
271 # We should not use wildchars here. This could mask missing files problems
272 # -- morcego
273 # WARNING ! WARNING ! WARNING ! WARNING ! WARNING ! WARNING ! WARNING !
274 %config(noreplace) %{privoxyconf}/config
275 %config %{privoxyconf}/standard.action
276 %config(noreplace) %{privoxyconf}/user.action
277 %config %{privoxyconf}/default.action
278 %config %{privoxyconf}/default.filter
279 %config %{privoxyconf}/regression-tests.action
280 %config(noreplace) %{privoxyconf}/user.filter
281 %config(noreplace) %{privoxyconf}/trust
282
283 # Please keep these alphabetized so its easier to find one that 
284 # is not included.
285 %config %{privoxyconf}/templates/blocked
286 %config %{privoxyconf}/templates/cgi-error-404
287 %config %{privoxyconf}/templates/cgi-error-bad-param
288 %config %{privoxyconf}/templates/cgi-error-disabled
289 %config %{privoxyconf}/templates/cgi-error-file
290 %config %{privoxyconf}/templates/cgi-error-file-read-only
291 %config %{privoxyconf}/templates/cgi-error-modified
292 %config %{privoxyconf}/templates/cgi-error-parse
293 %config %{privoxyconf}/templates/cgi-style.css
294 %config %{privoxyconf}/templates/connect-failed
295 %config %{privoxyconf}/templates/default
296 %config %{privoxyconf}/templates/forwarding-failed
297 %config %{privoxyconf}/templates/edit-actions-add-url-form
298 %config %{privoxyconf}/templates/edit-actions-for-url
299 %config %{privoxyconf}/templates/edit-actions-for-url-filter
300 %config %{privoxyconf}/templates/edit-actions-list
301 %config %{privoxyconf}/templates/edit-actions-list-button
302 %config %{privoxyconf}/templates/edit-actions-list-section
303 %config %{privoxyconf}/templates/edit-actions-list-url
304 %config %{privoxyconf}/templates/edit-actions-remove-url-form
305 %config %{privoxyconf}/templates/edit-actions-url-form
306 %config %{privoxyconf}/templates/mod-local-help
307 %config %{privoxyconf}/templates/mod-support-and-service
308 %config %{privoxyconf}/templates/mod-title
309 %config %{privoxyconf}/templates/mod-unstable-warning
310 %config %{privoxyconf}/templates/no-such-domain
311 %config %{privoxyconf}/templates/show-request
312 %config %{privoxyconf}/templates/show-status
313 %config %{privoxyconf}/templates/show-status-file
314 %config %{privoxyconf}/templates/show-url-info
315 %config %{privoxyconf}/templates/show-version
316 %config %{privoxyconf}/templates/toggle
317 %config %{privoxyconf}/templates/toggle-mini
318 %config %{privoxyconf}/templates/untrusted
319 %config %{privoxyconf}/templates/url-info-osd.xml
320
321 # Attention, new defattr change here !
322 %defattr(0644,root,root,0755)
323
324 %config(noreplace) %{_sysconfdir}/logrotate.d/%{name}
325 %config(noreplace) %attr(0755,root,root) %{_sysconfdir}/rc.d/init.d/%{name}
326
327 %{_mandir}/man1/%{name}.*
328
329 %changelog
330 * Sat Oct 18 2006 Hal Burgiss <hal@foobox.net>
331 - Bump version to 3.0.6
332
333 * Sat Sep 23 2006 Jochen Schlick <j.schlick_at_decagon_de> 3.0.5-1
334 - let user-manual point to local documentation
335
336 * Thu Sep 21 2006 Hal Burgiss <hal@foobox.net>
337 - Fix user.filter install section and clean up CVS cruft in tarball.
338
339 * Wed Sep 20 2006 Hal Burgiss <hal@foobox.net>
340 - Bump version to 3.0.5
341
342 * Fri Sep 08 2006 Hal Burgiss <hal@foobox.net>
343 - Bump version to 3.0.4
344
345 * Sat Sep 02 2006 Hal Burgiss <hal@foobox.net>
346 - Include new file, user.filter. Do not overwrite "trust" file 
347   (does anyone use this?).
348
349 * Wed Mar 26 2003 Andreas Oesterhelt <andreas@oesterhelt.org>
350 - Bump version for 3.0.2.
351
352 * Wed Mar 19 2003 Hal Burgiss <hal@foobox.net>
353 - Bump version for 3.0.1.
354
355 * Tue Aug 25 2002 Hal Burgiss <hal@foobox.net>
356 - Bump version for 3.0.0 :)
357
358 * Tue Aug 06 2002 Hal Burgiss <hal@foobox.net>
359 - Reset version for 2.9.20.
360
361 * Tue Jul 30 2002 Hal Burgiss <hal@foobox.net>
362 - Reset version for 2.9.18.
363
364 * Sat Jul 27 2002 Hal Burgiss <hal@foobox.net>
365 - Reset version and release for 2.9.16.
366
367 * Fri Jul 12 2002 Karsten Hopp <karsten@redhat.de>
368 - don't use ghost files for rcX.d/*, using chkconfig is the 
369   correct way to do this job (#68619)
370
371 * Fri Jul 05 2002 Rodrigo Barbosa <rodrigob@tisbrasil.com.br>
372 + privoxy-2.9.15-8
373 - Changing delete order for groups and users (users should be first)
374
375 * Wed Jul 03 2002 Rodrigo Barbosa <rodrigob@tisbrasil.com.br>
376 + privoxy-2.9.15-7
377 - Changing sed expression that removed CR from the end of the lines. This
378   new one removes any control caracter, and should work with older versions
379   of sed
380
381 * Tue Jul 02 2002 Rodrigo Barbosa <rodrigob@tisbrasil.com.br>
382 + privoxy-2.9.15-6
383 - Fixing defattr values. File and directory modes where swapped
384
385 * Tue Jul 02 2002 Rodrigo Barbosa <rodrigob@tisbrasil.com.br>
386 + privoxy-2.9.15-5
387 - Bumping Release number (which should be changed every time the specfile
388   is)
389
390 * Tue Jul 02 2002 Hal Burgiss <hal@foobox.net>
391 + privoxy-2.9.15-4
392 - Fix typo in templates creation.
393
394 * Wed Jun 26 2002 Rodrigo Barbosa <rodrigob@tisbrasil.com.br>
395 + privoxy-2.9.15-4
396 - Fixing issues created by specfile sync between branches
397   - Correcting the release number (WARNING)
398   - Reintroducing text file conversion (dos -> unix)
399   - Reconverting hardcoded directories to macros
400   - Refixing ownership of privoxy files (now using multiple defattr
401     definitions)
402
403 * Thu Jun 20 2002 Karsten Hopp <karsten@redhat.de>
404 - fix several .spec file issues to shut up rpmlint
405   - non-standard-dir-perm /var/log/privoxy 0744
406   - invalid-vendor Privoxy.Org (This is ok for binaries compiled by privoxy
407     members, but not for packages from Red Hat)
408   - non-standard-group Networking/Utilities
409   - logrotate and init scripts should be noreplace
410
411 * Mon May 27 2002 Hal Burgiss <hal@foobox.net>
412 + privoxy-2.9.15-1
413 - Index.html is now privoxy-index.html for doc usage.
414
415 * Sat May 25 2002 Hal Burgiss <hal@foobox.net>
416 + privoxy-2.9.15-1
417 - Add html man page so index.html does not 404.
418
419 * Fri May 24 2002 Hal Burgiss <hal@foobox.net>
420 + privoxy-2.9.15-1
421 - Add another template and alphabetize these for easier tracking.
422 - Add doc/images directory.
423
424 * Wed May 15 2002 Hal Burgiss <hal@foobox.net>
425 + privoxy-2.9.15-1
426 - Add templates/edit-actions-list-button
427
428 * Fri May 03 2002 Rodrigo Barbosa <rodrigob@tisbrasil.com.br>
429 + privoxy-2.9.15-1
430 - Version bump
431 - Adding noreplace for %%{privoxyconf}/config
432 - Included a method to verify if the versions declared on the specfile and
433   configure.in match. Interrupt the build if they don't.
434
435 * Fri Apr 26 2002 Rodrigo Barbosa <rodrigob@tisbrasil.com.br>
436 + privoxy-2.9.14-3
437 - Changing Vendor to Privoxy.Org
438
439 * Tue Apr 23 2002 Hal Burgiss <hal@foobox.net>
440 + privoxy-2.9.14-2
441 - Adjust for new *actions files.
442
443 * Mon Apr 22 2002 Rodrigo Barbosa <rodrigob@tisbrasil.com.br>
444 + privoxy-2.9.14-2
445 - Removed the redhat hack that prevented the user and group from
446   being dealocated. That was a misundestanding of my part regarding
447   redhat policy.
448
449 * Mon Apr 22 2002 Rodrigo Barbosa <rodrigob@tisbrasil.com.br>
450 + privoxy-2.9.14-2
451 - Using macros to define uid and gid values
452 - Bumping release
453
454 * Mon Apr 22 2002 Rodrigo Barbosa <rodrigob@tisbrasil.com.br>
455 + privoxy-2.9.14-1
456 - Changes to fixate the uid and gid values as (both) 73. This is a 
457   value we hope to standarize for all distributions. RedHat already
458   uses it, and Conectiva should start as soon as I find where the heck
459   I left my cluebat :-)
460 - Only remove the user and group on uninstall if this is not redhat, once
461   redhat likes to have the values allocated even if the package is not 
462   installed
463
464 * Tue Apr 16 2002 Hal Burgiss <hal@foobox.net>
465 + privoxy-2.9.13-6
466 - Add --disable-dynamic-pcre to configure.
467
468 * Wed Apr 10 2002 Rodrigo Barbosa <rodrigob@tisbrasil.com.br>
469 + privoxy-2.9.13-5
470 - Relisting template files on the %%files section
471
472 * Tue Apr 09 2002 Hal Burgiss <hal@foobox.net>
473 + privoxy-2.9.13-4
474 - Removed 'make dok'. Docs are all maintained in CVS (and tarball) now.
475
476 * Mon Apr 08 2002 Hal Burgiss <hal@foobox.net>
477 + privoxy-2.9.13-4
478 - Add templates/cgi-style.css, faq.txt, p_web.css, LICENSE
479 - Remove templates/blocked-compact.
480 - Add more docbook stuff to Builderquires.
481
482 * Thu Mar 28 2002 Sarantis Paskalis <sarantis@cnl.di.uoa.gr>
483 + privoxy-2.9.13-3
484 - Include correct documentation file.
485
486 * Tue Mar 26 2002 Hal Burgiss <hal@foobox.net>
487 + privoxy-2.9.13-3
488 - Fix typo in Description.
489
490 * Tue Mar 26 2002 Rodrigo Barbosa <rodrigob@tisbrasil.com.br>
491 + privoxy-2.9.13-3
492 - Added commentary asking to update the release value on the configure
493   script
494
495 * Tue Mar 25 2002 Hal Burgiss <hal@foobox.net>
496 + privoxy-2.9.13-3
497 - Added the missing edit-actions-for-url-filter to templates.
498
499 * Mon Mar 25 2002 Rodrigo Barbosa <rodrigob@tisbrasil.com.br>
500 + privoxy-2.9.13-2
501 - Fixing Release number
502
503 * Sun Mar 24 2002 Hal Burgiss <hal@foobox.net>
504 + privoxy-2.9.13-2
505 - Added faq to docs.
506
507 * Sun Mar 24 2002 Rodrigo Barbosa <rodrigob@suespammers.org>
508 + privoxy-2.9.13-2
509 - Fixed the init files entries. Now we use %%ghost
510 - improved username (and groupname) handling on the %%pre section. By improved
511   I mean: we do it by brute force now. Much easier to maintain. Yeah, you
512   got it right. No more Mr. Nice Guy.
513 - Removed the userdel call on %%post. No need, once it's complety handled on
514   the %%pre section
515
516 * Sun Mar 24 2002 Hal Burgiss <hal@foobox.net>
517 + junkbusterng-2.9.13-1
518   Added autoheader. Added autoconf to buildrequires.
519
520 * Sun Mar 24 2002 Hal Burgiss <hal@foobox.net>
521 + junkbusterng-2.9.13-1
522 - Fixed build problems re: name conflicts with man page and logrotate.
523 - Commented out rc?d/* configs for time being, which are causing a build 
524 - failure. /etc/junkbuster is now /etc/privoxy. Stefan did other name 
525 - changes. Fixed typo ';' should be ':' causing 'rpm -e' to fail.
526
527 * Fri Mar 22 2002 Rodrigo Barbosa <rodrigob@tisbrasil.com.br>
528 + junkbusterng-2.9.13-1
529 - References to the expression ijb where changed where possible
530 - New package name: junkbusterng (all in lower case, acording to
531   the LSB recomendation)
532 - Version changed to: 2.9.13
533 - Release: 1
534 - Added: junkbuster to obsoletes and conflicts (Not sure this is
535   right. If it obsoletes, why conflict ? Have to check it later)
536 - Summary changed: Stefan, please check and aprove it
537 - Changes description to use the new name
538 - Sed string was NOT changed. Have to wait to the manpage to
539   change first
540 - Keeping the user junkbuster for now. It will require some aditional
541   changes on the script (scheduled for the next specfile release)
542 - Added post entry to move the old logfile to the new log directory
543 - Removing "chkconfig --add" entry (not good to have it automaticaly
544   added to the startup list).
545 - Added preun section to stop the service with the old name, as well
546   as remove it from the startup list
547 - Removed the chkconfig --del entry from the conditional block on
548   the preun scriptlet (now handled on the %files section)
549
550 * Thu Mar 21 2002 Hal Burgiss <hal@foobox.net>
551 - added ijb_docs.css to docs.
552
553 * Mon Mar 11 2002 Hal Burgiss <hal@foobox.net>
554 + junkbuster-2.9.11-8 
555 - Take out --enable-no-gifs, breaks some browsers.
556
557 * Sun Mar 10 2002 Hal Burgiss <hal@foobox.net>
558 + junkbuster-2.9.11-8 
559 - Add --enable-no-gifs to configure.
560
561 * Fri Mar 08 2002 Rodrigo Barbosa <rodrigob@tisbrasil.com.br>
562 + junkbuster-2.9.11-7
563 - Added BuildRequires to libtool.
564
565 * Tue Mar 06 2002 Rodrigo Barbosa <rodrigob@tisbrasil.com.br>
566 + junkbuster-2.9.11-6
567 - Changed the routined that handle the junkbust and junkbuster users on
568   %%pre and %%post to work in a smoother manner
569 - %%files now uses hardcoded usernames, to avoid problems with package
570   name changes in the future
571
572 * Tue Mar 05 2002 Rodrigo Barbosa <rodrigob@tisbrasil.com.br>
573 + junkbuster-2.9.11-5
574 - Added "make redhat-dok" to the build process
575 - Added docbook-utils to BuildRequires
576
577 * Tue Mar 05 2002 Rodrigo Barbosa <rodrigob@tisbrasil.com.br>
578 + junkbuster-2.9.11-4
579 - Changing man section in the manpage from 1 to 8
580 - We now require packages, not files, to avoid issues with apt
581
582 * Mon Mar 04 2002 Rodrigo Barbosa <rodrigob@tisbrasil.com.br>
583 + junkbuster-2.9.11-3
584 - Fixing permissions of the init script
585
586 * Mon Mar 04 2002 Rodrigo Barbosa <rodrigob@tisbrasil.com.br>
587 + junkbuster-2.9.11-2
588 - General specfile fixup, using the best recomended practices, including:
589         - Adding -q to %%setup
590         - Using macros whereever possible
591         - Not using wildchars on %%files section
592         - Doubling the percentage char on changelog and comments, to
593           avoid rpm expanding them
594
595 * Sun Mar 03 2002 Hal Burgiss <hal@foobox.net>
596 - /bin/false for shell causes init script to fail. Reverting.
597
598 * Wed Jan 09 2002 Hal Burgiss <hal@foobox.net>
599 - Removed UID 73. Included user-manual and developer-manual in docs.
600   Include other actions files. Default shell is now /bin/false.
601   Userdel user=junkbust. ChangeLog was not zipped. Removed 
602   RPM_OPT_FLAGS kludge.
603
604 * Fri Dec 28 2001 Thomas Steudten <thomas@steudten.ch>
605 - add paranoia check for 'rm -rf %%{buildroot}'
606 - add gzip to 'BuildRequires'
607
608 * Sat Dec  1 2001 Hal Burgiss <hal@foobox.net>
609 - actionsfile is now ijb.action.
610
611 * Tue Nov  6 2001 Thomas Steudten <thomas@steudten.ch>
612 - Compress manpage
613 - Add more documents for installation
614 - Add version string to name and source
615
616 * Wed Oct 24 2001 Hal Burigss <hal@foobox.net>
617 - Back to user 'junkbuster' and fix configure macro.
618
619 * Wed Oct 10 2001 Hal Burigss <hal@foobox.net>
620 - More changes for user 'junkbust'. Init script had 'junkbuster'.
621
622 * Sun Sep 23 2001 Hal Burgiss <hal@foobox.net>
623 - Change of $RPM_OPT_FLAGS handling. Added new HTML doc files.
624 - Changed owner of /etc/junkbuster to shut up PAM/xauth log noise.
625
626 * Thu Sep 13 2001 Hal Burgiss <hal@foobox.net>
627 - Added $RPM_OPT_FLAGS support, renaming of old logfile, and 
628 - made sure no default shell exists for user junkbust.
629
630 * Sun Jun  3 2001 Stefan Waldherr <stefan@waldherr.org>
631 - rework of RPM
632
633 * Mon Sep 25 2000 Stefan Waldherr <stefan@waldherr.org>
634 - CLF Logging patch by davep@cyw.uklinux.net
635 - Hal DeVore <haldevore@earthling.net> fix akamaitech in blocklist
636
637 * Sun Sep 17 2000 Stefan Waldherr <stefan@waldherr.org>
638 - Steve Kemp skx@tardis.ed.ac.uk's javascript popup patch.
639 - Markus Breitenbach breitenb@rbg.informatik.tu-darmstadt.de supplied
640   numerous fixes and enhancements for Steve's patch.
641 - adamlock@netscape.com (Adam Lock) in the windows version:
642   - Taskbar activity spinner always spins even when logging is
643   turned off (which is the default) - people who don't
644   like the spinner can turn it off from a menu option.
645   - Taskbar popup menu has a options submenu - people can now
646   open the settings files for cookies, blockers etc.
647   without opening the JB window.
648   - Logging functionality works again
649   - Buffer overflow is fixed - new code uses a bigger buffer
650   and snprintf so it shouldn't overflow anymore.
651 - Fixed userid swa, group learning problem while installing.
652   root must build RPM.
653 - Added patch by Benjamin Low <ben@snrc.uow.edu.au> that prevents JB to
654   core dump when there is no log file.
655 - Tweaked SuSE startup with the help of mohataj@gmx.net and Doc.B@gmx.de.
656 - Fixed man page to include imagefile and popupfile.
657 - Sanity check for the statistics function added.
658 - "Patrick D'Cruze" <pdcruze@orac.iinet.net.au>: It seems Microsoft
659  are transitioning Hotmail from FreeBSD/Apache to Windows 2000/IIS.
660  With IIS/5, it appears to omit the trailing \r\n from http header
661  only messages.  eg, when I visit http://www.hotmail.com, IIS/5
662  responds with a HTTP 302 redirect header.  However, this header
663  message is missing the trailing \r\n.  IIS/5 then closes the
664  connection.  Junkbuster, unfortunately, discards the header becomes
665  it thinks it is incomplete - and it is.  MS have transmitted an
666  incomplete header!
667 - Added bug reports and patch submission forms in the docs.
668
669 * Mon Mar 20 2000 Stefan Waldherr <stefan@waldherr.org>
670        Andrew <anw@tirana.freewire.co.uk> extended the JB:
671        Display of statistics of the total number of requests and the number
672        of requests filtered by junkbuster, also the percentage of requests
673        filtered. Suppression of the listing of files on the proxy-args page.
674        All stuff optional and configurable.
675
676 * Sun Sep 12 1999 Stefan Waldherr <stefan@waldherr.org>
677        Jan Willamowius (jan@janhh.shnet.org) fixed a bug in the 
678        code which prevented the JB from handling URLs of the form
679        user:password@www.foo.com. Fixed.
680
681 * Mon Aug  2 1999 Stefan Waldherr <stefan@waldherr.org>
682         Blank images are no longer cached, thanks to a hint from Markus 
683         Breitenbach <breitenb@rbg.informatik.tu-darmstadt.de>. The user 
684         agent is NO longer set by the Junkbuster. Sadly, many sites depend 
685         on the correct browser version nowadays. Incorporated many 
686         suggestions from Jan "Yenya" Kasprzak <kas@fi.muni.cz> for the
687         spec file. Fixed logging problem and since runlevel 2 does not 
688         use networking, I replaced /etc/rc.d/rc2.d/S84junkbuster with
689         /etc/rc.d/rc2.d/K09junkbuster thanks to Shaw Walker 
690         <walker@netgate.net>. You should now be able to build this RPM as 
691         a non-root user (mathias@weidner.sem.lipsia.de).
692
693 * Sun Jan 31 1999 Stefan Waldherr <stefan@waldherr.org>
694         %%{_localstatedir}/log/junkbuster set to nobody. Added /etc/junkbuster/imagelist
695         to allow more sophisticated matching of blocked images. Logrotate
696         logfile. Added files for auto-updating the blocklist et al.
697
698 * Wed Dec 16 1998 Stefan Waldherr <stefan@waldherr.org>
699         Configure blank version via config file. No separate blank
700         version anymore. Added Roland's <roland@spinnaker.rhein.de>
701         patch to show a logo instead of a blank area. Added a suggestion
702         from Alex <alex@cocoa.demon.co.uk>: %%{_localstatedir}/lock/subsys/junkbuster.
703         More regexps in the blocklist. Prepared the forwardfile for
704         squid. Extended image regexp with help from gabriel 
705         <somlo@CS.ColoState.EDU>.
706
707 * Thu Nov 19 1998 Stefan Waldherr <stefan@waldherr.org>
708         All RPMs now identify themselves in the show-proxy-args page.
709         Released Windoze version. Run junkbuster as nobody instead of
710         root. 
711
712 * Fri Oct 30 1998 Stefan Waldherr <stefan@waldherr.org>
713         Newest version. First release (hence the little version number
714         mixture -- 2.0.2-0 instead of 2.0-7). This version tightens 
715         security over 2.0.1; some multi-user sites will need to change 
716         the listen-address in the configuration file. The blank version of
717         the Internet Junkbuster has a more sophisticated way of replacing
718         images. All RPMs identify themselves in the show-proxy-args page.
719
720 * Thu Sep 23 1998 Stefan Waldherr <stefan@waldherr.org>
721         Modified the blocking feature, so that only GIFs and JPEGs are
722         blocked and replaced but not HTML pages. Thanks to 
723         "Gerd Flender" <plgerd@informatik.uni-siegen.de> for this nice
724         idea. Added numerous stuff to the blocklist. Keep patches in
725         seperate files and no longer in diffs (easier to maintain).
726
727 * Tue Jun 16 1998 Stefan Waldherr <swa@cs.cmu.edu>
728         Moved config files to /etc/junkbuster directory, moved man page,
729         added BuildRoot directive (Thanks to Alexey Nogin <ayn2@cornell.edu>)
730         Made new version junkbuster-raw (which is only a stripped version of 
731         the junkuster rpm, i.e. without my blocklist, etc.)
732
733 * Tue Jun 16 1998 (2.0-1)
734         Uhm, not that much. Just a new junkbuster version that
735         fixes a couple of bugs ... and of course a bigger 
736         blocklist with the unique Now-less-ads-than-ever(SM)
737         feature.
738         Oh, one thing: I changed the default user agent to Linux -- no 
739         need anymore to support Apple.
740
741 * Tue Jun 16 1998 (2.0-0)
742         Now-less-ads-than-ever (SM)
743         compiled with gcc instead of cc
744         compiled with -O3, thus it should be a little faster
745         show-proxy-args now works
746         /etc/junkbuster.init wasn't necessary
747
748 * Tue Jun 16 1998 (1.4)
749         some more config files were put into /etc
750         The junkbuster-blank rpm returns a 1x1 pixel image, that gets 
751         displayed by Netscape instead of the blocked image.
752         Read http://www.waldherr.org/junkbuster/ for
753         further info.
754
755 * Tue Jun 16 1998 (1.3)
756         The program has been moved to /usr/sbin (from /usr/local/bin)
757         Init- and stopscripts (/etc/rc.d/rc*) have been added so
758         that the junkbuster starts automatically during bootup.
759         The /etc/blocklist file is much more sophisticated. Theoretically
760         one should e.g. browse all major US and German newspapers without
761         seeing one annoying ad.
762         junkbuster.init was modified. It now starts junkbuster with an
763         additional "-r @" flag.
764
765 # $Log: privoxy-rh.spec,v $
766 # Revision 1.56  2008/03/16 14:17:25  fabiankeil
767 # Add %config lines for regression-tests.action and forwarding-failed.
768 # This might or might not help with #1915185, reported by Bernardo Bacic.
769 #
770 # Revision 1.55  2008/03/02 17:36:43  fabiankeil
771 # Set version to 3.0.9.
772 #
773 # Revision 1.54  2008/01/20 14:30:59  fabiankeil
774 # Set version to 3.0.8.
775 #
776 # Revision 1.53  2006/11/28 11:34:35  hal9
777 # Fix the prep section per Support request so it actually builds.
778 #
779 # Revision 1.52  2006/11/18 17:36:53  hal9
780 # Ooops, bumping version to 3.0.6
781 #
782 # Revision 1.51  2006/11/18 14:37:12  fabiankeil
783 # Bump version to 3.0.6.
784 #
785 # Revision 1.50  2006/09/24 01:19:03  hal9
786 # Add changes for user-manual directive by nfopd submitted via SF.
787 #
788 # Revision 1.49  2006/09/22 01:02:08  hal9
789 # Fix user.filter installation and CVS files cruft per support request.
790 #
791 # Revision 1.48  2006/09/20 23:51:26  hal9
792 # Bump versions to 3.0.5
793 #
794 # Revision 1.47  2006/09/09 00:35:10  hal9
795 # Bumped versions to 3.0.4. Both files should be checked further.
796 #
797 # Revision 1.46  2006/09/02 22:22:59  hal9
798 # Include user.filter, and do not overwrite trust file on updates.
799 #
800 # Revision 1.45  2006/07/18 14:48:47  david__schmidt
801 # Reorganizing the repository: swapping out what was HEAD (the old 3.1 branch)
802 # with what was really the latest development (the v_3_0_branch branch)
803 #
804 # Revision 1.33.2.22  2004/01/30 17:09:29  oes
805 # Bumped version for 3.0.3
806 #
807 # Revision 1.33.2.21  2003/03/26 00:25:00  oes
808 # Bump version for 3.0.2
809 #
810 # Revision 1.33.2.20  2003/03/20 03:27:11  hal9
811 # Bump version for 3.0.1 pending release.
812 #
813 # Revision 1.33.2.19  2002/08/25 23:36:03  hal9
814 # Bump version for 3.0.0.
815 #
816 # Revision 1.33.2.18  2002/08/10 11:28:50  oes
817 # Bumped version
818 #
819 # Revision 1.33.2.17  2002/08/07 01:08:49  hal9
820 # Bumped version to 2.9.18.
821 #
822 # Revision 1.33.2.16  2002/08/05 08:42:13  kick_
823 # same permissions, same runlevels as all the other initscripts
824 #
825 # Revision 1.33.2.15  2002/07/30 21:51:19  hal9
826 # Bump version to 2.9.17.
827 #
828 # Revision 1.33.2.14  2002/07/27 21:58:16  kick_
829 # bump version
830 #
831 # Revision 1.33.2.13  2002/07/27 21:39:41  kick_
832 # condrestart raised an error during an fresh install when privoxy wasn't already running
833 #
834 # Revision 1.33.2.12  2002/07/27 15:47:10  hal9
835 # Reset version and release for 2.9.16.
836 #
837 # Revision 1.33.2.11  2002/07/25 09:47:57  kick_
838 # this caused some errors during a fresh installation. It's unnecessary to call an extra program (/bin/true) to set the error code to 0
839 #
840 # Revision 1.33.2.10  2002/07/12 09:14:26  kick_
841 # don't use ghost files for rcX.d/*, chkconfig is available to do this job. Enable translation of error messge
842 #
843 # Revision 1.33.2.9  2002/07/05 17:16:19  morcego
844 # - Changing delete order for groups and users (users should be first)
845 #
846 # Revision 1.33.2.8  2002/07/03 20:46:24  morcego
847 # - Changing sed expression that removed CR from the end of the lines. This
848 #   new one removes any control caracter, and should work with older versions
849 #   of sed
850 #
851 # Revision 1.33.2.7  2002/07/02 18:16:48  morcego
852 # - Fixing defattr values. File and directory modes where swapped
853 #
854 # Revision 1.33.2.6  2002/07/02 17:38:10  morcego
855 # Bumping Release number
856 #
857 # Revision 1.33.2.5  2002/07/02 11:43:20  hal9
858 # Fix typo in templates creation.
859 #
860 # Revision 1.33.2.4  2002/06/26 17:32:45  morcego
861 # Integrating fixed from the main branch.
862 #
863 # Revision 1.33.2.3  2002/06/24 12:13:34  kick_
864 # shut up rpmlint. btw: The vendor tag should be set in you .rpmmacros file, not in the spec file!
865 #
866 # Revision 1.33.2.2  2002/05/28 02:39:38  hal9
867 # Replace index.html with privoxy-index.html for docs.
868 #
869 # Revision 1.33.2.1  2002/05/26 17:20:23  hal9
870 # Add images to doc dirs.
871 #
872 # Revision 1.33  2002/05/25 02:08:23  hal9
873 # Add doc/images directory.
874 # Redhat: alphabetized list of templates (and I think added one in the process)
875 #
876 # Revision 1.32  2002/05/16 01:37:29  hal9
877 # Add new template file so CGI stuff works :)
878 #
879 # Revision 1.31  2002/05/03 17:14:35  morcego
880 # *.spec: Version bump to 2.9.15
881 # -rh.spec: noreplace for %%{privoxyconf}/config
882 #           Will interrupt the build if versions from configure.in and
883 #               specfile do not match
884 #
885 # Revision 1.30  2002/04/26 15:51:05  morcego
886 # Changing Vendor value to Privoxy.Org
887 #
888 # Revision 1.29  2002/04/24 03:13:51  hal9
889 # New actions files changes.
890 #
891 # Revision 1.28  2002/04/22 18:51:33  morcego
892 # user and group now get removed on rh too.
893 #
894 # Revision 1.27  2002/04/22 16:32:31  morcego
895 # configure.in, *.spec: Bumping release to 2 (2.9.14-2)
896 # -rh.spec: uid and gid are now macros
897 # -suse.spec: Changing the header Copyright to License (Copyright is
898 #             deprecable)
899 #
900 # Revision 1.26  2002/04/22 16:24:36  morcego
901 # - Changes to fixate the uid and gid values as (both) 73. This is a
902 #   value we hope to standarize for all distributions. RedHat already
903 #   uses it, and Conectiva should start as soon as I find where the heck
904 #   I left my cluebat :-)
905 # - Only remove the user and group on uninstall if this is not redhat, once
906 #   redhat likes to have the values allocated even if the package is not
907 #   installed
908 #
909 # Revision 1.25  2002/04/17 01:59:12  hal9
910 # Add --disable-dynamic-pcre.
911 #
912 # Revision 1.24  2002/04/11 10:09:20  oes
913 # Version 2.9.14
914 #
915 # Revision 1.23  2002/04/10 18:14:45  morcego
916 # - (privoxy-rh.spec only) Relisting template files on the %%files section
917 # - (configure.in, privoxy-rh.spec) Bumped package release to 5
918 #
919 # Revision 1.22  2002/04/09 22:06:12  hal9
920 # Remove 'make dok'.
921 #
922 # Revision 1.21  2002/04/09 02:52:26  hal9
923 # - Add templates/cgi-style.css, faq.txt, p_web.css, LICENSE
924 # - Remove templates/blocked-compact.
925 # - Add more docbook stuff to Buildrequires.
926 #
927 # Revision 1.20  2002/04/08 20:27:45  swa
928 # fixed JB spelling
929 #
930 # Revision 1.19  2002/03/27 22:44:59  sarantis
931 # Include correct documentation file.
932 #
933 # Revision 1.18  2002/03/27 22:10:14  sarantis
934 # bumped Hal's last commit 1 day to the future to make rpm build again.
935 #
936 # Revision 1.17  2002/03/27 00:48:23  hal9
937 # Fix up descrition.
938 #
939 # Revision 1.16  2002/03/26 22:29:55  swa
940 # we have a new homepage!
941 #
942 # Revision 1.15  2002/03/26 17:39:54  morcego
943 # Adding comment on the specfile to remember the packager to update
944 # the release number on the configure script
945 #
946 # Revision 1.14  2002/03/26 14:25:15  hal9
947 # Added edit-actions-for-url-filter to templates in %%config
948 #
949 # Revision 1.13  2002/03/25 13:31:04  morcego
950 # Bumping Release tag.
951 #
952 # Revision 1.12  2002/03/25 03:11:40  hal9
953 # Do it right way this time :/
954 #
955 # Revision 1.11  2002/03/25 03:09:51  hal9
956 # Added faq to docs.
957 #
958 # Revision 1.10  2002/03/24 22:16:14  morcego
959 # Just removing some old commentaries.
960 #
961 # Revision 1.9  2002/03/24 22:03:22  morcego
962 # Should be working now. See %changelog for details
963 #
964 # Revision 1.8  2002/03/24 21:13:01  morcego
965 # Tis broken.
966 #
967 # Revision 1.7  2002/03/24 21:07:18  hal9
968 # Add autoheader, etc.
969 #
970 # Revision 1.6  2002/03/24 19:56:40  hal9
971 # /etc/junkbuster is now /etc/privoxy. Fixed ';' typo.
972 #
973 # Revision 1.4  2002/03/24 13:32:42  swa
974 # name change related issues
975 #
976 # Revision 1.3  2002/03/24 12:56:21  swa
977 # name change related issues.
978 #
979 # Revision 1.2  2002/03/24 11:40:14  swa
980 # name change
981 #
982 # Revision 1.1  2002/03/24 11:23:44  swa
983 # name change
984 #
985 # Revision 1.1  2002/03/22 20:53:03  morcego
986 # - Ongoing process to change name to JunkbusterNG
987 # - configure/configure.in: no change needed
988 # - GNUmakefile.in:
989 #         - TAR_ARCH = /tmp/JunkbusterNG-$(RPM_VERSION).tar.gz
990 #         - PROGRAM    = jbng@EXEEXT@
991 #         - rh-spec now references as junkbusterng-rh.spec
992 #         - redhat-upload: references changed to junkbusterng-* (package names)
993 #         - tarball-dist: references changed to JunkbusterNG-distribution-*
994 #         - tarball-src: now JunkbusterNG-*
995 #         - install: initscript now junkbusterng.init and junkbusterng (when
996 #                    installed)
997 # - junkbuster-rh.spec: renamed to junkbusterng-rh.spec
998 # - junkbusterng.spec:
999 #         - References to the expression ijb where changed where possible
1000 #         - New package name: junkbusterng (all in lower case, acording to
1001 #           the LSB recomendation)
1002 #         - Version changed to: 2.9.13
1003 #         - Release: 1
1004 #         - Added: junkbuster to obsoletes and conflicts (Not sure this is
1005 #           right. If it obsoletes, why conflict ? Have to check it later)
1006 #         - Summary changed: Stefan, please check and aprove it
1007 #         - Changes description to use the new name
1008 #         - Sed string was NOT changed. Have to wait to the manpage to
1009 #           change first
1010 #         - Keeping the user junkbuster for now. It will require some aditional
1011 #           changes on the script (scheduled for the next specfile release)
1012 #         - Added post entry to move the old logfile to the new log directory
1013 #         - Removing "chkconfig --add" entry (not good to have it automaticaly
1014 #           added to the startup list).
1015 #         - Added preun section to stop the service with the old name, as well
1016 #           as remove it from the startup list
1017 #         - Removed the chkconfig --del entry from the conditional block on
1018 #           the preun scriptlet (now handled on the %files section)
1019 # - junkbuster.init: renamed to junkbusterng.init
1020 # - junkbusterng.init:
1021 #         - Changed JB_BIN to jbng
1022 #         - Created JB_OBIN with the old value of JB_BIN (junkbuster), to
1023 #           be used where necessary (config dir)
1024 #
1025 # Aditional notes:
1026 # - The config directory is /etc/junkbuster yet. Have to change it on the
1027 # specfile, after it is changes on the code
1028 # - The only files that got renamed on the cvs tree were the rh specfile and
1029 # the init file. Some file references got changes on the makefile and on the
1030 # rh-spec (as listed above)
1031 #
1032 # Revision 1.43  2002/03/21 16:04:10  hal9
1033 # added ijb_docs.css to %doc
1034 #
1035 # Revision 1.42  2002/03/12 13:41:18  sarantis
1036 # remove hard-coded "ijbswa" string in build phase
1037 #
1038 # Revision 1.41  2002/03/11 22:58:32  hal9
1039 # Remove --enable-no-gifs
1040 #
1041 # Revision 1.39  2002/03/08 18:57:29  swa
1042 # remove user junkbuster after de-installation.
1043 #
1044 # Revision 1.38  2002/03/08 13:45:27  morcego
1045 # Adding libtool to Buildrequires
1046 #
1047 # Revision 1.37  2002/03/07 19:23:49  swa
1048 # i hate to scroll. suse: wrong configdir.
1049 #
1050 # Revision 1.36  2002/03/07 05:06:54  morcego
1051 # Fixed %pre scriptlet. And, as a bonus, you can even understand it now. :-)
1052 #
1053 # Revision 1.34  2002/03/07 00:11:57  morcego
1054 # Few changes on the %pre and %post sections of the rh specfile to handle
1055 # usernames more cleanly
1056 #
1057 # Revision 1.33  2002/03/05 13:13:57  morcego
1058 # - Added "make redhat-dok" to the build phase
1059 # - Added docbook-utils to BuildRequires
1060 #
1061 # Revision 1.32  2002/03/05 12:34:24  morcego
1062 # - Changing section internaly on the manpage from 1 to 8
1063 # - We now require packages, not files, to avoid issues with apt
1064 #
1065 # Revision 1.31  2002/03/04 18:06:09  morcego
1066 # SPECFILE: fixing permissing of the init script (broken by the last change)
1067 #
1068 # Revision 1.30  2002/03/04 16:18:03  morcego
1069 # General cleanup of the rh specfile.
1070 #
1071 # %changelog
1072 # * Mon Mar 04 2002 Rodrigo Barbosa <rodrigob@tisbrasil.com.br>
1073 # + junkbuster-2.9.11-2
1074 # - General specfile fixup, using the best recomended practices, including:
1075 #         - Adding -q to %%setup
1076 #         - Using macros whereever possible
1077 #         - Not using wildchars on %%files section
1078 #         - Doubling the percentage char on changelog and comments, to
1079 #           avoid rpm expanding them
1080 #
1081 # Revision 1.29  2002/03/03 19:21:22  hal9
1082 # Init script fails if shell is /bin/false.
1083 #
1084 # Revision 1.28  2002/01/09 18:34:03  hal9
1085 # nit.
1086 #
1087 # Revision 1.27  2002/01/09 18:32:02  hal9
1088 # Removed RPM_OPT_FLAGS kludge.
1089 #
1090 # Revision 1.26  2002/01/09 18:21:10  hal9
1091 # A few minor updates.
1092 #
1093 # Revision 1.25  2001/12/28 01:45:36  steudten
1094 # Add paranoia check and BuildReq: gzip
1095 #
1096 # Revision 1.24  2001/12/01 21:43:14  hal9
1097 # Allowed for new ijb.action file.
1098 #
1099 # Revision 1.23  2001/11/06 12:09:03  steudten
1100 # Compress doc files. Install README and AUTHORS at last as document.
1101 #
1102 # Revision 1.22  2001/11/05 21:37:34  steudten
1103 # Fix to include the actual version for name.
1104 # Let the 'real' packager be included - sorry stefan.
1105 #
1106 # Revision 1.21  2001/10/31 19:27:27  swa
1107 # consistent description. new name for suse since
1108 # we had troubles with rpms of identical names
1109 # on the webserver.
1110 #
1111 # Revision 1.20  2001/10/24 15:45:49  hal9
1112 # To keep Thomas happy (aka correcting my  mistakes)
1113 #
1114 # Revision 1.19  2001/10/15 03:23:59  hal9
1115 # Nits.
1116 #
1117 # Revision 1.17  2001/10/10 18:59:28  hal9
1118 # Minor change for init script.
1119 #
1120 # Revision 1.16  2001/09/24 20:56:23  hal9
1121 # Minor changes.
1122 #
1123 # Revision 1.13  2001/09/10 17:44:43  swa
1124 # integrate three pieces of documentation. needs work.
1125 # will not build cleanly under redhat.
1126 #
1127 # Revision 1.12  2001/09/10 16:25:04  swa
1128 # copy all templates. version updated.
1129 #
1130 # Revision 1.11  2001/07/03 11:00:25  sarantis
1131 # replaced permissionsfile with actionsfile
1132 #
1133 # Revision 1.10  2001/07/03 09:34:44  sarantis
1134 # bumped up version number.
1135 #
1136 # Revision 1.9  2001/06/12 18:15:29  swa
1137 # the %% in front of configure (see tag below) confused
1138 # the rpm build process on 7.1.
1139 #
1140 # Revision 1.8  2001/06/12 17:15:56  swa
1141 # fixes, because a clean build on rh6.1 was impossible.
1142 # GZIP confuses make, %% configure confuses rpm, etc.
1143 #
1144 # Revision 1.7  2001/06/11 12:17:26  sarantis
1145 # fix typo in %%post
1146 #
1147 # Revision 1.6  2001/06/11 11:28:25  sarantis
1148 # Further optimizations and adaptations in the spec file.
1149 #
1150 # Revision 1.5  2001/06/09 09:14:11  swa
1151 # shamelessly adapted RPM stuff from the newest rpm that
1152 # RedHat provided for the JB.
1153 #
1154 # Revision 1.4  2001/06/08 20:54:18  swa
1155 # type with status file. remove forward et. al from file list.
1156 #
1157 # Revision 1.3  2001/06/07 17:28:10  swa
1158 # cosmetics
1159 #
1160 # Revision 1.2  2001/06/04 18:31:58  swa
1161 # files are now prefixed with either `confdir' or `logdir'.
1162 # `make redhat-dist' replaces both entries confdir and logdir
1163 # with redhat values
1164 #
1165 # Revision 1.1  2001/06/04 10:44:57  swa
1166 # `make redhatr-dist' now works. Except for the paths
1167 # in the config file.
1168 #
1169 #
1170 #