]> git.pld-linux.org Git - packages/proxytunnel.git/blame - proxytunnel.spec
- release 0.2: rebuild with new libcrypto/libssl
[packages/proxytunnel.git] / proxytunnel.spec
CommitLineData
4d331b1f 1Summary: Proxy Tunnel ssh-over-https hack
3627bd5d 2Summary(pl.UTF-8): Tunel proxy ssh-po-https
4d331b1f 3Name: proxytunnel
c8b62589 4Version: 1.9.0
1fda1329 5Release: 0.2
4d331b1f 6License: GPL
7Group: Applications
ee88d78d 8Source0: http://dl.sourceforge.net/proxytunnel/%{name}-%{version}.tgz
c8b62589 9# Source0-md5: d74472b89c3f3b3b0abf6bd809ae34c2
4d331b1f 10URL: http://proxytunnel.sourceforge.net/
ee88d78d
JB
11BuildRequires: openssl-devel
12BuildRequires: pkgconfig
4d331b1f 13BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
14
15%description
16ProxyTunnel is a program that connects stdin and stdout to a server
17somewhere on the network, through a standard HTTPS proxy. We mostly
18use it to tunnel SSH sessions through HTTP(S) proxies, allowing us to
19do many things that wouldn't be possible without ProxyTunnel.
944c0096 20ProxyTunnel can currently do the following:
4d331b1f 21- Create tunnels using HTTP and HTTPS proxies (That understand the
22 HTTP CONNECT command).
23- Work as a back-end driver for an OpenSSH client, and create SSH
24 connections through HTTP(S) proxies.
25- Work as a stand-alone application, listening on a port for
26 connections, and then tunneling these connections to a specified
27 destination.
28
9c990a3a
JR
29%description -l pl.UTF-8
30ProxyTunnel to program łączący stdin i stdout do serwera gdzieś w
31sieci poprzez standardowe proxy HTTPS. Jest używany głównie do
944c0096 32tunelowania sesji SSH poprzez proxy HTTP(S), co pozwala na robienie
9c990a3a 33wielu rzeczy, które nie byłyby możliwe bez niego. ProxyTunnel
944c0096 34aktualnie potrafi:
9c990a3a 35- tworzyć tunele przy użyciu proxy HTTP i HTTPS (rozumiejących
944c0096 36 polecenie HTTP CONNECT),
9c990a3a
JR
37- działać jako sterownik backendu dla klienta OpenSSH i tworzyć
38 połączenia SSH poprzez proxy HTTP(S),
39- działać jako samodzielna aplikacja, nasłuchując na jakimś porcie na
40 połączenia, a następnie tunelując te połączenia na podany adres.
944c0096 41
4d331b1f 42%prep
43%setup -q
44
45%build
4d331b1f 46%{__make} \
47 CC="%{__cc}" \
48 CFLAGS="%{rpmcflags}" \
c8b62589 49 LDFLAGS="%{rpmldflags} `pkg-config --libs openssl`"
4d331b1f 50
51%install
52rm -rf $RPM_BUILD_ROOT
53
c8b62589 54%{__make} install \
55 PREFIX=$RPM_BUILD_ROOT%{_prefix}
4d331b1f 56
57%clean
58rm -rf $RPM_BUILD_ROOT
59
60%files
61%defattr(644,root,root,755)
62%doc CREDITS CHANGES README
63%attr(755,root,root) %{_bindir}/*
64%{_mandir}/man1/*
This page took 0.063715 seconds and 4 git commands to generate.