]> git.pld-linux.org Git - packages/LPRng.git/blob - LPRng.spec
- release 3
[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.18
5 Release:        3
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:        LPRng.init
11 Patch0:         LPRng-autoconf.patch
12 BuildRequires:  ncurses-devel >= 5.0
13 Requires:       /sbin/chkconfig
14 Requires:       rc-scripts >= 0.2.0
15 URL:            http://www.astart.com/lprng/LPRng.html
16 Provides:       lpr
17 Obsoletes:      lpr
18 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
19
20 %define         _libdir         %{_sbindir}
21 %define         _sysconfdir     /etc
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
59 %build
60 gettextize --copy --force
61 aclocal
62 autoconf
63 LDFLAGS="-s"; export LDFLAGS
64 %configure \
65         --enable-nls \
66         --disable-setuid
67
68 %{__make}
69
70 %install
71 rm -rf $RPM_BUILD_ROOT
72 install -d  $RPM_BUILD_ROOT/etc/rc.d/init.d
73
74 %{__make} install \
75         INSTALL_PREFIX=$RPM_BUILD_ROOT \
76         LPD_CONF_PATH=$RPM_BUILD_ROOT%{_sysconfdir}/lpd.conf \
77         LPD_PERMS_PATH=$RPM_BUILD_ROOT%{_sysconfdir}/lpd.perms
78
79 install %{SOURCE1} $RPM_BUILD_ROOT/etc/rc.d/init.d/lpd
80
81 rm -fr TESTSUPPORT/{Makefile*,LPD}
82
83 gzip -9nf $RPM_BUILD_ROOT%{_mandir}/man*/* \
84         CHANGES CONTRIBUTORS README* TESTSUPPORT/*
85
86 #%find_lang %{name}
87
88 %post
89 /sbin/chkconfig --add lpd
90 if [ -f /var/lock/subsys/lpd ]; then
91         /etc/rc.d/init.d/lpd restart 1>&2
92 else
93         echo "Run \"/etc/rc.d/init.d/lpd start\" to start LPRng lpd daemon."
94 fi
95
96 %preun
97 if [ "$1" = "0" ]; then
98         if [ -f /var/lock/subsys/lpd ]; then
99                 /etc/rc.d/init.d/lpd stop 1>&2
100         fi
101         /sbin/chkconfig --del lpd
102 fi
103
104 %clean
105 rm -rf $RPM_BUILD_ROOT
106
107 %files
108 %defattr(644,root,root,755)
109 %config(noreplace) %{_sysconfdir}/lpd.conf
110 %config(noreplace) %{_sysconfdir}/lpd.perms
111 %doc {CHANGES,CONTRIBUTORS,README*}.gz TESTSUPPORT HOWTO/LPRng-HOWTO.html
112 %attr(754,root,root) /etc/rc.d/init.d/lpd
113 %attr(755,root,root) %{_bindir}/*
114 %attr(755,root,root) %{_libdir}/*
115 %dir %{_libexecdir}/filters
116 %attr(755,root,root) %{_libexecdir}/filters/*
117 %{_mandir}/man[158]/*
This page took 0.072539 seconds and 4 git commands to generate.