# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ IUSE="" DESCRIPTION="sconnect is a very small tool that allows you to tunnel SSH connections through HTTP or SOCKS proxies." SRC_URI="http://linux.ncl.ac.uk/ssh/connect.c" HOMEPAGE="http://linux.ncl.ac.uk/ssh/connect.c" S=${WORKDIR} KEYWORDS="~x86" LICENSE="GPL-2" SLOT="0" src_unpack() { cp ${DISTDIR}/${A} ${S} } src_compile() { echo "gcc -o sconnect connect.c" gcc -o sconnect connect.c || die } src_install () { dobin sconnect head -n 191 connect.c > README dodoc README }