]> git.pld-linux.org Git - packages/dante.git/blob - dante.spec
added pl translations
[packages/dante.git] / dante.spec
1 Summary:        A free Socks v4/v5 client implementation
2 Summary(pl):    Implementacja klienta Socks v4/5
3 Name:           dante
4 Version:        1.1.9
5 Release:        1
6 License:        BSD-type
7 Group:          Networking/Daemons
8 Group(de):      Netzwerkwesen/Server
9 Group(pl):      Sieciowe/Serwery
10 Source0:        ftp://ftp.inet.no/pub/socks/%{name}-%{version}.tar.gz
11 Source1:        sockd.init
12 URL:            http://www.inet.no/dante/
13 BuildRequires:  libwrap-devel
14 Buildroot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
15
16 %description
17 Dante is a free implementation of the proxy protocols socks version 4,
18 socks version 5 (rfc1928) and msproxy. It can be used as a firewall
19 between networks. It is being developed by Inferno Nettverk A/S, a
20 Norwegian consulting company. Commercial support is available.
21
22 This package contains the dynamic libraries required to "socksify"
23 existing applications to become socks clients.
24
25 %description -l pl
26 Dante jest darmow± implementacj± protoko³ów proxy: socks w wersji 4,
27 socks w wersji 5 (rfc1928) oraz msproxy. Mo¿e byæ u¿ywany jako zapora
28 pomiêdzy sieciami. Implementacja jest rozwijana przez Inferno Nettverk
29 A/S - Norwesk± firmê konsultingow±. Komercyjne wsparcie jest dostêpne.
30
31 Ten pakiet zawiera dynamiczne biblioteki wymagane do "usocksowiania"
32 istniej±cych aplikacji tak by dzia³a³y one jako klienci socks.
33
34 %package server
35 Summary:        A free Socks v4/v5 server implementation
36 Summary(pl):    Implementacja serwera Socks v4/5
37 Group:          Networking/Daemons
38 Group(de):      Netzwerkwesen/Server
39 Group(pl):      Sieciowe/Serwery
40 Requires:       %{name} = %{version}
41
42 %description server
43 This package contains the socks proxy daemon and its documentation.
44 The sockd is the server part of the Dante socks proxy package and
45 allows socks clients to connect through it to the network.
46
47 Ten pakiet zawiera serwer proxy socks oraz jego dokumentacjê. Serwer
48 sockd jest czê¶ci± pakietu proxy Dante. Za po¶rednictwem serwera
49 klienci mog± ³±czyæ siê z serwerami w sieci.
50
51 %package devel
52 Summary:        development libraries for socks
53 Summary(pl):    Biblioteki developerskie dla socks
54 Group:          Networking/Daemons
55 Group(de):      Netzwerkwesen/Server
56 Group(pl):      Sieciowe/Serwery
57 Requires:       %{name} = %{version}
58
59 %description devel
60 Additional libraries required to compile programs that use socks.
61
62 %description -l pl devel
63 Dodatkowe biblioteki wymagane do rozwoju programów korzystaj±cych z
64 cosck.
65
66 %package static
67 Summary:        static libraries for socks
68 Summary(pl):    Statyczne biblioteki socks
69 Group:          Networking/Daemons
70 Group(de):      Netzwerkwesen/Server
71 Group(pl):      Sieciowe/Serwery
72 Requires:       %{name}-devel = %{version}
73
74 %description static
75 Static libraries for socks.
76
77 %description -l pl static
78 Statyczne biblioteki socks.
79
80 %prep
81 %setup -q
82
83 %build
84 %configure
85 %{__make}
86
87 %install
88 rm -rf $RPM_BUILD_ROOT
89 %{__install} -d $RPM_BUILD_ROOT{%{_sysconfdir},/etc/rc.d/init.d}
90
91 %{__make} install DESTDIR=$RPM_BUILD_ROOT
92
93 %{__install} example/sock{s,d}.conf ${RPM_BUILD_ROOT}%{_sysconfdir}
94
95 %{__install} %{SOURCE1} ${RPM_BUILD_ROOT}/etc/rc.d/init.d/sockd
96
97 gzip -9nf BUGS CREDITS LICENSE NEWS README SUPPORT TODO
98
99 %clean
100 rm -rf $RPM_BUILD_ROOT
101
102 %post   -p /sbin/ldconfig
103 %postun -p /sbin/ldconfig
104
105 %post server
106 /sbin/chkconfig --add sockd
107
108 %postun server
109 if [ $1 = 0 ]; then
110         /sbin/chkconfig --del sockd
111 fi
112
113 %files
114 %defattr(644,root,root,755)
115 %doc *.gz
116 %config(noreplace) %verify(not size mtime md5) %{_sysconfdir}/socks.conf
117 %attr(755,root,root) %{_libdir}/lib*.so.*.*
118 %attr(755,root,root) %{_bindir}/socksify
119 %{_mandir}/man5/socks.conf.5*
120
121 %files server
122 %defattr(644,root,root,755)
123 %config(noreplace) %verify(not size mtime md5) %{_sysconfdir}/sockd.conf
124 %attr(754,root,root) /etc/rc.d/init.d/sockd
125 %attr(755,root,root) %{_sbindir}/sockd
126 %{_mandir}/man8/sockd.8*
127 %{_mandir}/man5/sockd.conf.5*
128
129 %files devel
130 %defattr(644,root,root,755)
131 %attr(755,root,root) %{_libdir}/lib*.so
132 %attr(755,root,root) %{_libdir}/lib*.la
133 %{_includedir}/*
134
135 %files static
136 %defattr(644,root,root,755)
137 %{_libdir}/lib*.a
This page took 0.081317 seconds and 3 git commands to generate.