mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-21 14:21:02 +02:00
redsocks: install config/example files, cleanups
This commit is contained in:
parent
0c06caf85e
commit
1686d00ea5
4 changed files with 44 additions and 8 deletions
|
|
@ -1,3 +1,4 @@
|
|||
DIST redsocks-0.4.tar.bz2 467849 SHA256 339948e47611f71379d8faa7986587564e208d81f7ed4a1cb90e53b892829543 SHA512 5873ad15364906a0bea7a23c4808650a946f5073df1d7034786d54c28ee4dadecf109ac924b3c9836b0bb96efd5286f022c0ef192910d3cb8fa9b8dd1821289c WHIRLPOOL 837577c3cc0b71cf92b9ef6356dd53a639f255f474503d4e80d997c0effd1f43adb4a0426ff510e34726cdd6df80120fb831442cbbda97bfe94ba2b77b991143
|
||||
EBUILD redsocks-0.4.ebuild 513 SHA256 c7bf9efdba2618c6c7a9e99db60901af146c7f40584bbc8f17ad7dab201849b1 SHA512 3a750bfba648091cabb6c8b9096afdb2452fad78f1a7fe9d63b8754ad8479fd78015ec0fdc3f5f57b5dc0610cfa95b8f3a22e37b1e50ad311e91dfb00c368b8d WHIRLPOOL 1df5a06868d2855595bd33e4180524c36747827374b7fb6427b845a1d6026fd9abcbd70ebda98e915350843c343082d3ddf94c8d50c735fda7ed26cefeefa0e4
|
||||
EBUILD redsocks-9999.ebuild 479 SHA256 a22dff07e9cae8e6b8ac8c516a34d1558e8c600acde515cbdca201b6b4a6c8a0 SHA512 722b317ec9880bf9ef064e98049366e12acc875e8215f3fa4f2e32e2a782d0d048552f48364e66c4b99d2e3953a31be8b7823c99c76174c9bfa32daeaf86853f WHIRLPOOL 77a3848e161df5120a8cba4b0b64ca5b4f76afc2474f609137a6daaa4e58c0a7221b4c8736b841f8b0df0f24872374c7252f44d88e0f860189f4fa943d9ff067
|
||||
EBUILD redsocks-0.4-r1.ebuild 613 SHA256 e15589265c1c9a159de98bdcb4df690095086d478f07dcd6454203a3e5418c74 SHA512 f361308fc116366afe2bb7c2f672320ebd46a4ae188aae2dc30c5e5526178600a37c235efcec97b1c3d90988f916c6ae5da21253014949cc2223296551055cef WHIRLPOOL 41364292603e043a708bca774215b655ed64fac1b87ad0caaf3f6c9e14d6a89a3486a524bbab082bc4f6646465243b8f8ff8757bdcf4f29f89f3f9e25f749703
|
||||
EBUILD redsocks-0.4.ebuild 500 SHA256 4b968f0214b29b7b1095820b690a9238d7e1042e806b3b3a122c3bb51c662b0b SHA512 e6e4ac2138f7f702f3b0693f07ea7410e4129bf6d15386dff8f745a2cacb5c670d71488880e916149a720d9b7ef9591c96eacaf09fbda5b593f9a5137c3ef453 WHIRLPOOL 7a3985900069e87345520b84fcf350974d1d049ee55ec44ef7669e29b3145d2f1bd260d89728732994f9e6eef78cd06f737bb772a62a8911be8bf17dcfbade1c
|
||||
EBUILD redsocks-9999.ebuild 592 SHA256 3c9ce6417c104fba34ecbf4b7b479875a5266b64a2429071b602774b69adf1f5 SHA512 f6e6633187f7208a70b696ff04113f23f96840f2a8e86b4bd6e1d878367fcdbbcb1e414be8e492a0ade82f8948b822803c3ec9a9998c46853bc8de44677a947b WHIRLPOOL 4575a403d3fb20df128e2dd1a7ab7c394f549e7d6a39eb7a847983f029cf563e512d8f223e6aa0928b253b2b9314c5848b8d964a0ee69f914ca279094e22da1e
|
||||
|
|
|
|||
32
net-proxy/redsocks/redsocks-0.4-r1.ebuild
Normal file
32
net-proxy/redsocks/redsocks-0.4-r1.ebuild
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
# Copyright 1999-2012 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: $
|
||||
|
||||
EAPI=4
|
||||
|
||||
inherit toolchain-funcs
|
||||
|
||||
DESCRIPTION="Transparent redirector of any TCP connection to proxy"
|
||||
HOMEPAGE="http://darkk.net.ru/redsocks/"
|
||||
SRC_URI="mirror://github/darkk/${PN}/${P}.tar.bz2"
|
||||
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0"
|
||||
KEYWORDS="x86 amd64"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND="dev-libs/libevent
|
||||
net-firewall/iptables"
|
||||
DEPEND="virtual/pkgconfig
|
||||
${RDEPEND}"
|
||||
|
||||
src_compile() {
|
||||
emake
|
||||
}
|
||||
|
||||
src_install() {
|
||||
dobin redsocks
|
||||
dodoc README doc/*
|
||||
insinto /etc/redsocks
|
||||
newins redsocks.conf.example redsocks.conf
|
||||
}
|
||||
|
|
@ -8,7 +8,7 @@ inherit toolchain-funcs
|
|||
|
||||
DESCRIPTION="Transparent redirector of any TCP connection to proxy"
|
||||
HOMEPAGE="http://darkk.net.ru/redsocks/"
|
||||
SRC_URI="https://github.com/downloads/darkk/${PN}/${P}.tar.bz2"
|
||||
SRC_URI="mirror://github/darkk/${PN}/${P}.tar.bz2"
|
||||
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0"
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
# Copyright 1999-2011 Gentoo Foundation
|
||||
# Copyright 1999-2012 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: $
|
||||
|
||||
|
|
@ -15,9 +15,10 @@ SLOT="0"
|
|||
KEYWORDS=""
|
||||
IUSE=""
|
||||
|
||||
RDEPEND=""
|
||||
DEPEND="${RDEPEND}
|
||||
dev-libs/libevent"
|
||||
RDEPEND="dev-libs/libevent
|
||||
net-firewall/iptables"
|
||||
DEPEND="virtual/pkgconfig
|
||||
${RDEPEND}"
|
||||
|
||||
src_compile() {
|
||||
emake
|
||||
|
|
@ -25,5 +26,7 @@ src_compile() {
|
|||
|
||||
src_install() {
|
||||
dobin redsocks
|
||||
dodoc README
|
||||
dodoc README doc/*
|
||||
insinto /etc/redsocks
|
||||
newins redsocks.conf.example redsocks.conf
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue