Gentoo Archives: gentoo-commits

From: Craig Andrews <candrews@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/proxytunnel/
Date: Thu, 07 May 2020 17:40:39
Message-Id: 1588873230.80ece202cd3533ca28387861d48938cd68221208.candrews@gentoo
1 commit: 80ece202cd3533ca28387861d48938cd68221208
2 Author: Craig Andrews <candrews <AT> gentoo <DOT> org>
3 AuthorDate: Thu May 7 17:10:51 2020 +0000
4 Commit: Craig Andrews <candrews <AT> gentoo <DOT> org>
5 CommitDate: Thu May 7 17:40:30 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80ece202
7
8 net-misc/proxytunnel: Cleanup old version
9
10 Package-Manager: Portage-2.3.99, Repoman-2.3.22
11 Signed-off-by: Craig Andrews <candrews <AT> gentoo.org>
12
13 net-misc/proxytunnel/proxytunnel-1.9.1-r1.ebuild | 37 ------------------------
14 1 file changed, 37 deletions(-)
15
16 diff --git a/net-misc/proxytunnel/proxytunnel-1.9.1-r1.ebuild b/net-misc/proxytunnel/proxytunnel-1.9.1-r1.ebuild
17 deleted file mode 100644
18 index 64fea4ae5b4..00000000000
19 --- a/net-misc/proxytunnel/proxytunnel-1.9.1-r1.ebuild
20 +++ /dev/null
21 @@ -1,37 +0,0 @@
22 -# Copyright 1999-2020 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI="5"
26 -
27 -inherit flag-o-matic toolchain-funcs
28 -
29 -DESCRIPTION="Connect stdin and stdout to a server somewhere on the network, through a standard HTTPS proxy"
30 -HOMEPAGE="https://github.com/proxytunnel/proxytunnel/ http://proxytunnel.sourceforge.net/"
31 -SRC_URI="https://github.com/proxytunnel/proxytunnel/archive/${PV}.tar.gz -> ${P}.tar.gz"
32 -
33 -LICENSE="GPL-2"
34 -SLOT="0"
35 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
36 -IUSE="static"
37 -
38 -RDEPEND="dev-libs/openssl:="
39 -DEPEND="${RDEPEND}
40 - virtual/pkgconfig
41 - app-text/asciidoc
42 - app-text/xmlto
43 - "
44 -
45 -src_prepare() {
46 - sed -i -e 's/libssl/libssl libcrypto/' Makefile || die "Sed failed!"
47 - epatch "${FILESDIR}"/${PN}-allowTLS.patch
48 -}
49 -
50 -src_compile() {
51 - use static && append-ldflags -static
52 - emake CC="$(tc-getCC)"
53 -}
54 -
55 -src_install() {
56 - emake install prefix="${EPREFIX}"/usr DESTDIR="${D}"
57 - dodoc CHANGES CREDITS INSTALL KNOWN_ISSUES LICENSE.txt README RELNOTES TODO
58 -}