]> git.pld-linux.org Git - packages/LPRng.git/blobdiff - LPRng.spec
- reverting last change: removing new macros from %p{re,ost}{,un}
[packages/LPRng.git] / LPRng.spec
index 8799a269f7ed4f6f1676e155f454f590591548eb..ecc818674a6e5b4ed871506299c7d54078668cf2 100644 (file)
 Summary:       A next-generation printing system for UNIX
 Summary(pl):   System drukowania nowej generacji
 Name:          LPRng
-Version:       3.6.2
-Release:       1
-Copyright:     GPL
-Group:         Utilities/System
-Group(pl):     Narzêdzia/System
+Version:       3.7.4
+Release:       26
+License:       GPL
+Group:         Applications/System
+Group(de):     Applikationen/System
+Group(pl):     Aplikacje/System
 Source0:       ftp://ftp.astart.com/pub/LPRng/LPRng/%{name}-%{version}.tgz
-Source1:       lpd.init
-Patch0:                LPRng-install.patch
-Patch1:                LPRng-autoconf.patch
-Requires:      /sbin/chkconfig
+Source1:       %{name}.init
+Source2:       %{name}.conf
+Patch0:                %{name}-jobfilescan.patch
+Patch1:                %{name}-ac_fixes.patch
+Patch2:                %{name}-inet_ntop.patch
+Patch3:                %{name}-direct.patch
+Patch4:                %{name}-manpage.patch
+Patch5:                %{name}-shutdown.patch
+Patch6:                %{name}-lockfile.patch
+Patch7:                %{name}-setgroups.patch
+BuildRequires: autoconf
+BuildRequires: gettext-devel
+BuildRequires: ncurses-devel >= 5.0
+Prereq:                /sbin/chkconfig
+Prereq:                rc-scripts >= 0.2.0
 URL:           http://www.astart.com/lprng/LPRng.html
 Provides:      lpr
 Obsoletes:     lpr
-BuildRoot:     /tmp/%{name}-%{version}-root
+BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
-%define                _libdir %{_sbindir}
 
 %description
-LPRng is the "next generation" printing system for UNIX, featuring
-enhanced reliability and security.
+The LPRng software is an enhanced, extended, and portable
+implementation of the Berkeley LPR print spooler functionality. While
+providing the same interface and meeting RFC1179 requirements, the
+implementation is completely new and provides support for the
+following features: lightweight (no databases needed) lpr, lpc, and
+lprm programs; dynamic redirection of print queues; automatic job
+holding; highly verbose diagnostics; multiple printers serving a
+single queue; client programs do not need to run SUID root; greatly
+enhanced security checks; and a greatly improved permission and
+authorization mechanism.
+
+The source software compiles and runs on a wide variety of UNIX
+systems, and is compatible with other print spoolers and network
+printers that use the LPR interface and meet RFC1179 requirements.
+LPRng provides emulation packages for the SVR4 lp and lpstat programs,
+eliminating the need for another print spooler package. These
+emulation packages can be modified according to local requirements, in
+order to support vintage printing systems.
+
+For users that require secure and/or authenticated printing support,
+LPRng supports Kerberos V, MIT Kerberos IV Print Support, and PGP
+authentication. LPRng is being adopted by MIT for use as their Campus
+Wide printing support system. Additional authentication support is
+extremely simple to add. LPRng is Open Source Software, and the
+current public distribution is available from the listed FTP and Web
+Sites.
 
 %description -l pl
-LPRng jest systemem drukowania nowej generacji zwiêkszaj±cym niezawodno¶æ 
-i bezpieczeñstwo.
+LPRng jest systemem drukowania nowej generacji zwiêkszaj±cym
+niezawodno¶æ i bezpieczeñstwo.
 
 %prep
 %setup  -q
-%patch0 -p0
+%patch0 -p1
 %patch1 -p1
+%patch2 -p1
+%patch3 -p1
+%patch4 -p1
+%patch5 -p1
+%patch6 -p1
+%patch7 -p1
 
 %build
+rm -f missing
 gettextize --copy --force
 aclocal
 autoconf
-LDFLAGS="-s"; export LDFLAGS
 %configure \
-       --enable-nls \
-       --with-included-gettext
+       --disable-setuid \
+       --with-userid=lp \
+       --with-groupid=lp \
+       --with-filterdir=%{_libdir}/lpfilters \
+       --with-lockfile=%{_var}/spool/lpd/lpd
 
-make
+%{__make}
 
 %install
 rm -rf $RPM_BUILD_ROOT
-install -d  $RPM_BUILD_ROOT/etc/rc.d/init.d
+install -d  $RPM_BUILD_ROOT{/etc/rc.d/init.d,%{_var}/spool/lpd}
 
-make install \
-       DESTDIR=$RPM_BUILD_ROOT \
-       LPD_CONF_PATH=$RPM_BUILD_ROOT/etc/lpd.conf \
-       LPD_PERMS_PATH=$RPM_BUILD_ROOT/etc/lpd.perms \
-       SUID_ROOT_PERMS="755"
+%{__make} install \
+       DESTDIR=$RPM_BUILD_ROOT
 
 install %{SOURCE1} $RPM_BUILD_ROOT/etc/rc.d/init.d/lpd
+# yes, overwrite distribution lpd.conf
+install %{SOURCE2} $RPM_BUILD_ROOT%{_sysconfdir}/lpd.conf
+echo "default_printer = lp" >>$RPM_BUILD_ROOT%{_sysconfdir}/lpd.conf
+install printcap.in $RPM_BUILD_ROOT%{_sysconfdir}/printcap
+install lpd.perms $RPM_BUILD_ROOT%{_sysconfdir}/
+# default spool
+install -d $RPM_BUILD_ROOT%{_var}/spool/lpd/lp
 
 rm -fr TESTSUPPORT/{Makefile*,LPD}
+mv -f lpd.conf TESTSUPPORT/lpd.conf.distrib
 
-gzip -9nf $RPM_BUILD_ROOT%{_mandir}/man*/* \
-       ANNOUNCE CHANGES CONTRIBUTORS \
-       README* TESTSUPPORT/* HOWTO/LPRng-HOWTO.txt
+gzip -9nf CHANGES CONTRIBUTORS README* TESTSUPPORT/*
 
 %find_lang %{name}
 
 %post
 /sbin/chkconfig --add lpd
-if test -r /var/run/lpd.pid; then
+if [ -f /var/lock/subsys/lpd ]; then
        /etc/rc.d/init.d/lpd restart 1>&2
 else
-       echo "Run \"/etc/rc.d/init.d/lpd start\" to start mcserv daemon."
+       echo "Run \"/etc/rc.d/init.d/lpd start\" to start LPRng lpd daemon."
 fi
 
 %preun
 if [ "$1" = "0" ]; then
+       if [ -f /var/lock/subsys/lpd ]; then
+               /etc/rc.d/init.d/lpd stop 1>&2
+       fi
        /sbin/chkconfig --del lpd
-       /etc/rc.d/init.d/lpd stop 1>&2
 fi
 
 %clean
@@ -81,11 +130,15 @@ rm -rf $RPM_BUILD_ROOT
 
 %files -f %{name}.lang
 %defattr(644,root,root,755)
-%config(noreplace) /etc/lpd.conf
-%config(noreplace) /etc/lpd.perms
-%doc {ANNOUNCE,CHANGES,CONTRIBUTORS}.gz
-%doc {HOWTO/LPRng-HOWTO.txt,README*}.gz TESTSUPPORT
+%doc *.gz TESTSUPPORT HOWTO/LPRng-HOWTO.html
+%config(noreplace) %verify(not size mtime md5) %{_sysconfdir}/lpd.conf
+%config(noreplace) %verify(not size mtime md5) %{_sysconfdir}/lpd.perms
+%config(noreplace) %verify(not size mtime md5) %{_sysconfdir}/printcap
 %attr(754,root,root) /etc/rc.d/init.d/lpd
 %attr(755,root,root) %{_bindir}/*
 %attr(755,root,root) %{_sbindir}/*
+%dir %{_libdir}/lpfilters
+%attr(755,root,root) %{_libdir}/lpfilters/*
+%dir %attr(750,root,lp) %{_var}/spool/lpd
+%dir %attr(770,root,lp) %{_var}/spool/lpd/lp
 %{_mandir}/man[158]/*
This page took 0.074786 seconds and 4 git commands to generate.