]> git.pld-linux.org Git - packages/stunnel.git/blob - stunnel.spec
- adapterized.
[packages/stunnel.git] / stunnel.spec
1 Summary:        Universal SSL tunnel
2 Summary(pl):    Uniwersalne narzêdzie do bezpiecznego tunelowania
3 Name:           stunnel
4 Version:        3.22
5 Release:        1
6 License:        GPL
7 Group:          Networking/Daemons
8 Source0:        ftp://stunnel.mirt.net/stunnel/%{name}-%{version}.tar.gz
9 Patch0:         %{name}-DESTDIR.patch
10 Patch1:         %{name}-gethostbyname_is_in_libc_aka_no_libnsl.patch
11 Patch2:         %{name}-piddir.patch
12 Patch3:         %{name}-gen-cert.patch
13 Patch4:         %{name}-authpriv.patch
14 Patch5:         %{name}-ac_fixes.patch
15 URL:            http://www.stunnel.org/
16 BuildRequires:  autoconf
17 BuildRequires:  automake
18 BuildRequires:  openssl-devel >= 0.9.6a
19 BuildRequires:  openssl-tools >= 0.9.6a
20 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
21
22 %define         _certdir        /var/lib/stunnel
23
24 %description
25 The stunnel program is designed to work as SSL encryption wrapper
26 between remote client and local (inetd-startable) or remote server.
27 The concept is that having non-SSL aware daemons running on your
28 system you can easily setup them to communicate with clients over
29 secure SSL channel. stunnel can be used to add SSL functionality to
30 commonly used inetd daemons like POP-2, POP-3 and IMAP servers without
31 any changes in the programs' code.
32
33 %description -l pl
34 Stunnel umo¿liwia stawianie silnie kodowanych tuneli pomiêdzy serwerem
35 a komputerem klienta. Przy jego u¿yciu mo¿na ³atwo zrealizowaæ us³ugi
36 pop3s lub https.
37
38 %prep
39 %setup -q
40 %patch0 -p1
41 %patch1 -p1
42 %patch2 -p1
43 %patch3 -p1
44 %patch4 -p1
45 %patch5 -p1
46
47 %build
48 autoconf
49 %configure \
50         --with-pem-dir=%{_certdir}
51
52 %{__make}
53
54 %install
55 rm -rf $RPM_BUILD_ROOT
56
57 %{__make} install \
58         DESTDIR=$RPM_BUILD_ROOT \
59         certdir=$RPM_BUILD_ROOT/%{_certdir}
60
61 gzip -9nf BUGS CREDITS FAQ HISTORY README TODO doc/english/transproxy.txt
62
63 %clean
64 rm -rf $RPM_BUILD_ROOT
65
66 %post   -p /sbin/ldconfig
67 %postun -p /sbin/ldconfig
68
69 %files
70 %defattr(644,root,root,755)
71 %doc *.gz doc/english/*.gz doc/english/*.html
72 %doc %lang(pl) doc/polish/*
73 %doc stunnel.exe
74 %config(noreplace) %verify(not size mtime md5) %attr(600,root,root) %{_certdir}/stunnel.pem
75 %attr(755,root,root) %{_sbindir}/*
76 %attr(755,root,root) %{_libdir}/*
77 %dir /var/run/stunnel
78 %{_mandir}/man8/*
This page took 0.128279 seconds and 3 git commands to generate.