summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony G. Basile <blueness@gentoo.org>2014-01-26 21:15:41 +0000
committerAnthony G. Basile <blueness@gentoo.org>2014-01-26 21:15:41 +0000
commitcafee3e14bf36b0bca16a3ee2194035aa6dd5072 (patch)
tree7351341bfd862e24c31093436688765f8e771d30 /net-proxy
parentAdd USE=nls, bug #491206 (diff)
downloadgentoo-2-cafee3e14bf36b0bca16a3ee2194035aa6dd5072.tar.gz
gentoo-2-cafee3e14bf36b0bca16a3ee2194035aa6dd5072.tar.bz2
gentoo-2-cafee3e14bf36b0bca16a3ee2194035aa6dd5072.zip
Remove older non-daemon version
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)
Diffstat (limited to 'net-proxy')
-rw-r--r--net-proxy/obfsproxy/ChangeLog7
-rw-r--r--net-proxy/obfsproxy/obfsproxy-0.1.4.ebuild61
2 files changed, 5 insertions, 63 deletions
diff --git a/net-proxy/obfsproxy/ChangeLog b/net-proxy/obfsproxy/ChangeLog
index 9fee90c83fcd..f8e87ebfe7a4 100644
--- a/net-proxy/obfsproxy/ChangeLog
+++ b/net-proxy/obfsproxy/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-proxy/obfsproxy
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-proxy/obfsproxy/ChangeLog,v 1.21 2013/10/08 10:53:07 blueness Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-proxy/obfsproxy/ChangeLog,v 1.22 2014/01/26 21:15:41 blueness Exp $
+
+ 26 Jan 2014; Anthony G. Basile <blueness@gentoo.org> -obfsproxy-0.1.4.ebuild:
+ Remove older non-daemon version
08 Oct 2013; Anthony G. Basile <blueness@gentoo.org>
+files/obfsproxy-remove-argparse.patch:
diff --git a/net-proxy/obfsproxy/obfsproxy-0.1.4.ebuild b/net-proxy/obfsproxy/obfsproxy-0.1.4.ebuild
deleted file mode 100644
index 7d797c73df45..000000000000
--- a/net-proxy/obfsproxy/obfsproxy-0.1.4.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-proxy/obfsproxy/obfsproxy-0.1.4.ebuild,v 1.8 2013/01/22 17:31:31 ago Exp $
-
-EAPI="4"
-
-inherit toolchain-funcs
-
-DESCRIPTION="A tor-compliant pluggable transports proxy to obfuscate tor traffic"
-HOMEPAGE="https://www.torproject.org/projects/obfsproxy.html"
-SRC_URI="https://archive.torproject.org/tor-package-archive/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~mips ~ppc ~ppc64 x86"
-IUSE=""
-
-DEPEND="dev-libs/openssl
- >=dev-libs/libevent-2
- sys-libs/zlib"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
- sed -i -e "s:^AR = ar:AR = $(tc-getAR):" Makefile.in || die
-}
-
-src_install() {
- emake DESTDIR="${D}" install
- dodoc README ChangeLog
- dodoc -r doc/*
-}
-
-pkg_postinst() {
- einfo
- einfo "To run ${PN} with a tor bridge, add the following to your torrc file:"
- einfo
- einfo " ORPort 5001"
- einfo " BridgeRelay 1"
- einfo " ExitPolicy reject *:*"
- einfo " ServerTransportPlugin obfs2 exec /usr/bin/${PN} --managed"
- einfo
- einfo "Change your ORPort to whatever value you use. When you start tor,"
- einfo "you should see a message similar to the following in its logs:"
- einfo
- einfo " Registered server transport 'obfs2' at '0.0.0.0:33578'"
- einfo
- einfo "Note the port number, 33578 in this case, and report it, along with"
- einfo "your IP address, to your bridge clients."
- einfo
- einfo
- einfo "To run ${PN} with a tor client, add the following to your torrc file:"
- einfo
- einfo " SocksPort 5000"
- einfo " UseBridges 1"
- einfo " Bridge obfs2 <IP>:<port>"
- einfo " ClientTransportPlugin obfs2 exec /usr/bin/${PN} --managed"
- einfo
- einfo "Change your SocksPort to whatever value you use. Also, replace the"
- einfo "<IP>:<port> pair with the values you received from the tor obfs bridge."
- einfo
-}