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