blob: 2233802c30fe76daf21caba8a3557d9d3802992b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/proxytunnel/proxytunnel-1.1.3.ebuild,v 1.2 2004/06/25 00:05:53 agriffis Exp $
DESCRIPTION="program that connects stdin and stdout to a server somewhere on the network, through a standard HTTPS proxy"
HOMEPAGE="http://proxytunnel.sourceforge.net/"
SRC_URI="mirror://sourceforge/proxytunnel/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
DEPEND="virtual/glibc"
S=${WORKDIR}
src_compile() {
emake || die
}
src_install() {
make install DESTDIR=${D} || die
dodoc CHANGES CREDITS README
}
|