summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAgostino Sarubbo <ago@gentoo.org>2012-06-27 18:44:30 +0000
committerAgostino Sarubbo <ago@gentoo.org>2012-06-27 18:44:30 +0000
commit342fa74c984922b938ec7150ca360071a405e2ad (patch)
treeb8c68f719d424d8d49ffff0f24f0a87df35c4b68 /net-misc/httptunnel
parentarm stable, bug #419473 (diff)
downloadgentoo-2-342fa74c984922b938ec7150ca360071a405e2ad.tar.gz
gentoo-2-342fa74c984922b938ec7150ca360071a405e2ad.tar.bz2
gentoo-2-342fa74c984922b938ec7150ca360071a405e2ad.zip
New revision, EAPI 4 + cleanup
(Portage version: 2.1.10.65/cvs/Linux x86_64)
Diffstat (limited to 'net-misc/httptunnel')
-rw-r--r--net-misc/httptunnel/ChangeLog7
-rw-r--r--net-misc/httptunnel/httptunnel-3.3-r2.ebuild31
2 files changed, 37 insertions, 1 deletions
diff --git a/net-misc/httptunnel/ChangeLog b/net-misc/httptunnel/ChangeLog
index 5bb961fd0ef2..1b0b7753e997 100644
--- a/net-misc/httptunnel/ChangeLog
+++ b/net-misc/httptunnel/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for net-misc/httptunnel
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/httptunnel/ChangeLog,v 1.21 2012/06/27 17:02:00 kensington Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/httptunnel/ChangeLog,v 1.22 2012/06/27 18:44:30 ago Exp $
+
+*httptunnel-3.3-r2 (27 Jun 2012)
+
+ 27 Jun 2012; Agostino Sarubbo <ago@gentoo.org> +httptunnel-3.3-r2.ebuild:
+ New revision, EAPI 4 + cleanup
27 Jun 2012; Michael Palimaka <kensington@gentoo.org>
-httptunnel-3.0.5.ebuild, -httptunnel-3.3.ebuild:
diff --git a/net-misc/httptunnel/httptunnel-3.3-r2.ebuild b/net-misc/httptunnel/httptunnel-3.3-r2.ebuild
new file mode 100644
index 000000000000..01f20f211cf0
--- /dev/null
+++ b/net-misc/httptunnel/httptunnel-3.3-r2.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2012 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-misc/httptunnel/httptunnel-3.3-r2.ebuild,v 1.1 2012/06/27 18:44:30 ago Exp $
+
+EAPI=4
+
+inherit eutils toolchain-funcs
+
+DESCRIPTION="httptunnel can create IP tunnels through firewalls/proxies using HTTP"
+HOMEPAGE="http://www.nocrew.org/software/httptunnel.html"
+SRC_URI="http://www.nocrew.org/software/${PN}/${P}.tar.gz"
+LICENSE="GPL-2"
+KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
+IUSE=""
+SLOT="0"
+
+DEPEND=""
+RDEPEND=""
+
+src_prepare() {
+ epatch "${FILESDIR}"/${P}-fix_write_stdin.patch
+ tc-export CC
+}
+
+src_configure() {
+ ./configure \
+ --host=${CHOST} \
+ --prefix=/usr \
+ --infodir=/usr/share/info \
+ --mandir=/usr/share/man || die
+}