]> git.pld-linux.org Git - packages/inn.git/blob - inn.spec
- small fixes
[packages/inn.git] / inn.spec
1 Summary:        INN, the InterNet News System (news server)
2 Summary(de):    das InterNet News System (News-Server)
3 Summary(fr):    INN, le système InterNet News (serveur de news)
4 Summary(pl):    INN, serwer nowinek 
5 Summary(tr):    INN, InterNet Haber Sistemi (haber sunucu)
6 Name:           inn
7 Version:        2.2.1
8 Release:        1
9 Copyright:      distributable
10 Group:          Networking/Daemons
11 Group(pl):      Sieciowe/Serwery
12 Source:         ftp://ftp.isc.org/isc/inn/%{name}-%{version}.tar.gz
13 Source1:        %{name}-default-active
14 Source2:        %{name}-default-distributions
15 Source3:        %{name}-default-newsgroups
16 Source4:        %{name}-etc-nnrp.access
17 Source5:        %{name}.crontab
18 Source6:        %{name}.initd
19 Source7:        ftp://ftp.exit109.com/users/jeremy/cleanfeed-latest.tar.gz
20 Patch0:         %{name}-config.patch
21 Patch1:         %{name}-makefile.patch
22 URL:            http://www.isc.org/inn.html
23 Requires:       cleanfeed
24 Requires:       perl
25 Requires:       rc-scripts
26 Requires:       /etc/cron.d
27 BuildRoot:      /tmp/%{name}-%{version}-root
28 Prereq:         /sbin/chkconfig
29
30 %description
31 INN is a news server, which can be set up to handle USENET news, as well
32 as private "newsfeeds".  There is a *LOT* of information about setting
33 up INN in /usr/share/doc -- read it.
34
35 %description -l pl
36 INN jest serwerem news, który mo¿na skonfigurowaæ do obs³ugi USENET-u,
37 jak równie¿ do obs³ugi ,,prywatnych'' grup w sieciach intranetowych.
38 Ca³e mnóstwo po¿ytecznych informacji o konfigurowaniu INN-a znajdziesz
39 w katalogu /usr/share/doc/inn-*.
40
41 %package devel
42 Summary:        INN-Library
43 Summary(de):    INN-Library
44 Summary(fr):    Bibliothèque INN
45 Summary(pl):    INN-biblioteka i pliki nag³ówkowe dla inn-a
46 Summary(tr):    INN kitaplýðý
47 Group:          Development/Libraries
48 Group(pl):      Programowanie/Biblioteki
49 Requires:       %{name} = %{version}
50
51 %description devel
52 This library is needed by several programs that interface to INN, such as
53 newsgate or tin.
54
55 %description -l de devel
56 Diese Library wird von mehreren Programmen benötigt, die mit INN
57 kommunizieren, etwa newsgate oder tin.
58
59 %description -l fr devel
60 Cette bibliothèque est nécessaire à plusieurs programmes qui s'interfacent
61 avec INN, comme newsgate ou tin.
62
63 %description -l pl devel
64 Biblioteka niezbêdna do dzia³ania kilku programów wspó³pracuj±cych z INN-em, takich jak newsgate czy tin. 
65
66 %description -l tr devel
67 INN ile arayüz gerektiren programlar için (newsgate, tin gibi) gereken bir
68 kitaplýktýr.
69
70
71 %package -n inews
72 Summary:        Inews program (used for posting by inn and trn)
73 Summary(de):    Inews-Programm (für die Zustellung mit inn und trn) 
74 Summary(fr):    Programme inews (utilisé par inn et trn pour poster)
75 Summary(pl):    Inews - program do wysy³ania artyku³ów (u¿ywany przez inn i trn)
76 Summary(tr):    Haber biçimlendirme programý
77 Group:          Networking/News
78 Group(pl):      Sieciowe/News
79
80 %description -n inews
81 The inews program is used by some news readers to post news.
82 It does some consistency checking and header reformatting,
83 and forwards the article on to the news server specified in
84 inn.conf.
85
86 %description -l de -n inews
87 Das Programm 'inews' wird von manchen Newsreadern zum Senden
88 von Nachrichten verwendet. Es führt eine Konsistenzprüfung und Header-Neuf
89 ormatierung aus und leitet die Nachricht an den in 'inn.conf' 
90 angegebenen News-Server weiter. 
91
92 %description -l fr -n inews
93 Le programme inews est utilisé par certains lecteurs de news pour
94 poster les articles. Il effectue des vérifications et un reformatage
95 des en-têtes et fait suivre l'article au serveur de news spécifié dans inn.conf.
96
97 %description -l pl -n inews
98 Inews jest u¿ywany przez niektóre czytniki news do wysy³ania
99 artyku³ów. Sprawdza budowê artyku³u, przepisuje nag³ówek i wysy³a
100 do serwera news wyszczególnionego w inn.conf.
101
102 %description -l tr -n inews
103 inews programý bazý haber okuyucular tarafýndan haber yollamak amacýyla
104 kullanýlýr.  Program bazý güvenlik denetimleri ve baþlýk biçimlendirmesi
105 yaparak ve inn.conf dosyasýnda belirtilen haber sunucuya makaleyi yollar.
106
107 %prep
108 %setup -q
109 %patch0 -p1
110 %patch1 -p1
111
112 %build
113 touch innfeed/*.[ly]
114
115 rm -f config.cache
116 autoconf
117 libtoolize --copy --force
118 CFLAGS="$RPM_OPT_FLAGS" LDFLAGS="-s" \
119 ./configure %{_target_platform} \
120         --prefix=/usr \
121         --sysconfdir=/etc/news \
122         --with-news-user=news \
123         --with-news-group=news \
124         --with-news-master=news \
125         --with-db-dir=/var/state/news \
126         --with-etc-dir=/etc/news \
127         --with-log-dir=/var/log/news \
128         --with-run-dir=/var/run/news \
129         --with-spool-dir=/var/spool/news \
130         --with-lib-dir=/usr/share/news \
131         --with-tmp-path=/var/spool/news/incoming/tmp \
132         --with-perl \
133         --with-sendmail=%{_libdir}/sendmail \
134         --enable-tagged-hash \
135         --enable-merge-to-groups \
136         --enable-pgp-verify \
137         --enable-shared
138
139 make all PATHFILTER=%{_datadir}/news/filter \
140         PATHCONTROL=%{_datadir}/news/control \
141         RNEWSPROGS=%{_bindir}
142
143 %install 
144 rm -fr $RPM_BUILD_ROOT
145 install -d $RPM_BUILD_ROOT/etc/{news,rc.d/init.d,cron.d}
146 install -d $RPM_BUILD_ROOT%{_bindir}/auth
147 install -d $RPM_BUILD_ROOT%{_libdir}/news
148 install -d $RPM_BUILD_ROOT%{_datadir}/news/{control,filter}
149 install -d $RPM_BUILD_ROOT%{_includedir}/inn
150 install -d $RPM_BUILD_ROOT%{_mandir}/man{1,3,5,8}
151 install -d $RPM_BUILD_ROOT/var/{run/news,state/news/backoff,log/news/OLD}
152 install -d $RPM_BUILD_ROOT/var/spool/news/{articles,overview,incoming/{tmp,bad},outgoing,archive,uniover,innfeed,cycbuffs}
153
154 make DESTDIR="$RPM_BUILD_ROOT" install PATHFILTER=%{_datadir}/news/filter \
155         PATHCONTROL=%{_datadir}/news/control \
156         RNEWSPROGS=%{_bindir}
157
158 install %{SOURCE1} $RPM_BUILD_ROOT/var/state/news/active
159 install %{SOURCE2} $RPM_BUILD_ROOT/var/state/news/distributions
160 install %{SOURCE3} $RPM_BUILD_ROOT/var/state/news/newsgroups
161 install %{SOURCE4} $RPM_BUILD_ROOT/etc/news/nnrp.access
162 install %{SOURCE5} $RPM_BUILD_ROOT/etc/cron.d/inn
163 install %{SOURCE6} $RPM_BUILD_ROOT/etc/rc.d/init.d/inn
164
165 rm -f $RPM_BUILD_ROOT/var/state/news/history
166
167 umask 002
168 touch $RPM_BUILD_ROOT/var/state/news/subscriptions
169 touch $RPM_BUILD_ROOT/var/state/news/history
170 touch $RPM_BUILD_ROOT/var/state/news/.news.daily
171 touch $RPM_BUILD_ROOT/var/state/news/active.times
172 touch $RPM_BUILD_ROOT/var/log/news/news.notice
173 touch $RPM_BUILD_ROOT/var/log/news/news.crit
174 touch $RPM_BUILD_ROOT/var/log/news/news.err
175
176 LD_LIBRARY_PATH=$RPM_BUILD_ROOT%{_datadir} $RPM_BUILD_ROOT%{_bindir}/makehistory\
177         -a $RPM_BUILD_ROOT/var/state/news/active \
178         -i -r -f $RPM_BUILD_ROOT/var/state/news/history || :
179
180 install include/clibrary.h      $RPM_BUILD_ROOT%{_includedir}/inn
181 install include/configdata.h    $RPM_BUILD_ROOT%{_includedir}/inn
182 install include/dbz.h           $RPM_BUILD_ROOT%{_includedir}/inn
183 install include/libinn.h        $RPM_BUILD_ROOT%{_includedir}/inn
184
185 mv $RPM_BUILD_ROOT%{_datadir}/news/*.a  $RPM_BUILD_ROOT%{_libdir}
186
187 #Fix perms in sample directory to avoid bogus dependencies
188 find samples -name "*.in" -exec chmod a-x {} \;
189
190 gzip -9nf $RPM_BUILD_ROOT%{_mandir}/man{1,3,5,8}/* \
191         CONTRIBUTORS HISTORY README README.perl_hook README.tcl_hook \
192         INSTALL ChangeLog COPYRIGHT
193
194 %clean
195 rm -rf $RPM_BUILD_ROOT
196
197 %post
198 if [ -f /var/state/news/history ]; then
199         cd /var/state/news
200         %{_libdir}/news/bin/makehistory -i -r
201         for i in dir hash index pag; do
202                 [ -f history.n.$i ] && mv history.n.$i history.$i
203         done
204         chown news.news history.*
205         chmod 644 history.*
206 else
207         cd /var/state/news
208         cp /dev/null history
209         %{_libdir}/news/bin/makehistory -i
210         for i in dir hash index pag; do
211                 [ -f history.n.$i ] && mv history.n.$i history.$i
212         done
213         chown news.news history history.*
214         chmod 644 history history.*
215 fi
216 [ -f /var/state/news/active.times ] || {
217     touch /var/state/news/active.times
218     chown news.news /var/state/news/active.times
219 }
220 chown -R news.news /var/log/news*
221 if [ -f /etc/syslog.conf ]; then
222   if ! grep -q INN /etc/syslog.conf; then
223     sed 's/mail.none;/mail.none;news.none;/' < /etc/syslog.conf > /etc/syslog.conf.inn
224     mv /etc/syslog.conf.inn /etc/syslog.conf
225
226     echo '' \
227        >> /etc/syslog.conf
228     echo '#' \
229        >> /etc/syslog.conf
230     echo '# INN' \
231        >> /etc/syslog.conf
232     echo '#' \
233        >> /etc/syslog.conf
234     echo 'news.=crit                                        /var/log/news/news.crit'   >> /etc/syslog.conf
235     echo 'news.=err                                         /var/log/news/news.err'    >> /etc/syslog.conf
236     echo 'news.notice                                       /var/log/news/news.notice' >> /etc/syslog.conf
237     fi
238   if [ -f /var/run/syslog.pid ]; then
239     kill -HUP `cat /var/run/syslog.pid` 2> /dev/null ||:
240   fi
241 else
242   # syslog.conf does not exist
243
244   echo "mail.none /var/log/messages" \
245      >  /etc/syslog.conf.inn
246   echo "" \
247      >> /etc/syslog.conf.inn
248   echo "# INN" \
249      >> /etc/syslog.conf.inn
250   echo "news.=crit                                      /var/log/news/news.crit"     >> /etc/syslog.conf.inn
251   echo "news.=err                                       /var/log/news/news.err"      >> /etc/syslog.conf.inn
252   echo "news.notice                                     /var/log/news/news.notice"   >> /etc/syslog.conf.inn
253 fi
254 if [ `cat /etc/news/inn.conf | grep '^server:' | wc -l` -lt 1 ]; then
255   echo "server: `hostname -f`" >> /etc/news/inn.conf
256 fi
257
258 /sbin/chkconfig --add inn
259 /sbin/ldconfig 
260
261 %preun
262 if [ "$1" = "0" ]; then
263         if [ -f /var/lock/subsys/news ]; then
264                 /etc/rc.d/init.d/inn stop
265         fi
266         /sbin/chkconfig --del inn
267 fi
268
269 %files
270 %defattr(644,root,root,755)
271 %doc {CONTRIBUTORS,HISTORY,README,README.perl_hook,README.tcl_hook}.gz
272 %doc {INSTALL,ChangeLog,COPYRIGHT}.gz
273
274 # DB
275 %attr(750,news,news) %dir /var/state/news
276 %attr(750,news,news) %dir /var/state/news/backoff
277 %attr(664,news,news) %config(noreplace) %verify(not size mtime md5) /var/state/news/active
278 %attr(644,news,news) %config(noreplace) %verify(not size mtime md5) /var/state/news/distributions
279 %attr(644,news,news) %config(noreplace) %verify(not size mtime md5) /var/state/news/newsgroups
280 %attr(644,news,root) %config(noreplace) %verify(not size mtime md5) /var/state/news/subscriptions
281 %attr(664,news,news) %config(noreplace) %verify(not size mtime md5) /var/state/news/active.times
282 %attr(664,news,news) %config(noreplace) %verify(not size mtime md5) /var/state/news/.news.daily
283
284 # LOGS
285 %attr(750,news,news) %dir /var/log/news
286 %attr(770,news,news) %dir /var/log/news/OLD
287 %attr(770,news,news) %dir /var/run/news
288 %attr(664,news,news) %config(noreplace) %verify(not size mtime md5) /var/log/news/news.notice
289 %attr(660,news,news) %config(noreplace) %verify(not size mtime md5) /var/log/news/news.crit
290 %attr(660,news,news) %config(noreplace) %verify(not size mtime md5) /var/log/news/news.err
291
292 # SPOOL
293 %attr(750,news,news) %dir /var/spool/news
294 %attr(770,news,news) %dir /var/spool/news/cycbuffs
295 %attr(770,news,news) %dir /var/spool/news/innfeed
296 %attr(770,news,news) %dir /var/spool/news/incoming
297 %attr(770,news,news) %dir /var/spool/news/incoming/bad
298 %attr(770,news,news) %dir /var/spool/news/incoming/tmp
299 %attr(770,news,news) %dir /var/spool/news/outgoing
300 %attr(770,news,news) %dir /var/spool/news/archive
301 %attr(770,news,news) %dir /var/spool/news/overview
302 %attr(770,news,news) %dir /var/spool/news/uniover
303
304 # CRON PARTS
305 %attr(750,root,root) %config %verify(not size mtime md5) /etc/cron.d/*
306
307 # RC-SCRIPT
308 %attr(754,root,root) %config /etc/rc.d/init.d/inn
309
310 # CONFIGS (INN is a one big config ;-)
311 %attr(755,news,news) %dir /etc/news
312 %attr(755,news,news) %dir %{_datadir}/news
313 %attr(755,news,news) %dir %{_datadir}/news/control
314 %attr(755,news,news) %dir %{_datadir}/news/filter
315 %attr(640,news,news) %config %verify(not size mtime md5) /etc/news/actsync.cfg
316 %attr(640,news,news) %config %verify(not size mtime md5) /etc/news/actsync.ign
317 %attr(640,news,news) %config %verify(not size mtime md5) /etc/news/control.ctl
318 %attr(640,news,news) %config %verify(not size mtime md5) /etc/news/cycbuff.conf
319 %attr(640,news,news) %config %verify(not size mtime md5) /etc/news/expire.ctl
320 %attr(640,news,news) %config %verify(not size mtime md5) /etc/news/incoming.conf
321 %attr(640,news,news) %config %verify(not size mtime md5) /etc/news/inn.conf
322 %attr(640,news,news) %config %verify(not size mtime md5) /etc/news/innfeed.conf
323 %attr(640,news,news) %config %verify(not size mtime md5) /etc/news/innreport.conf
324 %attr(640,news,news) %config %verify(not size mtime md5) /etc/news/innwatch.ctl
325 %attr(640,news,news) %config %verify(not size mtime md5) /etc/news/motd.news
326 %attr(640,news,news) %config %verify(not size mtime md5) /etc/news/news2mail.cf
327 %attr(640,news,news) %config %verify(not size mtime md5) /etc/news/newsfeeds
328 %attr(640,news,news) %config %verify(not size mtime md5) /etc/news/nnrp.access
329 %attr(640,news,news) %config %verify(not size mtime md5) /etc/news/nnrpd.track
330 %attr(640,news,news) %config %verify(not size mtime md5) /etc/news/nntpsend.ctl
331 %attr(640,news,news) %config %verify(not size mtime md5) /etc/news/overview.ctl
332 %attr(640,news,news) %config %verify(not size mtime md5) /etc/news/overview.fmt
333 %attr(640,news,news) %config %verify(not size mtime md5) /etc/news/passwd.nntp
334 %attr(640,news,news) %config %verify(not size mtime md5) /etc/news/storage.conf
335
336 %attr(644,news,news) %config %verify(not size mtime md5) /etc/news/moderators
337 %attr(644,news,news) %config %verify(not size mtime md5) /etc/news/distrib.pats
338
339 %attr(644,news,news) %config %verify(not size mtime md5) %{_datadir}/news/innreport_inn.pm
340 %attr(644,news,news) %config %verify(not size mtime md5) %{_datadir}/news/innshellvars
341 %attr(644,news,news) %config %verify(not size mtime md5) %{_datadir}/news/innshellvars.pl
342 %attr(644,news,news) %config %verify(not size mtime md5) %{_datadir}/news/innshellvars.tcl
343
344 %attr(644,news,news) %config %verify(not size mtime md5) %{_datadir}/news/filter/filter_innd.pl
345 %attr(644,news,news) %config %verify(not size mtime md5) %{_datadir}/news/filter/filter_nnrpd.pl
346 %attr(644,news,news) %config %verify(not size mtime md5) %{_datadir}/news/filter/filter.tcl
347 %attr(644,news,news) %config %verify(not size mtime md5) %{_datadir}/news/filter/nnrpd_auth.pl
348 %attr(644,news,news) %config %verify(not size mtime md5) %{_datadir}/news/filter/startup_innd.pl
349 %attr(644,news,news) %config %verify(not size mtime md5) %{_datadir}/news/filter/startup.tcl
350
351 %attr(755,news,news) %config %verify(not size mtime md5) %{_datadir}/news/control/checkgroups
352 %attr(755,news,news) %config %verify(not size mtime md5) %{_datadir}/news/control/checkgroups.pl
353 %attr(755,news,news) %config %verify(not size mtime md5) %{_datadir}/news/control/default
354 %attr(755,news,news) %config %verify(not size mtime md5) %{_datadir}/news/control/ihave
355 %attr(755,news,news) %config %verify(not size mtime md5) %{_datadir}/news/control/ihave.pl
356 %attr(755,news,news) %config %verify(not size mtime md5) %{_datadir}/news/control/newgroup
357 %attr(755,news,news) %config %verify(not size mtime md5) %{_datadir}/news/control/newgroup.pl
358 %attr(755,news,news) %config %verify(not size mtime md5) %{_datadir}/news/control/rmgroup
359 %attr(755,news,news) %config %verify(not size mtime md5) %{_datadir}/news/control/rmgroup.pl
360 %attr(755,news,news) %config %verify(not size mtime md5) %{_datadir}/news/control/sendme
361 %attr(755,news,news) %config %verify(not size mtime md5) %{_datadir}/news/control/sendme.pl
362 %attr(755,news,news) %config %verify(not size mtime md5) %{_datadir}/news/control/sendsys
363 %attr(755,news,news) %config %verify(not size mtime md5) %{_datadir}/news/control/sendsys.pl
364 %attr(755,news,news) %config %verify(not size mtime md5) %{_datadir}/news/control/senduuname
365 %attr(755,news,news) %config %verify(not size mtime md5) %{_datadir}/news/control/senduuname.pl
366 %attr(755,news,news) %config %verify(not size mtime md5) %{_datadir}/news/control/version
367 %attr(755,news,news) %config %verify(not size mtime md5) %{_datadir}/news/control/version.pl
368
369 # SUID
370 %attr(4750,root,news) %{_bindir}/inndstart
371 %attr(4750,root,news) %config %{_bindir}/startinnfeed
372 %attr(4750,root,uucp) %config %{_bindir}/rnews
373
374 # SGID
375 %attr(2755,root,news) %{_bindir}/inews
376
377 # BINARIES
378 %attr(755,root,root) %{_bindir}/actived
379 %attr(755,root,root) %{_bindir}/actmerge
380 %attr(755,root,root) %{_bindir}/actsync
381 %attr(755,root,root) %{_bindir}/actsyncd
382 %attr(755,root,root) %{_bindir}/archive
383 %attr(755,root,root) %{_bindir}/batcher
384 %attr(755,root,root) %{_bindir}/buffchan
385 %attr(755,root,root) %{_bindir}/c7unbatch
386 %attr(755,root,root) %{_bindir}/cnfsstat
387 %attr(755,root,root) %{_bindir}/controlbatch
388 %attr(755,root,root) %{_bindir}/controlchan
389 %attr(755,root,root) %{_bindir}/convdate
390 %attr(755,root,root) %{_bindir}/crosspost
391 %attr(755,root,root) %{_bindir}/ctlinnd
392 %attr(755,root,root) %{_bindir}/cvtbatch
393 %attr(755,root,root) %{_bindir}/decode
394 %attr(755,root,root) %{_bindir}/encode
395 %attr(755,root,root) %{_bindir}/expire
396 %attr(755,root,root) %{_bindir}/expireindex
397 %attr(755,root,root) %{_bindir}/expireover
398 %attr(755,root,root) %{_bindir}/expirerm
399 %attr(755,root,root) %{_bindir}/fastrm
400 %attr(755,root,root) %{_bindir}/filechan
401 %attr(755,root,root) %{_bindir}/getlist
402 %attr(755,root,root) %{_bindir}/grephistory
403 %attr(755,root,root) %{_bindir}/gunbatch
404 %attr(755,root,root) %{_bindir}/inncheck
405 %attr(755,root,root) %{_bindir}/innconfval
406 %attr(755,root,root) %{_bindir}/innd
407 %attr(755,root,root) %{_bindir}/inndf
408 %attr(755,root,root) %{_bindir}/innfeed
409 %attr(755,root,root) %{_bindir}/innfeed-convcfg
410 %attr(755,root,root) %{_bindir}/innmail
411 %attr(755,root,root) %{_bindir}/innreport
412 %attr(755,root,root) %{_bindir}/innstat
413 %attr(755,root,root) %{_bindir}/innwatch
414 %attr(755,root,root) %{_bindir}/innxbatch
415 %attr(755,root,root) %{_bindir}/innxmit
416 %attr(755,root,root) %{_bindir}/mailpost
417 %attr(755,root,root) %{_bindir}/makeactive
418 %attr(755,root,root) %{_bindir}/makehistory
419 %attr(755,root,root) %{_bindir}/mod-active
420 %attr(755,root,root) %{_bindir}/news2mail
421 %attr(755,root,root) %{_bindir}/news.daily
422 %attr(755,root,root) %{_bindir}/newsrequeue
423 %attr(755,root,root) %{_bindir}/nnrpd
424 %attr(755,root,root) %{_bindir}/nntpget
425 %attr(755,root,root) %{_bindir}/nntpsend
426 %attr(755,root,root) %{_bindir}/overchan
427 %attr(755,root,root) %{_bindir}/parsecontrol
428 %attr(755,root,root) %{_bindir}/pgpverify
429 %attr(755,root,root) %{_bindir}/procbatch
430 %attr(755,root,root) %{_bindir}/prunehistory
431 %attr(755,root,root) %{_bindir}/pullnews
432 %attr(755,root,root) %{_bindir}/scanlogs
433 %attr(755,root,root) %{_bindir}/scanspool
434 %attr(755,root,root) %{_bindir}/sendbatch
435 %attr(755,root,root) %{_bindir}/send-ihave
436 %attr(755,root,root) %{_bindir}/send-nntp
437 %attr(755,root,root) %{_bindir}/send-uucp
438 %attr(755,root,root) %{_bindir}/sendxbatches
439 %attr(755,root,root) %{_bindir}/shlock
440 %attr(755,root,root) %{_bindir}/shrinkfile
441 %attr(755,root,root) %{_bindir}/simpleftp
442 %attr(755,root,root) %{_bindir}/sm
443 %attr(755,root,root) %{_bindir}/tally.control
444 %attr(755,root,root) %{_bindir}/writelog
445
446
447 # MAN
448 %attr(644,root,root) %{_mandir}/man1/convdate.1*
449 %attr(644,root,root) %{_mandir}/man1/getlist.1*
450 %attr(644,root,root) %{_mandir}/man1/grephistory.1*
451 %attr(644,root,root) %{_mandir}/man1/innconfval.1*
452 %attr(644,root,root) %{_mandir}/man1/innfeed.1*
453 %attr(644,root,root) %{_mandir}/man1/installit.1*
454 %attr(644,root,root) %{_mandir}/man1/nntpget.1*
455 %attr(644,root,root) %{_mandir}/man1/rnews.1*
456 %attr(644,root,root) %{_mandir}/man1/shlock.1*
457 %attr(644,root,root) %{_mandir}/man1/shrinkfile.1*
458 %attr(644,root,root) %{_mandir}/man1/startinnfeed.1*
459 %attr(644,root,root) %{_mandir}/man1/subst.1*
460 %attr(644,root,root) %{_mandir}/man[58]/*
461
462 ##############################################################################
463 %files devel
464 %defattr(644,root,root,755)
465 %attr(644,root,root) %{_includedir}/inn/*
466 %attr(644,root,root) %{_libdir}/*.a
467 %attr(644,root,root) %{_mandir}/man3/*
468
469 ##############################################################################
470 %files -n inews
471 %defattr(644,root,root,755)
472 %attr(2755,root,news) %{_bindir}/inews
473 %attr(644,root,root) %{_mandir}/man1/inews.1.gz
This page took 0.147726 seconds and 4 git commands to generate.