]> git.pld-linux.org Git - packages/apf.git/blob - apf.spec
- up to 0.8.3
[packages/apf.git] / apf.spec
1 Summary:        Active Port Forwarder - SSL secure packet tunneling
2 Summary(pl.UTF-8):      Active Port Forwarder - bezpieczne tunelowanie pakietów poprzez SSL
3 Name:           apf
4 Version:        0.8.3
5 Release:        0.1
6 License:        GPL v2
7 Group:          Applications/Networking
8 Source0:        http://gray-world.net/projects/af/%{name}-%{version}.tgz
9 # Source0-md5:  a70713279ce53e4aa6255deddbdb0f6b
10 URL:            http://xmlindent.sourceforge.net/
11 BuildRequires:  autoconf
12 BuildRequires:  automake
13 BuildRequires:  libtool
14 BuildRequires:  openssl-devel
15 BuildRequires:  zlib-devel
16 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
17
18 %description
19 Active Port Forwarder is a software tool for secure port forwarding.
20 It uses SSL to increase security of communication between a server and
21 a client. APF is dedicated for people, who don't have an external IP
22 number and want to make some services available across the net.
23 Moreover, zlib is used to compress the transferred data. Using one,
24 permanent data/control channel with flow control/packet buffering
25 provides good performance and reasonably small latency. Running
26 afserver does not require root priviledges, nor does it use threads or
27 other processes.
28
29 %description -l pl.UTF-8
30 Active Port Forwarder jest narzędziem do bezpiecznego tunelowania
31 połączeń. Dla zwiększenia bezpieczeństwa komunikacji między serwerem a
32 klientem używana jest biblioteka SSL. APF został zaprojektowany z
33 myślą o ludziach nie posiadających zewnętrznych numerów IP, którzy
34 chcieliby udostępnić światu jakieś usługi. Ponadto, biblioteka zlib
35 jest używana do kompresowania przesyłanych danych. Użycie jednego
36 połączenia dla danych użytkownika/sterujących, wraz z kontrolą
37 przesyłu/buforowaniem pakietów, umożliwia osiągnięcie dobrej
38 wydajności i rozsądnie małych opóźnień. afserver nie potrzebuje
39 uprawnień roota, nie używa wątków ani innych procesów.
40
41 %prep
42 %setup -q
43
44 %build
45 %{__libtoolize}
46 %{__aclocal}
47 %{__automake}
48 %{__autoconf}
49 %configure
50 %{__make} \
51         CFLAGS="%{rpmcflags}"
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 %files
63 %defattr(644,root,root,755)
64 %doc AUTHORS ChangeLog NEWS README doc/*_example.conf
65 %lang(fr) %doc doc/fr/fr_README
66 %lang(ru) %doc doc/ru/ru_README
67 %attr(755,root,root) %{_bindir}/*
68 %{_mandir}/man?/afclient*
69 %{_mandir}/man?/afserver*
This page took 0.090558 seconds and 3 git commands to generate.