SPECS: mailman.spec, maradns.spec, mars_nwe.spec, mc.spec, metalog...

glen glen at pld-linux.org
Sun Mar 5 15:42:58 CET 2006


Author: glen                         Date: Sun Mar  5 14:42:58 2006 GMT
Module: SPECS                         Tag: HEAD
---- Log message:
- use %service, adapterize, cosmetics

---- Files affected:
SPECS:
   mailman.spec (1.116 -> 1.117) , maradns.spec (1.43 -> 1.44) , mars_nwe.spec (1.39 -> 1.40) , mc.spec (1.230 -> 1.231) , metalog.spec (1.20 -> 1.21) , mksd.spec (1.44 -> 1.45) , mldonkey.spec (1.139 -> 1.140) , mmtcpfwd.spec (1.24 -> 1.25) , mon.spec (1.29 -> 1.30) , monkey.spec (1.18 -> 1.19) , mrt.spec (1.47 -> 1.48) , mrtg.spec (1.130 -> 1.131) 

---- Diffs:

================================================================
Index: SPECS/mailman.spec
diff -u SPECS/mailman.spec:1.116 SPECS/mailman.spec:1.117
--- SPECS/mailman.spec:1.116	Sun Feb  5 15:51:53 2006
+++ SPECS/mailman.spec	Sun Mar  5 15:42:52 2006
@@ -34,25 +34,25 @@
 BuildRequires:	automake
 BuildRequires:	python >= 2.1
 BuildRequires:	python-devel
-BuildRequires:	rpmbuild(macros) >= 1.202
-Requires:	rc-scripts
-Requires(pre):	/bin/id
-Requires(pre):	/usr/bin/getgid
-Requires(pre):	/usr/sbin/groupadd
-Requires(pre):	/usr/sbin/useradd
-Requires(postun):	/usr/sbin/groupdel
-Requires(postun):	/usr/sbin/userdel
-Requires(post,preun):	/sbin/chkconfig
+BuildRequires:	rpmbuild(macros) >= 1.268
 Requires(post):	/bin/hostname
 Requires(post):	grep
+Requires(post,preun):	/sbin/chkconfig
+Requires(postun):	/usr/sbin/groupdel
+Requires(postun):	/usr/sbin/userdel
 Requires(postun):	fileutils
 Requires(postun):	grep
+Requires(pre):	/bin/id
+Requires(pre):	/usr/bin/getgid
+Requires(pre):	/usr/sbin/groupadd
+Requires(pre):	/usr/sbin/useradd
 Requires:	/sbin/chkconfig
 Requires:	crondaemon
-%pyrequires_eq	python-modules
+Requires:	rc-scripts
 Requires:	smtpdaemon
 Requires:	webapps
 Requires:	webserver
+%pyrequires_eq	python-modules
 Provides:	group(mailman)
 Provides:	user(mailman)
 BuildRoot:	%{tmpdir}/%{name}-%{version}-root-%(id -u -n)
@@ -170,7 +170,7 @@
 	--with-cgi-gid='http' \
 	--with-mailhost=localhost.localdomain \
 	--with-urlhost=localhost.localdomain \
-	--without-permcheck 
+	--without-permcheck
 %{__make}
 
 #%{__make} -C misc
@@ -235,26 +235,18 @@
 
 %post
 if [ "$1" = "1" ]; then
-	if [ -f /var/lock/subsys/crond ]; then
-		/etc/rc.d/init.d/crond restart
-	fi
+	%service -q crond restart
 fi
 %{_libdir}/mailman/bin/update
 /sbin/chkconfig --add mailman
-if [ -f /var/lock/subsys/mailman ]; then
-	if [ -d /var/spool/mailman/data ]; then
-		ln -sf %{_sysconfdir}/sitelist.cfg /var/spool/mailman/data/sitelist.cfg
-	fi
-	/etc/rc.d/init.d/mailman restart 1>&2
-else
-	echo "Run \"/etc/rc.d/init.d/mailman start\" to start mailman qrunner daemon."
+if [ -f /var/lock/subsys/mailman ] && [ -d /var/spool/mailman/data ]; then
+	ln -sf %{_sysconfdir}/sitelist.cfg /var/spool/mailman/data/sitelist.cfg
 fi
+%service mailman restart "mailman qrunner daemon"
 
 %preun
 if [ "$1" = "0" ]; then
-	if [ -f /var/lock/subsys/mailman ]; then
-		/etc/rc.d/init.d/mailman stop 1>&2
-	fi
+	%service mailman stop
 	/sbin/chkconfig --del mailman
 fi
 
@@ -262,9 +254,7 @@
 if [ "$1" = "0" ]; then
 	%userremove mailman
 	%groupremove mailman
-	if [ -f /var/lock/subsys/crond ]; then
-		/etc/rc.d/init.d/crond restart
-	fi
+	%service -q crond restart
 fi
 
 %triggerin -- apache1
@@ -286,7 +276,7 @@
 
 if [ -f /var/lock/subsys/mailman ]; then
 	ln -sf %{_sysconfdir}/sitelist.cfg /var/spool/mailman/data/sitelist.cfg
-	/etc/rc.d/init.d/mailman stop 1>&2
+	/sbin/service mailman stop 1>&2
 	stopped=true
 fi
 
@@ -327,9 +317,9 @@
 	rm -f %{_var}/lib/mailman/Mailman/mm_cfg.pyc
 fi
 %{_libdir}/mailman/bin/update
-if [ "x$stopped" = "xtrue" ]; then
+if [ "$stopped" = "true" ]; then
 	rm -f /var/spool/mailman/data/sitelist.cfg
-	/etc/rc.d/init.d/mailman start 1>&2
+	/sbin/service mailman start 1>&2
 fi
 
 # nuke very-old config location (this mostly for Ra)
@@ -351,10 +341,7 @@
 
 rm -f /etc/httpd/httpd.conf/90_%{name}.conf
 /usr/sbin/webapp register httpd %{_webapp}
-
-if [ -f /var/lock/subsys/httpd ]; then
-	/etc/rc.d/init.d/httpd reload 1>&2
-fi
+%service -q httpd reload
 
 %files
 %defattr(644,root,root,755)
@@ -424,6 +411,9 @@
 All persons listed below can be reached at <cvs_login>@pld-linux.org
 
 $Log$
+Revision 1.117  2006/03/05 14:42:52  glen
+- use %service, adapterize, cosmetics
+
 Revision 1.116  2006/02/05 14:51:53  baggins
 - release 3
 
@@ -519,7 +509,7 @@
 - cosmetics for build and install
 - need more test
 - there is 2.1.7 beta, but first close 2.1.6 in pld ;-)
-DO NOT SEND TO BUILD REQUEST !
+  DO NOT SEND TO BUILD REQUEST !
 
 Revision 1.89  2005/09/09 14:08:27  qboosh
 - sorted verify() flags
@@ -603,7 +593,9 @@
 - updated to 2.1.3
 
 Revision 1.63  2003/10/04 14:46:46  arekm
-- applied patch by mkochano and changed to work with apache2 by default (works with apache1, too if you are smart enough to know what to do)
+- applied patch by mkochano and changed to work with apache2 by
+  default (works with apache1, too if you are smart enough to know
+  what to do)
 
 Revision 1.62  2003/09/24 16:05:29  malekith
 - br automake
@@ -774,7 +766,7 @@
 Revision 1.14  2002/05/21 23:14:07  kloczek
 - perl -pi -e "s/^automake -a -c -f --foreing/\%\{__automake\}/; \
              s/^automake -a -c -f/\%\{__automake\}/; \
-	     s/^autoconf/\%\{__autoconf\}/"
+     s/^autoconf/\%\{__autoconf\}/"
 
 Revision 1.13  2002/05/07 12:13:15  kloczek
 - Epoch: 3 (for allow upgrade from RH).
@@ -801,7 +793,7 @@
 - merge translations from Conectiva.
 
 Revision 1.6  2001/12/14 19:47:27  misiek
-2.0.3->2.0.8
+- 2.0.3->2.0.8
 
 Revision 1.5  2001/10/11 08:28:40  qboosh
 - BuildRequires: automake
@@ -810,7 +802,7 @@
 - adapterized.
 
 Revision 1.3  2001/04/12 21:59:53  martii
-It's not builing when Python is not present in your linux box; fixed ...
+- It's not builing when Python is not present in your linux box; fixed ...
 
 Revision 1.2  2001/03/21 14:45:55  mis
 - updated (by autoup) to 2.0.3

================================================================
Index: SPECS/maradns.spec
diff -u SPECS/maradns.spec:1.43 SPECS/maradns.spec:1.44
--- SPECS/maradns.spec:1.43	Tue Dec 13 14:58:51 2005
+++ SPECS/maradns.spec	Sun Mar  5 15:42:52 2006
@@ -13,7 +13,7 @@
 Source3:	mararc
 Patch0:		%{name}-default_uid.patch
 URL:		http://www.maradns.org/
-BuildRequires:	rpmbuild(macros) >= 1.202
+BuildRequires:	rpmbuild(macros) >= 1.268
 Requires(post):	fileutils
 Requires(post,preun):	/sbin/chkconfig
 Requires(postun):	/usr/sbin/groupdel
@@ -110,11 +110,7 @@
 
 %post
 /sbin/chkconfig --add maradns
-if [ -f /var/lock/subsys/maradns ]; then
-	/etc/rc.d/init.d/maradns restart 1>&2
-else
-	echo "Type \"/etc/rc.d/init.d/maradns start\" to start maradns" 1>&2
-fi
+%service maradns restart
 touch %{_localstatedir}/log/maradns
 chmod 640 %{_localstatedir}/log/maradns
 
@@ -126,27 +122,19 @@
 
 %post zoneserver
 /sbin/chkconfig --add zoneserver
-if [ -f /var/lock/subsys/zoneserver ]; then
-	/etc/rc.d/init.d/zoneserver restart 1>&2
-else
-	echo "Type \"/etc/rc.d/init.d/zoneserver start\" to start zoneserver" 1>&2
-fi
+%service zoneserver restart
 touch %{_localstatedir}/log/zoneserver
 chmod 640 %{_localstatedir}/log/zoneserver
 
 %preun
 if [ "$1" = "0" ]; then
-	if [ -f /var/lock/subsys/maradns ]; then
-		/etc/rc.d/init.d/maradns stop 1>&2
-	fi
+	%service maradns stop
 	/sbin/chkconfig --del maradns
 fi
 
 %preun zoneserver
 if [ "$1" = "0" ]; then
-	if [ -f /var/lock/subsys/zoneserver ]; then
-		/etc/rc.d/init.d/zoneserver stop 1>&2
-	fi
+	%service zoneserver stop
 	/sbin/chkconfig --del zoneserver
 fi
 
@@ -184,6 +172,9 @@
 All persons listed below can be reached at <cvs_login>@pld-linux.org
 
 $Log$
+Revision 1.44  2006/03/05 14:42:52  glen
+- use %service, adapterize, cosmetics
+
 Revision 1.43  2005/12/13 13:58:51  glen
 - adapterized (sorted %verify attrs)
 

================================================================
Index: SPECS/mars_nwe.spec
diff -u SPECS/mars_nwe.spec:1.39 SPECS/mars_nwe.spec:1.40
--- SPECS/mars_nwe.spec:1.39	Tue Dec 13 14:58:51 2005
+++ SPECS/mars_nwe.spec	Sun Mar  5 15:42:52 2006
@@ -31,6 +31,7 @@
 Patch9:		%{name}-format.patch
 URL:		http://www.compu-art.de/mars_nwe/index.html
 BuildRequires:	gdbm-devel
+BuildRequires:	rpmbuild(macros) >= 1.268
 Requires(post,preun):	/sbin/chkconfig
 Requires:	ipxutils
 Requires:	rc-scripts
@@ -154,17 +155,11 @@
 
 %post
 /sbin/chkconfig --add nwserv
-if [ -f /var/lock/subsys/nwserv ]; then
-	/etc/rc.d/init.d/nwserv restart 1>&2
-else
-	echo "Run \"/etc/rc.d/init.d/nwserv start\" to start MARS NetWare daemon."
-fi
+%service nwserv restart "MARS NetWare daemon"
 
 %preun
 if [ "$1" = "0" ]; then
-	if [ -f /var/lock/subsys/nwserv ]; then
-		/etc/rc.d/init.d/nwserv stop 1>&2
-	fi
+	%service nwserv stop
 	/sbin/chkconfig --del nwserv
 fi
 
@@ -204,6 +199,9 @@
 All persons listed below can be reached at <cvs_login>@pld-linux.org
 
 $Log$
+Revision 1.40  2006/03/05 14:42:52  glen
+- use %service, adapterize, cosmetics
+
 Revision 1.39  2005/12/13 13:58:51  glen
 - adapterized (sorted %verify attrs)
 

================================================================
Index: SPECS/mc.spec
diff -u SPECS/mc.spec:1.230 SPECS/mc.spec:1.231
--- SPECS/mc.spec:1.230	Tue Feb 28 17:51:41 2006
+++ SPECS/mc.spec	Sun Mar  5 15:42:52 2006
@@ -7,6 +7,8 @@
 %bcond_without	x		# without text edit in X support
 %bcond_without	utf8		# utf8
 #
+%define	snap	2006-02-24-22
+%define ssnap	%(echo %{snap} | tr - .)
 Summary:	A user-friendly file manager and visual shell
 Summary(de):	Visuelle Shell Midnight Commander
 Summary(es):	Interpretador de comandos visual Midnight Commander
@@ -20,12 +22,10 @@
 Summary(zh_CN):	Ňť¸öˇ˝ąăĘľÓĂľÄÎÄźţšÜŔíĆ÷şÍĐéÄâShell
 Name:		mc
 Version:	4.6.1
-%define	snap	2006-02-24-22
-%define ssnap	%(echo %{snap} | tr - .)
 Release:	0.%{ssnap}.1
 License:	GPL
 Group:		Applications/Shells
-Source0:	http://www.ibiblio.org/pub/Linux/utils/file/managers/mc/snapshots/mc-2006-02-24-22.tar.gz
+Source0:	http://www.ibiblio.org/pub/Linux/utils/file/managers/mc/snapshots/%{name}-2006-02-24-22.tar.gz
 # Source0-md5:	408b835829f8e4c7279f0c8944355334
 Source1:	%{name}serv.pamd
 Source2:	%{name}serv.init
@@ -73,6 +73,7 @@
 BuildRequires:	pam-devel
 BuildRequires:	pkgconfig
 BuildRequires:	rpm-perlprov
+BuildRequires:	rpmbuild(macros) >= 1.268
 BuildRequires:	sed >= 4.0
 %if %{with utf8}
 BuildRequires:	slang-devel >= 1:2.0.0
@@ -86,9 +87,9 @@
 Requires:	file
 Requires:	pam >= 0.77.3
 Requires:	setup >= 2.4.6-2
-BuildRoot:	%{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 Obsoletes:	tkmc
 Conflicts:	rpm < 4.0
+BuildRoot:	%{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 %define		specflags_ia32	 -fomit-frame-pointer
 
@@ -264,18 +265,18 @@
 # convert files in /lib to UTF-8
 cd lib
 for i in mc.hint mc.hint.es mc.hint.it mc.hint.nl; do
-  iconv -f iso-8859-1 -t utf-8 < ${i} > ${i}.tmp
-  mv -f ${i}.tmp ${i}
+	iconv -f iso-8859-1 -t utf-8 < ${i} > ${i}.tmp
+	mv -f ${i}.tmp ${i}
 done
 
 for i in mc.hint.cs mc.hint.hu mc.hint.pl; do
-  iconv -f iso-8859-2 -t utf-8 < ${i} > ${i}.tmp
-  mv -f ${i}.tmp ${i}
+	iconv -f iso-8859-2 -t utf-8 < ${i} > ${i}.tmp
+	mv -f ${i}.tmp ${i}
 done
 
 for i in mc.hint.sr mc.menu.sr; do
-  iconv -f iso-8859-5 -t utf-8 < ${i} > ${i}.tmp
-  mv -f ${i}.tmp ${i}
+	iconv -f iso-8859-5 -t utf-8 < ${i} > ${i}.tmp
+	mv -f ${i}.tmp ${i}
 done
 
 iconv -f koi8-r -t utf8 < mc.hint.ru > mc.hint.ru.tmp
@@ -292,30 +293,30 @@
 
 cd ru
 for i in mc.1.in xnc.hlp; do
-  iconv -f koi8-r -t utf-8 < ${i} > ${i}.tmp
-  mv -f ${i}.tmp ${i}
+	iconv -f koi8-r -t utf-8 < ${i} > ${i}.tmp
+	mv -f ${i}.tmp ${i}
 done
 cd ..
 
 cd sr
 for i in mc.1.in mcserv.8.in xnc.hlp; do
-  iconv -f iso-8859-5 -t utf-8 < ${i} > ${i}.tmp
-  mv -f ${i}.tmp ${i}
+	iconv -f iso-8859-5 -t utf-8 < ${i} > ${i}.tmp
+	mv -f ${i}.tmp ${i}
 done
 cd ..
 
 for d in es it; do
-  for i in mc.1.in xnc.hlp; do
-    iconv -f iso-8859-3 -t utf-8 < ${d}/${i} > ${d}/${i}.tmp
-    mv -f ${d}/${i}.tmp ${d}/${i}
-  done
+	for i in mc.1.in xnc.hlp; do
+		iconv -f iso-8859-3 -t utf-8 < ${d}/${i} > ${d}/${i}.tmp
+		mv -f ${d}/${i}.tmp ${d}/${i}
+	done
 done
 
 for d in hu pl; do
-  for i in mc.1.in xnc.hlp; do
-    iconv -f iso-8859-2 -t utf-8 < ${d}/${i} > ${d}/${i}.tmp
-    mv -f ${d}/${i}.tmp ${d}/${i}
-  done
+	for i in mc.1.in xnc.hlp; do
+		iconv -f iso-8859-2 -t utf-8 < ${d}/${i} > ${d}/${i}.tmp
+		mv -f ${d}/${i}.tmp ${d}/${i}
+	done
 done
 cd ..
 %endif
@@ -397,17 +398,11 @@
 
 %post -n mcserv
 /sbin/chkconfig --add mcserv
-if [ -f /var/lock/subsys/mcserv ]; then
-	/etc/rc.d/init.d/mcserv restart >&2
-else
-	echo "Run \"/etc/rc.d/init.d/mcserv start\" to start mcserv daemon."
-fi
+%service mcserv restart "mcserv daemon"
 
 %preun -n mcserv
 if [ "$1" = "0" ]; then
-	if [ -f /var/lock/subsys/mcserv ]; then
-		/etc/rc.d/init.d/mcserv stop >&2
-	fi
+	%service mcserv stop
 	/sbin/chkconfig --del mcserv
 fi
 
@@ -511,6 +506,9 @@
 All persons listed below can be reached at <cvs_login>@pld-linux.org
 
 $Log$
+Revision 1.231  2006/03/05 14:42:52  glen
+- use %service, adapterize, cosmetics
+
 Revision 1.230  2006/02/28 16:51:41  arekm
 - updated to mc snap 2006.02.24.22
 
@@ -687,7 +685,7 @@
 - fixed ja description of mcserv subpackage
 
 Revision 1.176  2003/09/06 21:18:26  adgor
-- Desktop file moved to %%{_desktopdir}
+- Desktop file moved to %{_desktopdir}
 
 Revision 1.175  2003/08/01 08:42:46  gotar
 - fixed bashism in audiofs,

================================================================
Index: SPECS/metalog.spec
diff -u SPECS/metalog.spec:1.20 SPECS/metalog.spec:1.21
--- SPECS/metalog.spec:1.20	Tue Dec 13 14:58:51 2005
+++ SPECS/metalog.spec	Sun Mar  5 15:42:52 2006
@@ -16,13 +16,14 @@
 BuildRequires:	autoconf
 BuildRequires:	automake
 BuildRequires:	pcre-devel
+BuildRequires:	rpmbuild(macros) >= 1.268
 Requires(post,preun):	/sbin/chkconfig
 Requires:	rc-scripts
 Provides:	syslogdaemon
-BuildRoot:	%{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 Obsoletes:	klogd
 Obsoletes:	syslog
 Obsoletes:	syslog-ng
+BuildRoot:	%{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 %description
 Metalog is a modern replacement for syslogd and klogd. The logged
@@ -72,17 +73,11 @@
 
 %post
 /sbin/chkconfig --add metalog
-if [ -f /var/lock/subsys/metalog ]; then
-	/etc/rc.d/init.d/metalog restart &>/dev/null
-else
-	echo "Run \"/etc/rc.d/init.d/metalog start\" to start metalog daemon."
-fi
+%service metalog restart "metalog daemon"
 
 %preun
 if [ "$1" = "0" ]; then
-	if [ -f /var/lock/subsys/metalog ]; then
-		/etc/rc.d/init.d/metalog stop >&2
-	fi
+	%service metalog stop
 	/sbin/chkconfig --del metalog
 fi
 
@@ -101,6 +96,9 @@
 All persons listed below can be reached at <cvs_login>@pld-linux.org
 
 $Log$
+Revision 1.21  2006/03/05 14:42:52  glen
+- use %service, adapterize, cosmetics
+
 Revision 1.20  2005/12/13 13:58:51  glen
 - adapterized (sorted %verify attrs)
 
@@ -120,15 +118,15 @@
 - working Source URL
 
 Revision 1.14  2002/11/27 22:06:21  juandon
-- new %%doc
+- new %doc
 
 Revision 1.13  2002/10/09 13:14:40  kloczek
 - use more macros, some cosmetics, added missing "rm -f missing" and use new %doc
 
 Revision 1.12  2002/05/21 23:14:08  kloczek
-perl -pi -e "s/^automake -a -c -f --foreing/\%\{__automake\}/; \
+- perl -pi -e "s/^automake -a -c -f --foreing/\%\{__automake\}/; \
              s/^automake -a -c -f/\%\{__automake\}/; \
-	     s/^autoconf/\%\{__autoconf\}/"
+     s/^autoconf/\%\{__autoconf\}/"
 
 Revision 1.11  2002/05/06 16:45:36  kloczek
 - release 1: cosmetics.
@@ -147,7 +145,7 @@
   Group field using gettext).
 
 Revision 1.6  2002/01/18 02:13:49  kloczek
-perl -pi -e "s/pld-list\@pld.org.pl/feedback\@pld.org.pl/"
+- perl -pi -e "s/pld-list\@pld.org.pl/feedback\@pld.org.pl/"
 
 Revision 1.5  2001/12/06 10:42:59  qboosh
 - pl translations, cosmetics; release 3

================================================================
Index: SPECS/mksd.spec
diff -u SPECS/mksd.spec:1.44 SPECS/mksd.spec:1.45
--- SPECS/mksd.spec:1.44	Mon Dec  5 00:10:18 2005
+++ SPECS/mksd.spec	Sun Mar  5 15:42:52 2006
@@ -16,7 +16,7 @@
 Source1:	%{name}.init
 Source2:	%{name}.sysconfig
 URL:		http://linux.mks.com.pl/
-BuildRequires:	rpmbuild(macros) >= 1.213
+BuildRequires:	rpmbuild(macros) >= 1.268
 Requires(postun):	/usr/sbin/groupdel
 Requires(postun):	/usr/sbin/userdel
 Requires(pre):	/bin/id
@@ -122,7 +122,6 @@
 %pre
 %groupadd -g 44 mksd
 %useradd -u 44 -d /tmp -s /bin/false -c "Mksd Anti Virus Checker" -g mksd mksd
-# FIXME: isn't trigger sufficent?
 AMAVIS=$(/usr/bin/getgid amavis)
 RESULT=$?
 if [ $RESULT -eq 0 ]; then
@@ -138,17 +137,11 @@
 
 %post
 /sbin/chkconfig --add mksd
-if [ -f /var/lock/subsys/mksd ]; then
-	/etc/rc.d/init.d/mksd restart >&2
-else
-	echo "Run \"/etc/rc.d/init.d/mksd start\" to start Mksd for Linux daemon."
-fi
+%service mksd restart "Mksd for Linux daemon"
 
 %preun
 if [ "$1" = "0" ];then
-	if [ -f /var/lock/subsys/mksd ]; then
-		/etc/rc.d/init.d/mksd stop >&2
-	fi
+	%service mksd stop
 	/sbin/chkconfig --del mksd
 fi
 
@@ -176,6 +169,9 @@
 All persons listed below can be reached at <cvs_login>@pld-linux.org
 
 $Log$
+Revision 1.45  2006/03/05 14:42:52  glen
+- use %service, adapterize, cosmetics
+
 Revision 1.44  2005/12/04 23:10:18  glen
 - adapterized (sorted %verify flags)
 
@@ -207,10 +203,11 @@
 - release 4; rebuild with new cron stuff; there's no bazy4.tgz since 12.07
 
 Revision 1.34  2004/04/10 22:08:19  hunter
--correctet license
+- corrected license
 
 Revision 1.33  2003/12/11 11:51:08  matkor
-- Release 3. Added to mksd.sysconfig UPDATE_QUIET, UPDATE_HOUR. Pointed out by Andrzej Zawadzki zawadaa malpa wp kropka pl.
+- Release 3. Added to mksd.sysconfig UPDATE_QUIET, UPDATE_HOUR.
+  Pointed out by Andrzej Zawadzki zawadaa malpa wp kropka pl.
 
 Revision 1.32  2003/12/04 16:50:01  ankry
 - cosmetics
@@ -250,16 +247,16 @@
 - STBR
 
 Revision 1.21  2003/07/28 11:43:59  hunter
<<Diff was trimmed, longer than 597 lines>>

---- CVS-web:
    http://cvs.pld-linux.org/SPECS/mailman.spec?r1=1.116&r2=1.117&f=u
    http://cvs.pld-linux.org/SPECS/maradns.spec?r1=1.43&r2=1.44&f=u
    http://cvs.pld-linux.org/SPECS/mars_nwe.spec?r1=1.39&r2=1.40&f=u
    http://cvs.pld-linux.org/SPECS/mc.spec?r1=1.230&r2=1.231&f=u
    http://cvs.pld-linux.org/SPECS/metalog.spec?r1=1.20&r2=1.21&f=u
    http://cvs.pld-linux.org/SPECS/mksd.spec?r1=1.44&r2=1.45&f=u
    http://cvs.pld-linux.org/SPECS/mldonkey.spec?r1=1.139&r2=1.140&f=u
    http://cvs.pld-linux.org/SPECS/mmtcpfwd.spec?r1=1.24&r2=1.25&f=u
    http://cvs.pld-linux.org/SPECS/mon.spec?r1=1.29&r2=1.30&f=u
    http://cvs.pld-linux.org/SPECS/monkey.spec?r1=1.18&r2=1.19&f=u
    http://cvs.pld-linux.org/SPECS/mrt.spec?r1=1.47&r2=1.48&f=u
    http://cvs.pld-linux.org/SPECS/mrtg.spec?r1=1.130&r2=1.131&f=u



More information about the pld-cvs-commit mailing list