blob: bb6121cea01500489d9b2f84903b47b06fcaaa45 (
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/proxychains/proxychains-2.1.ebuild,v 1.1 2004/08/31 01:47:39 vapier Exp $
DESCRIPTION="force any tcp connections to flow through a proxy (or proxy chain)"
HOMEPAGE="http://proxychains.sourceforge.net/"
SRC_URI="mirror://sourceforge/proxychains/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc"
IUSE=""
DEPEND=""
src_unpack () {
unpack ${A}
sed -i 's:/etc/:$(DESTDIR)/etc/:' ${S}/proxychains/Makefile.in || die
}
src_install() {
make DESTDIR=${D} install || die
dodoc AUTHORS ChangeLog README TODO
}
|