diff options
author | Sam James <sam@gentoo.org> | 2020-09-15 20:20:12 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2020-09-15 20:51:41 +0000 |
commit | b28490af49c11c6806449507af2ddee6d08f1118 (patch) | |
tree | 5285edf7b5ebfd493f2670dccd695088486cfbe5 /net-vpn/httptunnel | |
parent | x11-misc/cairo-clock: Gunzip man page, fix RDEPEND (diff) | |
download | gentoo-b28490af49c11c6806449507af2ddee6d08f1118.tar.gz gentoo-b28490af49c11c6806449507af2ddee6d08f1118.tar.bz2 gentoo-b28490af49c11c6806449507af2ddee6d08f1118.zip |
net-vpn/httptunnel: bump to EAPI 7
Closes: https://bugs.gentoo.org/742032
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-vpn/httptunnel')
-rw-r--r-- | net-vpn/httptunnel/httptunnel-3.3-r2.ebuild | 27 |
1 files changed, 7 insertions, 20 deletions
diff --git a/net-vpn/httptunnel/httptunnel-3.3-r2.ebuild b/net-vpn/httptunnel/httptunnel-3.3-r2.ebuild index f5232f19e9f4..f5887a74bbf4 100644 --- a/net-vpn/httptunnel/httptunnel-3.3-r2.ebuild +++ b/net-vpn/httptunnel/httptunnel-3.3-r2.ebuild @@ -1,30 +1,17 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=4 +EAPI=7 -inherit eutils toolchain-funcs +inherit toolchain-funcs DESCRIPTION="httptunnel can create IP tunnels through firewalls/proxies using HTTP" -HOMEPAGE="http://www.nocrew.org/software/httptunnel.html" +HOMEPAGE="https://github.com/larsbrinkhoff/httptunnel" SRC_URI="http://www.nocrew.org/software/${PN}/${P}.tar.gz" LICENSE="GPL-2" KEYWORDS="amd64 ppc x86" -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 -} +PATCHES=( + "${FILESDIR}"/${P}-fix_write_stdin.patch +) |