summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCraig Andrews <candrews@gentoo.org>2020-05-07 13:10:51 -0400
committerCraig Andrews <candrews@gentoo.org>2020-05-07 13:40:30 -0400
commit80ece202cd3533ca28387861d48938cd68221208 (patch)
treef7b3bf49262ebfe40f96126414f7e5e12557949d /net-misc/proxytunnel
parentnet-misc/proxytunnel: 1.10.20200507 version bump (diff)
downloadgentoo-80ece202cd3533ca28387861d48938cd68221208.tar.gz
gentoo-80ece202cd3533ca28387861d48938cd68221208.tar.bz2
gentoo-80ece202cd3533ca28387861d48938cd68221208.zip
net-misc/proxytunnel: Cleanup old version
Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Craig Andrews <candrews@gentoo.org>
Diffstat (limited to 'net-misc/proxytunnel')
-rw-r--r--net-misc/proxytunnel/proxytunnel-1.9.1-r1.ebuild37
1 files changed, 0 insertions, 37 deletions
diff --git a/net-misc/proxytunnel/proxytunnel-1.9.1-r1.ebuild b/net-misc/proxytunnel/proxytunnel-1.9.1-r1.ebuild
deleted file mode 100644
index 64fea4ae5b4a..000000000000
--- a/net-misc/proxytunnel/proxytunnel-1.9.1-r1.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-inherit flag-o-matic toolchain-funcs
-
-DESCRIPTION="Connect stdin and stdout to a server somewhere on the network, through a standard HTTPS proxy"
-HOMEPAGE="https://github.com/proxytunnel/proxytunnel/ http://proxytunnel.sourceforge.net/"
-SRC_URI="https://github.com/proxytunnel/proxytunnel/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
-IUSE="static"
-
-RDEPEND="dev-libs/openssl:="
-DEPEND="${RDEPEND}
- virtual/pkgconfig
- app-text/asciidoc
- app-text/xmlto
- "
-
-src_prepare() {
- sed -i -e 's/libssl/libssl libcrypto/' Makefile || die "Sed failed!"
- epatch "${FILESDIR}"/${PN}-allowTLS.patch
-}
-
-src_compile() {
- use static && append-ldflags -static
- emake CC="$(tc-getCC)"
-}
-
-src_install() {
- emake install prefix="${EPREFIX}"/usr DESTDIR="${D}"
- dodoc CHANGES CREDITS INSTALL KNOWN_ISSUES LICENSE.txt README RELNOTES TODO
-}