rlescak / rpms / cups

Forked from rpms/cups 2 years ago
Clone
cvsdist afac77e
%define initdir /etc/rc.d/init.d
cvsdist fcbc17b
%define patchlevel %{nil}
cvsdist afac77e
%define use_alternatives 1
cvsdist afac77e
cvsdist afac77e
Summary: Common Unix Printing System
cvsdist afac77e
Name: cups
cvsdist fcbc17b
Version: 1.1.17
cvsdist fcbc17b
Release: 0.2
cvsdist afac77e
License: GPL
cvsdist afac77e
Group: System Environment/Daemons
cvsdist afac77e
%if "%{patchlevel}" != ""
cvsdist afac77e
Source: ftp://ftp.easysw.com/pub/cups/cups-%{version}-%{patchlevel}-source.tar.bz2
cvsdist afac77e
%else
cvsdist afac77e
Source: ftp://ftp.easysw.com/pub/cups/cups-%{version}-source.tar.bz2
cvsdist afac77e
%endif
cvsdist afac77e
Source1: cups.init
cvsdist afac77e
Source2: cupsprinter.png
cvsdist afac77e
Source3: cups.desktop
cvsdist afac77e
Source4: cupsconfig
cvsdist 99ecd13
Source5: cups-lpd
cvsdist 99ecd13
Source6: pstoraster
cvsdist 99ecd13
Source7: pstoraster.convs
cvsdist a87014a
Source8: postscript.ppd.gz
cvsdist 99ecd13
Patch: cups-1.1.15-initscript.patch
cvsdist afac77e
Patch1: cups-1.1.14-doclink.patch
cvsdist fcbc17b
Patch2: cups-1.1.17-uninit.patch
cvsdist fcbc17b
Patch3: cups-idefense-v2.patch
cvsdist fcbc17b
Patch4: cups-1.1.17-pdftops.patch
cvsdist afac77e
Epoch: 1
cvsdist afac77e
Url: http://www.cups.org/
cvsdist afac77e
BuildRoot: %{_tmppath}/%{name}-root
cvsdist afac77e
PreReq: /sbin/chkconfig /sbin/service
cvsdist 99ecd13
Requires: %{name}-libs = %{version} htmlview xinetd
cvsdist afac77e
%if %use_alternatives
cvsdist afac77e
Provides: /usr/bin/lpq /usr/bin/lpr /usr/bin/lp /usr/bin/cancel /usr/bin/lprm /usr/bin/lpstat
cvsdist afac77e
Prereq: /usr/sbin/alternatives
cvsdist afac77e
%else
cvsdist afac77e
Obsoletes: lpd lpr LPRng printconf printconf-gui printconf-tui printtool
cvsdist afac77e
Provides: lpd lpr LPRng
cvsdist afac77e
%endif
cvsdist afac77e
cvsdist afac77e
%package devel
cvsdist afac77e
Summary: Common Unix Printing System - development environment
cvsdist afac77e
Group: Development/Libraries
cvsdist afac77e
Requires: %{name}-libs = %{version}
cvsdist afac77e
cvsdist afac77e
%package libs
cvsdist afac77e
Summary: Common Unix Printing System - libraries
cvsdist afac77e
Group: System Environment/Libraries
cvsdist afac77e
cvsdist afac77e
%description
cvsdist afac77e
The Common UNIX Printing System provides a portable printing layer for 
cvsdist afac77e
UNIX® operating systems. It has been developed by Easy Software Products 
cvsdist afac77e
to promote a standard printing solution for all UNIX vendors and users. 
cvsdist afac77e
CUPS provides the System V and Berkeley command-line interfaces. 
cvsdist afac77e
cvsdist afac77e
%description devel
cvsdist afac77e
The Common UNIX Printing System provides a portable printing layer for 
cvsdist afac77e
UNIX® operating systems. This is the development package for creating
cvsdist afac77e
additional printer drivers, and other CUPS services.
cvsdist afac77e
cvsdist afac77e
%description libs
cvsdist afac77e
The Common UNIX Printing System provides a portable printing layer for 
cvsdist afac77e
UNIX® operating systems. It has been developed by Easy Software Products 
cvsdist afac77e
to promote a standard printing solution for all UNIX vendors and users. 
cvsdist afac77e
CUPS provides the System V and Berkeley command-line interfaces. 
cvsdist afac77e
The cups-libs package provides libraries used by applications to use CUPS
cvsdist afac77e
natively, without needing the lp/lpr commands.
cvsdist afac77e
cvsdist afac77e
%prep
cvsdist afac77e
%setup -q
cvsdist afac77e
%patch -p1 -b .noinit
cvsdist afac77e
%patch1 -p1 -b .doclink
cvsdist fcbc17b
%patch2 -p1 -b .uninit
cvsdist fcbc17b
%patch3 -p0 -b .security
cvsdist fcbc17b
%patch4 -p1 -b .pdftops
cvsdist afac77e
perl -pi -e 's,^#(Printcap\s+/etc/printcap),$1,' conf/cupsd.conf.in
cvsdist afac77e
autoconf
cvsdist afac77e
cvsdist afac77e
%build
cvsdist afac77e
CFLAGS="$RPM_OPT_FLAGS" CXXFLAGS="$RPM_OPT_FLAGS" ./configure --sysconfdir=/etc \
cvsdist afac77e
            --with-docdir=%{_docdir}/cups-%{version} \
cvsdist afac77e
            --mandir=%{_mandir}
cvsdist 99ecd13
perl -pi -e "s,^DSO	=.*,DSO=gcc -fpic," Makedefs
cvsdist afac77e
cvsdist afac77e
# If we got this far, all prerequisite libraries must be here.
cvsdist 99ecd13
make OPTIM="$RPM_OPT_FLAGS -fpic"
cvsdist afac77e
cvsdist afac77e
%install
cvsdist afac77e
rm -rf $RPM_BUILD_ROOT
cvsdist afac77e
mkdir -p $RPM_BUILD_ROOT%{initdir}
cvsdist afac77e
cvsdist afac77e
make BUILDROOT=$RPM_BUILD_ROOT install 
cvsdist afac77e
cvsdist afac77e
install -m 755 $RPM_SOURCE_DIR/cups.init $RPM_BUILD_ROOT%{initdir}/cups
cvsdist afac77e
cvsdist afac77e
find $RPM_BUILD_ROOT/usr/share/cups/model -name "*.ppd" |xargs gzip -9f
cvsdist afac77e
cvsdist afac77e
%if %use_alternatives
cvsdist afac77e
cd $RPM_BUILD_ROOT%{_bindir}
cvsdist afac77e
for i in cancel lp lpq lpr lprm lpstat; do
cvsdist afac77e
	mv $i $i.cups
cvsdist afac77e
done
cvsdist afac77e
cd $RPM_BUILD_ROOT%{_sbindir}
cvsdist afac77e
mv lpc lpc.cups
cvsdist afac77e
cd $RPM_BUILD_ROOT%{_mandir}/man1
cvsdist afac77e
for i in cancel lp lpq lpr lprm lpstat; do
cvsdist afac77e
	mv $i.1 $i-cups.1
cvsdist afac77e
done
cvsdist afac77e
cd $RPM_BUILD_ROOT%{_mandir}/man8
cvsdist afac77e
mv lpc.8 lpc-cups.8
cvsdist afac77e
%endif
cvsdist afac77e
cvsdist 99ecd13
mkdir -p $RPM_BUILD_ROOT%{_datadir}/pixmaps $RPM_BUILD_ROOT%{_sysconfdir}/X11/sysconfig $RPM_BUILD_ROOT%{_sysconfdir}/X11/applnk/System $RPM_BUILD_ROOT%{_sysconfdir}/xinetd.d
cvsdist afac77e
install -c -m 644 %{SOURCE2} $RPM_BUILD_ROOT%{_datadir}/pixmaps
cvsdist afac77e
install -c -m 644 %{SOURCE3} $RPM_BUILD_ROOT%{_sysconfdir}/X11/sysconfig
cvsdist afac77e
install -c -m 644 %{SOURCE3} $RPM_BUILD_ROOT%{_sysconfdir}/X11/applnk/System
cvsdist afac77e
install -c -m 755 %{SOURCE4} $RPM_BUILD_ROOT%{_bindir}
cvsdist 99ecd13
install -c -m 755 %{SOURCE5} $RPM_BUILD_ROOT%{_sysconfdir}/xinetd.d
cvsdist 99ecd13
ln -s ../doc/%{name}-%{version} $RPM_BUILD_ROOT%{_datadir}/%{name}/doc
cvsdist afac77e
# Deal with users trying to access the admin tool at
cvsdist afac77e
# /usr/share/doc/cups-%{version}/index.html rather than the
cvsdist afac77e
# correct http://localhost:631/
cvsdist afac77e
for i in admin classes jobs printers; do
cvsdist afac77e
	mkdir -p $RPM_BUILD_ROOT%{_docdir}/%{name}-%{version}/$i
cvsdist afac77e
	cat >$RPM_BUILD_ROOT%{_docdir}/%{name}-%{version}/$i/index.html <
cvsdist afac77e
cvsdist afac77e
cvsdist afac77e
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
cvsdist afac77e
<head>
cvsdist afac77e
<meta http-equiv="refresh" content="2; URL=http://localhost:631/$i" />
cvsdist afac77e
<title>CUPS $i</title>
cvsdist afac77e
</head>
cvsdist afac77e
<body bgcolor="#cccc99" text="#000000" link="#0000ff" vlink="#ff00ff">
cvsdist afac77e

You are trying to access the CUPS admin frontend through reading the files.

cvsdist afac77e
The correct way to access the CUPS admin frontend is pointing your browser at
cvsdist afac77e
http://localhost:631/.

cvsdist afac77e

You should be automatically redirected to the correct URL in 2 seconds.

cvsdist afac77e
If your browser does not support redirection, please use
cvsdist afac77e
this link.

cvsdist afac77e
</body>
cvsdist afac77e
</html>
cvsdist afac77e
EOF
cvsdist afac77e
done
cvsdist afac77e
cvsdist fcbc17b
# Remove unshipped files.
cvsdist fcbc17b
rm -rf $RPM_BUILD_ROOT%{_mandir}/cat? $RPM_BUILD_ROOT%{_mandir}/*/cat? \
cvsdist fcbc17b
	$RPM_BUILD_ROOT%{_mandir}/fr
cvsdist fcbc17b
                                                                                
cvsdist 99ecd13
# Ship pstoraster (bug #69573).
cvsdist 99ecd13
install -c -m 755 %{SOURCE6} $RPM_BUILD_ROOT%{_libdir}/cups/filter
cvsdist 99ecd13
install -c -m 644 %{SOURCE7} $RPM_BUILD_ROOT%{_sysconfdir}/cups
cvsdist 66c8324
cvsdist a87014a
# Ship a generic postscript PPD file (#73061)
cvsdist a87014a
install -c -m 644 %{SOURCE8} $RPM_BUILD_ROOT%{_datadir}/cups/model
cvsdist a87014a
cvsdist afac77e
%post
cvsdist afac77e
/sbin/chkconfig --del cupsd 2>/dev/null || true # Make sure old versions aren't there anymore
cvsdist afac77e
/sbin/chkconfig --add cups || true
cvsdist afac77e
%if %use_alternatives
cvsdist afac77e
/usr/sbin/alternatives --install %{_bindir}/lpr print %{_bindir}/lpr.cups 20 \
cvsdist afac77e
	 --slave %{_bindir}/lp print-lp %{_bindir}/lp.cups \
cvsdist afac77e
	 --slave %{_bindir}/lpq print-lpq %{_bindir}/lpq.cups \
cvsdist afac77e
	 --slave %{_bindir}/lprm print-lprm %{_bindir}/lprm.cups \
cvsdist afac77e
	 --slave %{_bindir}/lpstat print-lpstat %{_bindir}/lpstat.cups \
cvsdist afac77e
	 --slave %{_bindir}/cancel print-cancel %{_bindir}/cancel.cups \
cvsdist afac77e
	 --slave %{_sbindir}/lpc print-lpc %{_sbindir}/lpc.cups \
cvsdist afac77e
	 --slave %{_mandir}/man1/cancel.1.gz print-cancelman %{_mandir}/man1/cancel-cups.1.gz \
cvsdist afac77e
	 --slave %{_mandir}/man1/lp.1.gz print-lpman %{_mandir}/man1/lp-cups.1.gz \
cvsdist afac77e
	 --slave %{_mandir}/man8/lpc.8.gz print-lpcman %{_mandir}/man8/lpc-cups.8.gz \
cvsdist afac77e
	 --slave %{_mandir}/man1/lpq.1.gz print-lpqman %{_mandir}/man1/lpq-cups.1.gz \
cvsdist afac77e
	 --slave %{_mandir}/man1/lpr.1.gz print-lprman %{_mandir}/man1/lpr-cups.1.gz \
cvsdist afac77e
	 --slave %{_mandir}/man1/lprm.1.gz print-lprmman %{_mandir}/man1/lprm-cups.1.gz \
cvsdist afac77e
	 --slave %{_mandir}/man1/lpstat.1.gz print-lpstatman %{_mandir}/man1/lpstat-cups.1.gz \
cvsdist afac77e
	 --initscript cups
cvsdist afac77e
%endif
cvsdist afac77e
exit 0
cvsdist afac77e
cvsdist afac77e
%post libs -p /sbin/ldconfig
cvsdist afac77e
cvsdist afac77e
%postun libs -p /sbin/ldconfig
cvsdist afac77e
cvsdist afac77e
%preun
cvsdist afac77e
if [ "$1" = "0" ]; then
cvsdist afac77e
	/sbin/service cups stop > /dev/null 2>&1
cvsdist afac77e
	/sbin/chkconfig --del cups
cvsdist afac77e
%if %use_alternatives
cvsdist afac77e
        /usr/sbin/alternatives --remove print %{_bindir}/lpr.cups
cvsdist afac77e
%endif
cvsdist afac77e
fi
cvsdist afac77e
exit 0
cvsdist afac77e
cvsdist afac77e
%postun
cvsdist afac77e
if [ "$1" -ge "1" ]; then
cvsdist afac77e
	/sbin/service cups condrestart > /dev/null 2>&1
cvsdist afac77e
fi
cvsdist 66c8324
exit 0
cvsdist afac77e
cvsdist 66c8324
%triggerin -- samba-client
cvsdist afac77e
ln -sf ../../../bin/smbspool %{_libdir}/cups/backend/smb || :
cvsdist afac77e
exit 0
cvsdist afac77e
cvsdist 66c8324
%triggerun -- samba-client
cvsdist afac77e
[ $2 = 0 ] || exit 0
cvsdist afac77e
rm -f %{_libdir}/cups/backend/smb
cvsdist afac77e
cvsdist afac77e
%clean
cvsdist afac77e
rm -rf $RPM_BUILD_ROOT
cvsdist afac77e
cvsdist afac77e
%files
cvsdist afac77e
%defattr(-,root,root)
cvsdist afac77e
%dir /etc/cups
cvsdist afac77e
/etc/cups/certs
cvsdist afac77e
%config /etc/cups/*.conf
cvsdist afac77e
/etc/cups/interfaces
cvsdist afac77e
/etc/cups/mime.types
cvsdist afac77e
/etc/cups/mime.convs
cvsdist afac77e
/etc/cups/ppd
cvsdist 99ecd13
/etc/cups/pstoraster.convs
cvsdist afac77e
/etc/pam.d/cups
cvsdist afac77e
%doc %{_docdir}/cups-%{version}
cvsdist afac77e
%config %{initdir}/cups
cvsdist afac77e
%{_bindir}/cupsconfig
cvsdist afac77e
%{_bindir}/cancel*
cvsdist afac77e
%{_bindir}/enable*
cvsdist afac77e
%{_bindir}/disable*
cvsdist afac77e
%{_bindir}/lp*
cvsdist afac77e
%{_libdir}/cups
cvsdist afac77e
%{_mandir}/man?/*
cvsdist afac77e
%{_sbindir}/*
cvsdist afac77e
%{_datadir}/cups
cvsdist afac77e
%{_datadir}/locale/*/*
cvsdist afac77e
%dir %attr(1700,lp,root) /var/spool/cups/tmp
cvsdist afac77e
%dir %attr(0700,lp,root) /var/spool/cups
cvsdist afac77e
%dir %attr(0755,lp,root) /var/log/cups
cvsdist afac77e
%{_sysconfdir}/X11/sysconfig/cups.desktop
cvsdist afac77e
%{_sysconfdir}/X11/applnk/System/cups.desktop
cvsdist 99ecd13
%config(noreplace) %{_sysconfdir}/xinetd.d/cups-lpd
cvsdist afac77e
%{_datadir}/pixmaps/cupsprinter.png
cvsdist afac77e
cvsdist afac77e
%files libs
cvsdist afac77e
%defattr(-,root,root)
cvsdist afac77e
%{_libdir}/*.so.*
cvsdist afac77e
cvsdist afac77e
%files devel
cvsdist afac77e
%defattr(-,root,root)
cvsdist afac77e
%{_bindir}/cups-config
cvsdist afac77e
%{_libdir}/*.so
cvsdist afac77e
%{_libdir}/*.a
cvsdist afac77e
%{_includedir}/cups
cvsdist afac77e
cvsdist afac77e
%changelog
cvsdist fcbc17b
* Wed Jan  8 2003 Tim Waugh <twaugh@redhat.com> 1.1.17-0.2
cvsdist fcbc17b
- Fix 'condrestart' behaviour in init script.
cvsdist fcbc17b
cvsdist fcbc17b
* Fri Dec 13 2002 Tim Waugh <twaugh@redhat.com> 1.1.17-0.1
cvsdist fcbc17b
- 1.1.17.
cvsdist fcbc17b
- Fix cupsd startup hang (bug #79346).
cvsdist fcbc17b
- Don't install files not shipped.
cvsdist fcbc17b
- Security fixes.
cvsdist fcbc17b
cvsdist a87014a
* Fri Aug 30 2002 Bernhard Rosenkraenzer <bero@redhat.de> 1.1.15-10
cvsdist a87014a
- Add generic postscript PPD file (#73061)
cvsdist a87014a
cvsdist 58029cb
* Mon Aug 19 2002 Tim Waugh <twaugh@redhat.com> 1.1.15-9
cvsdist 58029cb
- Fix prefix in pstoraster (bug #69573).
cvsdist 58029cb
cvsdist 99ecd13
* Mon Aug 19 2002 Tim Waugh <twaugh@redhat.com> 1.1.15-8
cvsdist 99ecd13
- Disable cups-lpd by default (bug #71712).
cvsdist 99ecd13
- No need for fread patch now that glibc is fixed.
cvsdist 99ecd13
cvsdist 99ecd13
* Thu Aug 15 2002 Tim Waugh <twaugh@redhat.com> 1.1.15-7
cvsdist 99ecd13
- Really add cups-lpd xinetd file (bug #63919).
cvsdist 99ecd13
- Ship pstoraster (bug #69573).
cvsdist 99ecd13
- Prevent fread from trying to read from beyond EOF (fixes a segfault
cvsdist 99ecd13
  with new glibc).
cvsdist 99ecd13
cvsdist 99ecd13
* Sat Aug 10 2002 Elliot Lee <sopwith@redhat.com> 1.1.15-6
cvsdist 99ecd13
- rebuilt with gcc-3.2 (we hope)
cvsdist 99ecd13
cvsdist 99ecd13
* Mon Aug  5 2002 Bernhard Rosenkraenzer <bero@redhat.com> 1.1.15-5
cvsdist 99ecd13
- Add cups-lpd xinetd file (#63919)
cvsdist 745e420
cvsdist 99ecd13
* Tue Jul 23 2002 Florian La Roche <Florian.LaRoche@redhat.de> 1.1.15-4
cvsdist 99ecd13
- add a "exit 0" to postun script
cvsdist 745e420
cvsdist 99ecd13
* Tue Jul  2 2002 Bernhard Rosenkraenzer <bero@redhat.com> 1.1.15-3
cvsdist 99ecd13
- Add a symlink /usr/share/cups/doc -> /usr/share/doc/cups-devel-1.1.15
cvsdist 99ecd13
  because some applications expect to find the cups docs in
cvsdist 99ecd13
  /usr/share/cups/doc
cvsdist 66c8324
cvsdist 99ecd13
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
cvsdist 99ecd13
- automated rebuild
cvsdist 99ecd13
cvsdist 99ecd13
* Fri Jun 21 2002 Bernhard Rosenkraenzer <bero@redhat.com> 1.1.15-1
cvsdist 99ecd13
- 1.1.15-1
cvsdist 66c8324
- Fix up smb printing trigger (samba-client, not samba-clients)
cvsdist 99ecd13
- Start cupsd earlier, apparently it needs to be running before samba
cvsdist 99ecd13
  starts up for smb printing to work.
cvsdist 99ecd13
cvsdist 99ecd13
* Thu May 23 2002 Tim Powers <timp@redhat.com>
cvsdist 99ecd13
- automated rebuild
cvsdist 99ecd13
cvsdist 99ecd13
* Tue May  7 2002 Bernhard Rosenkraenzer <bero@redhat.com> 1.1.14-17
cvsdist 99ecd13
- Rebuild in current environment
cvsdist 99ecd13
- [-16 never existed because of build system breakage]
cvsdist 66c8324
cvsdist 9f149e2
* Wed Apr 17 2002 Bernhard Rosenkraenzer <bero@redhat.com> 1.1.14-15
cvsdist 9f149e2
- Fix bug #63387
cvsdist 9f149e2
cvsdist afac77e
* Mon Apr 15 2002 Bernhard Rosenkraenzer <bero@redhat.com> 1.1.14-14
cvsdist afac77e
- Fix dangling symlink created by samba-clients trigger
cvsdist afac77e
cvsdist afac77e
* Wed Apr 10 2002 Bernhard Rosenkraenzer <bero@redhat.com> 1.1.14-13
cvsdist afac77e
- Add desktop file and icon for CUPS configuration
cvsdist afac77e
cvsdist afac77e
* Wed Apr  3 2002 Bernhard Rosenkraenzer <bero@redhat.com> 1.1.14-12
cvsdist afac77e
- Support SMB printing (#62407)
cvsdist afac77e
- Add HTML redirections to doc files to work around users mistaking
cvsdist afac77e
  /usr/share/doc/cups-1.1.14 for the web frontend (#62405)
cvsdist afac77e
cvsdist afac77e
* Tue Apr  2 2002 Bill Nottingham <notting@redhat.com> 1.1.14-11
cvsdist afac77e
- fix subsys in initscript (#59206)
cvsdist afac77e
- don't strip binaries
cvsdist afac77e
cvsdist afac77e
* Mon Mar 11 2002 Bernhard Rosenkraenzer <bero@redhat.com> 1.1.14-10
cvsdist afac77e
- Make initscript use killproc instead of killall
cvsdist afac77e
cvsdist afac77e
* Fri Mar  8 2002 Bill Nottingham <notting@redhat.com> 1.1.14-9
cvsdist afac77e
- use alternatives --initscript support
cvsdist afac77e
cvsdist afac77e
* Mon Mar  4 2002 Bill Nottingham <notting@redhat.com> 1.1.14-8
cvsdist afac77e
- use the right path for the lpc man page, duh
cvsdist afac77e
cvsdist afac77e
* Thu Feb 28 2002 Bill Nottingham <notting@redhat.com> 1.1.14-7
cvsdist afac77e
- lpc man page is alternative too
cvsdist afac77e
- run ldconfig in -libs %post/%postun, not main
cvsdist afac77e
- remove alternatives in %preun
cvsdist afac77e
cvsdist afac77e
* Wed Feb 27 2002 Bill Nottingham <notting@redhat.com> 1.1.14-6
cvsdist afac77e
- don't source /etc/sysconfig/network in cups.init, we don't use any
cvsdist afac77e
  values from it
cvsdist afac77e
cvsdist afac77e
* Tue Feb 26 2002 Bernhard Rosenkraenzer <bero@redhat.com> 1.1.14-4
cvsdist afac77e
- Fix bugs #60220 and #60352
cvsdist afac77e
cvsdist afac77e
* Thu Feb 21 2002 Tim Powers <timp@redhat.com>
cvsdist afac77e
- rebuild against correct version of openssl (0.9.6b)
cvsdist afac77e
cvsdist afac77e
* Wed Feb 20 2002 Bernhard Rosenkraenzer <bero@redhat.com> 1.1.14-2
cvsdist afac77e
- Add all man pages to alternatives (#59943)
cvsdist afac77e
- Update to real 1.1.14
cvsdist afac77e
cvsdist afac77e
* Tue Feb 12 2002 Bernhard Rosenkraenzer <bero@redhat.com> 1.1.14-1
cvsdist afac77e
- Update to almost-1.1.14
cvsdist afac77e
cvsdist afac77e
* Mon Feb 11 2002 Bernhard Rosenkraenzer <bero@redhat.com> 1.1.13-5
cvsdist afac77e
- Move cups-config to cups-devel subpackage
cvsdist afac77e
- Make alternatives usage a %%define to simplify builds for earlier
cvsdist afac77e
  releases
cvsdist afac77e
- Explicitly provide things we're supplying through alternatives
cvsdist afac77e
  to shut up kdeutils dependencies
cvsdist afac77e
cvsdist afac77e
* Tue Feb  5 2002 Tim Powers <timp@redhat.com>
cvsdist afac77e
- shut the alternatives stuff up for good
cvsdist afac77e
cvsdist afac77e
* Fri Feb  1 2002 Bernhard Rosenkraenzer <bero@redhat.com> 1.1.13-3
cvsdist afac77e
- Fix alternatives stuff
cvsdist afac77e
- Don't display error messages in %%post
cvsdist afac77e
cvsdist afac77e
* Wed Jan 30 2002 Bernhard Rosenkraenzer <bero@redhat.com> 1.1.13-2
cvsdist afac77e
- alternatives stuff
cvsdist afac77e
cvsdist afac77e
* Tue Jan 29 2002 Bernhard Rosenkraenzer <bero@redhat.com> 1.1.13-1
cvsdist afac77e
- 1.1.13
cvsdist afac77e
- Add patch for koi8-{r,u} and iso8859-8 encodings (#59018)
cvsdist afac77e
- Rename init scripts so we can safely "killall cupsd" from there
cvsdist afac77e
cvsdist afac77e
* Sat Jan 26 2002 Bernhard Rosenkraenzer <bero@redhat.com> 1.1.12-1
cvsdist afac77e
- Initial (conflicting, since alternatives isn't there yet) packaging for
cvsdist afac77e
  Red Hat Linux
cvsdist afac77e
cvsdist afac77e
* Sat Jan 19 2002 Bernhard Rosenkraenzer <bero@redhat.com>
cvsdist afac77e
- 1.1.12
cvsdist afac77e
cvsdist afac77e
* Mon Nov  5 2001 Bernhard Rosenkraenzer <bero@redhat.com> 1.1.10-3
cvsdist afac77e
- Compress PPD files
cvsdist afac77e
- Fix build with gcc 3.1
cvsdist afac77e
- Fix init script
cvsdist afac77e
cvsdist afac77e
* Tue Sep  4 2001 Bernhard Rosenkraenzer <bero@redhat.com> 1.1.10-2
cvsdist afac77e
- Fix URL
cvsdist afac77e
- Generate printcap
cvsdist afac77e
- s/Copyright/License/g
cvsdist afac77e
cvsdist afac77e
* Tue Sep  4 2001 Than Ngo <than@redhat.com> 1.1.10-1
cvsdist afac77e
- update to 1.1.10-1 for ExtraBinge 7.2
cvsdist afac77e
cvsdist afac77e
* Tue May 29 2001 Michael Stefaniuc <mstefani@redhat.com>
cvsdist afac77e
- update to 1.1.8
cvsdist afac77e
- changed cupsd.conf to generate /etc/printcap
cvsdist afac77e
cvsdist afac77e
* Tue May 15 2001 Than Ngo <than@redhat.com>
cvsdist afac77e
- update to 1.1.7, bugfixes
cvsdist afac77e
cvsdist afac77e
* Thu Dec 14 2000 Than Ngo <than@redhat.com>
cvsdist afac77e
- fixed package dependency with lpr and LPRng
cvsdist afac77e
cvsdist afac77e
* Wed Oct 25 2000 Than Ngo <than@redhat.com>
cvsdist afac77e
- remove man/cat
cvsdist afac77e
cvsdist afac77e
* Tue Oct 24 2000 Than Ngo <than@redhat.com>
cvsdist afac77e
- don't start cupsd service in level 0, fixed
cvsdist afac77e
cvsdist afac77e
* Thu Oct 19 2000 Than Ngo <than@redhat.com>
cvsdist afac77e
- update to 1.1.4
cvsdist afac77e
- fix CUPS_DOCROOT (Bug #18717)
cvsdist afac77e
cvsdist afac77e
* Fri Aug 11 2000 Than Ngo <than@redhat.de>
cvsdist afac77e
- update to 1.1.2 (Bugfix release)
cvsdist afac77e
cvsdist afac77e
* Fri Aug 4 2000 Than Ngo <than@redhat.de>
cvsdist afac77e
- fix, cupsd read config file under /etc/cups (Bug #15432)
cvsdist afac77e
- add missing cups filters
cvsdist afac77e
cvsdist afac77e
* Wed Aug 2 2000 Tim Powers <timp@redhat.com>
cvsdist afac77e
- rebuilt against libpng-1.0.8
cvsdist afac77e
cvsdist afac77e
* Tue Aug 01 2000 Than Ngo <than@redhat.de>
cvsdist afac77e
- fix permission, add missing ldconfig in %post and %postun (Bug #14963)
cvsdist afac77e
cvsdist afac77e
* Sat Jul 29 2000 Bernhard Rosenkraenzer <bero@redhat.com>
cvsdist afac77e
- 1.1.1 (this has some major bugfixes)
cvsdist afac77e
- Fix a typo in initscript (it's $?, not ?$)
cvsdist afac77e
- Fix /usr/etc vs. /etc trouble, don't insist on /usr/var (YUCK!)
cvsdist afac77e
- Create the spool dir
cvsdist afac77e
cvsdist afac77e
* Fri Jul 28 2000 Than Ngo <than@redhat.de>
cvsdist afac77e
- fix unclean code for building against gcc-2.96
cvsdist afac77e
- add missing restart function in startup script
cvsdist afac77e
cvsdist afac77e
* Fri Jul 28 2000 Tim Powers <timp@redhat.com>
cvsdist afac77e
- fixed initscript so that conrestart doesn't return 1 if the test fails
cvsdist afac77e
cvsdist afac77e
* Mon Jul 24 2000 Prospector <prospector@redhat.com>
cvsdist afac77e
- rebuilt
cvsdist afac77e
cvsdist afac77e
* Wed Jul 19 2000 Than Ngo <than@redhat.de>
cvsdist afac77e
- using service to fire them up
cvsdist afac77e
- fix Prereq section
cvsdist afac77e
cvsdist afac77e
* Mon Jul 17 2000 Tim Powers <timp@redhat.com>
cvsdist afac77e
- added defattr to the devel package
cvsdist afac77e
cvsdist afac77e
* Sun Jul 16 2000 Than Ngo <than@redhat.de>
cvsdist afac77e
- add cups config files
cvsdist afac77e
cvsdist afac77e
* Sat Jul 15 2000 Than Ngo <than@redhat.de>
cvsdist afac77e
- update to 1.1 release
cvsdist afac77e
- move back to /etc/rc.d/init.d
cvsdist afac77e
- fix cupsd.init to work with /etc/init.d and /etc/rc.d/init.d
cvsdist afac77e
- split cups
cvsdist afac77e
cvsdist afac77e
* Wed Jul 12 2000 Than Ngo <than@redhat.de>
cvsdist afac77e
- rebuilt
cvsdist afac77e
cvsdist afac77e
* Thu Jul 06 2000 Tim Powers <timp@redhat.com>
cvsdist afac77e
- fixed broken PreReq to now require /etc/init.d
cvsdist afac77e
cvsdist afac77e
* Tue Jun 27 2000 Tim Powers <timp@redhat.com>
cvsdist afac77e
- PreReq initscripts >= 5.20
cvsdist afac77e
cvsdist afac77e
* Mon Jun 26 2000 Tim Powers <timp@redhat.com>
cvsdist afac77e
- started changelog 
cvsdist afac77e
- fixed init.d script location
cvsdist afac77e
- changed script in init.d quite a bit and made more like the rest of our
cvsdist afac77e
  startup scripts