mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-05-04 18:40:19 +02:00
30 lines
537 B
Bash
30 lines
537 B
Bash
# Copyright 1999-2011 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: $
|
|
|
|
EAPI=4
|
|
|
|
inherit toolchain-funcs git-2
|
|
|
|
DESCRIPTION="Transparent redirector of any TCP connection to proxy"
|
|
HOMEPAGE="http://darkk.net.ru/redsocks/"
|
|
EGIT_REPO_URI="git://github.com/darkk/${PN}.git"
|
|
|
|
LICENSE="Apache-2.0"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE=""
|
|
|
|
RDEPEND=""
|
|
DEPEND="${RDEPEND}
|
|
dev-libs/libevent"
|
|
|
|
src_compile() {
|
|
emake
|
|
}
|
|
|
|
src_install() {
|
|
# emake DESTDIR="${D}" install
|
|
dobin redsocks
|
|
doman README
|
|
}
|