blob: 7cee4ab95fb0f08d40aa1f8b1d58e7930b2e2cd9 (
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
25
26
27
28
29
30
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/proxychains/proxychains-3.1_p20110225.ebuild,v 1.2 2011/11/08 07:36:18 radhermit Exp $
EAPI=4
inherit autotools-utils
DESCRIPTION="force any tcp connections to flow through a proxy (or proxy chain)"
HOMEPAGE="http://proxychains.sourceforge.net/
https://github.com/haad/proxychains/tree/proxychain_fixes"
SRC_URI="http://dev.gentoo.org/~radhermit/distfiles/${P}.tar.xz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE="static-libs"
DEPEND="app-arch/xz-utils"
RDEPEND="net-dns/bind-tools"
PATCHES=(
"${FILESDIR}"/${P}-glibc214.patch
"${FILESDIR}"/${P}-sysconf.patch
)
src_prepare() {
autotools-utils_src_prepare
eautoreconf
}
|