]> git.pld-linux.org Git - packages/pfqueue.git/blob - pfqueue.spec
- ncurses rebuild
[packages/pfqueue.git] / pfqueue.spec
1 Summary:        A console-based tool for handling MTA queues
2 Summary(pl.UTF-8):      Tekstowe narzędzie do obsługi kolejek MTA
3 Name:           pfqueue
4 Version:        0.5.6
5 Release:        3
6 License:        GPL
7 Group:          Applications/Mail
8 Source0:        http://dl.sourceforge.net/pfqueue/%{name}-%{version}.tar.gz
9 # Source0-md5:  ff3fbcc39b39112f123b93df579998b8
10 URL:            http://pfqueue.sourceforge.net/
11 BuildRequires:  ncurses-devel
12 #Requires:      postfix or exim
13 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
14
15 %description
16 pfqueue is an effort to give postqueue/mailq/postsuper/exim4 a console
17 (ncurses) interface: it won't add any particular functionality to
18 those provided with MTAs themselves, but will hopefully make them
19 easier to use.
20
21 It's a real-time queue scanner, that shows per-queue lists of existing
22 messages; the messages can be shown, deleted, put on hold, released or
23 requeued.
24
25 Just for example, it may be useful to inspect a traffic jam at a given
26 time, to see what is falling into and unexpectedly crowding your
27 deferred queue.
28
29 %description -l pl.UTF-8
30 pfqueue to próba dostarczenia tekstowego (opartego na ncurses)
31 interfejsu do poleceń postqueue/mailq/postsuper/exim4; nie dodaje
32 żadnych konkretnych funkcji do dostarczanych przez same MTA, jedynie
33 czyni je łatwiejszymi w użyciu.
34
35 Jest to program przeszukujący kolejki w czasie rzeczywistym,
36 pokazujący listę istniejących wiadomości dla każdej kolejki;
37 wiadomości mogą być wyświetlone, usunięte, wstrzymane, wypuszczone lub
38 ponownie skolejkowane.
39
40 Program może być przydatny na przykład do śledzenia zatkania ruchu o
41 danym czasie, aby zobaczyć, co wpadło i nieoczekiwanie zapchało
42 kolejkę.
43
44 %prep
45 %setup -q
46
47 %build
48 CFLAGS="%{rpmcflags} -I/usr/include/ncurses"
49 export CFLAGS
50 %configure
51 %{__make}
52
53 %install
54 rm -rf $RPM_BUILD_ROOT
55
56 %{__make} install \
57         DESTDIR=$RPM_BUILD_ROOT
58
59 %clean
60 rm -rf $RPM_BUILD_ROOT
61
62 %post   -p /sbin/ldconfig
63 %postun -p /sbin/ldconfig
64
65 %files
66 %defattr(644,root,root,755)
67 %doc AUTHORS ChangeLog NEWS README TODO
68 %attr(755,root,root) %{_bindir}/*
69 %attr(755,root,root) %{_libdir}/libpfq*.so.*.*.*
70 %{_mandir}/man1/*.1*
71 %{_mandir}/man5/*.5*
This page took 0.057985 seconds and 3 git commands to generate.