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