]> git.pld-linux.org Git - packages/LPRng.git/blob - LPRng.spec
- updated to 3.6.22.
[packages/LPRng.git] / LPRng.spec
1 Summary:        A next-generation printing system for UNIX
2 Summary(pl):    System drukowania nowej generacji
3 Name:           LPRng
4 Version:        3.6.23
5 Release:        1
6 License:        GPL
7 Group:          Utilities/System
8 Group(pl):      Narzêdzia/System
9 Source0:        ftp://ftp.astart.com/pub/LPRng/LPRng/%{name}-%{version}.tgz
10 Source1:        %{name}.init
11 Source2:        %{name}.conf
12 Patch0:         %{name}-autoconf.patch
13 Patch1:         %{name}-filter.patch
14 BuildRequires:  ncurses-devel >= 5.0
15 Requires:       /sbin/chkconfig
16 Requires:       rc-scripts >= 0.2.0
17 URL:            http://www.astart.com/lprng/LPRng.html
18 Provides:       lpr
19 Obsoletes:      lpr
20 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
21
22
23 %description
24 The LPRng software is an enhanced, extended, and portable
25 implementation of the Berkeley LPR print spooler functionality. While
26 providing the same interface and meeting RFC1179 requirements, the
27 implementation is completely new and provides support for the
28 following features: lightweight (no databases needed) lpr, lpc, and
29 lprm programs; dynamic redirection of print queues; automatic job
30 holding; highly verbose diagnostics; multiple printers serving a
31 single queue; client programs do not need to run SUID root; greatly
32 enhanced security checks; and a greatly improved permission and
33 authorization mechanism.
34
35 The source software compiles and runs on a wide variety of UNIX
36 systems, and is compatible with other print spoolers and network
37 printers that use the LPR interface and meet RFC1179 requirements.
38 LPRng provides emulation packages for the SVR4 lp and lpstat programs,
39 eliminating the need for another print spooler package. These
40 emulation packages can be modified according to local requirements, in
41 order to support vintage printing systems.
42
43 For users that require secure and/or authenticated printing support,
44 LPRng supports Kerberos V, MIT Kerberos IV Print Support, and PGP
45 authentication. LPRng is being adopted by MIT for use as their Campus
46 Wide printing support system. Additional authentication support is
47 extremely simple to add. LPRng is Open Source Software, and the
48 current public distribution is available from the listed FTP and Web
49 Sites.
50
51 %description -l pl
52 LPRng jest systemem drukowania nowej generacji zwiêkszaj±cym
53 niezawodno¶æ i bezpieczeñstwo.
54
55 %prep
56 %setup  -q
57 %patch0 -p1
58 %patch1 -p1
59
60 %build
61 gettextize --copy --force
62 aclocal
63 autoconf
64 LDFLAGS="-s"; export LDFLAGS
65 %configure \
66         --enable-nls \
67         --disable-setuid \
68         --with-userid=lp \
69         --with-groupid=lp \
70         --with-filterdir=%{_libdir}/lpfilters \
71         --with-lockfile=%{_var}/spool/lpd/lpd
72
73 %{__make}
74
75 %install
76 rm -rf $RPM_BUILD_ROOT
77 install -d  $RPM_BUILD_ROOT{/etc/rc.d/init.d,%{_var}/spool/lpd}
78
79 %{__make} install \
80         INSTALL_PREFIX=$RPM_BUILD_ROOT \
81         LPD_CONF_PATH=$RPM_BUILD_ROOT%{_sysconfdir}/lpd.conf \
82         LPD_PERMS_PATH=$RPM_BUILD_ROOT%{_sysconfdir}/lpd.perms
83
84 install %{SOURCE1} $RPM_BUILD_ROOT/etc/rc.d/init.d/lpd
85 # yes, overwrite distribution lpd.conf
86 install %{SOURCE2} $RPM_BUILD_ROOT%{_sysconfdir}/lpd.conf
87 install printcap $RPM_BUILD_ROOT%{_sysconfdir}/
88
89 rm -fr TESTSUPPORT/{Makefile*,LPD}
90 mv -f lpd.conf TESTSUPPORT/lpd.conf.distrib
91
92 gzip -9nf $RPM_BUILD_ROOT%{_mandir}/man*/* \
93         CHANGES CONTRIBUTORS README* TESTSUPPORT/*
94
95 #%find_lang %{name}
96
97 %post
98 /sbin/chkconfig --add lpd
99 if [ -f /var/lock/subsys/lpd ]; then
100         /etc/rc.d/init.d/lpd restart 1>&2
101 else
102         echo "Run \"/etc/rc.d/init.d/lpd start\" to start LPRng lpd daemon."
103 fi
104
105 %preun
106 if [ "$1" = "0" ]; then
107         if [ -f /var/lock/subsys/lpd ]; then
108                 /etc/rc.d/init.d/lpd stop 1>&2
109         fi
110         /sbin/chkconfig --del lpd
111 fi
112
113 %clean
114 rm -rf $RPM_BUILD_ROOT
115
116 %files
117 %defattr(644,root,root,755)
118 %config(noreplace) %verify(not size mtime md5) %{_sysconfdir}/lpd.conf
119 %config(noreplace) %verify(not size mtime md5) %{_sysconfdir}/lpd.perms
120 %config(noreplace) %verify(not size mtime md5) %{_sysconfdir}/printcap
121 %doc {CHANGES,CONTRIBUTORS,README*}.gz TESTSUPPORT HOWTO/LPRng-HOWTO.html
122 %attr(754,root,root) /etc/rc.d/init.d/lpd
123 %attr(755,root,root) %{_bindir}/*
124 %attr(755,root,root) %{_sbindir}/*
125 %dir %{_libdir}/lpfilters
126 %attr(755,root,root) %{_libdir}/lpfilters/*
127 %dir %attr(750,root,lp) %{_var}/spool/lpd
128 %{_mandir}/man[158]/*
This page took 0.102825 seconds and 4 git commands to generate.