commit:     7f13a061f33e7ac448df4bce54c4b0f52419a52b
Author:     Craig Andrews <candrews <AT> gentoo <DOT> org>
AuthorDate: Thu Nov  8 14:41:52 2018 +0000
Commit:     Craig Andrews <candrews <AT> gentoo <DOT> org>
CommitDate: Thu Nov  8 14:42:05 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f13a061

net-misc/proxytunnel: Take maintainership, EAPI=7 bump, add -9999

Package-Manager: Portage-2.3.51, Repoman-2.3.12
Signed-off-by: Craig Andrews <candrews <AT> gentoo.org>

 net-misc/proxytunnel/metadata.xml                |  5 ++-
 net-misc/proxytunnel/proxytunnel-1.9.1-r2.ebuild | 48 ++++++++++++++++++++++++
 net-misc/proxytunnel/proxytunnel-9999.ebuild     | 45 ++++++++++++++++++++++
 3 files changed, 97 insertions(+), 1 deletion(-)

diff --git a/net-misc/proxytunnel/metadata.xml 
b/net-misc/proxytunnel/metadata.xml
index 0739f3747df..9dec21f8f5a 100644
--- a/net-misc/proxytunnel/metadata.xml
+++ b/net-misc/proxytunnel/metadata.xml
@@ -1,7 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd";>
 <pkgmetadata>
-       <!--maintainer-needed-->
+       <maintainer type="person">
+               <email>[email protected]</email>
+               <name>Craig Andrews</name>
+       </maintainer>
        <longdescription lang="en">
                ProxyTunnel is a program that connects stdin and stdout to a 
server
                somewhere on the network, through a standard HTTPS proxy. We 
mostly use

diff --git a/net-misc/proxytunnel/proxytunnel-1.9.1-r2.ebuild 
b/net-misc/proxytunnel/proxytunnel-1.9.1-r2.ebuild
new file mode 100644
index 00000000000..c3a2f949384
--- /dev/null
+++ b/net-misc/proxytunnel/proxytunnel-1.9.1-r2.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit flag-o-matic toolchain-funcs
+
+DESCRIPTION="Connect stdin and stdout to a server via an HTTPS proxy"
+HOMEPAGE="https://github.com/proxytunnel/proxytunnel/ 
https://proxytunnel.sourceforge.net/";
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="static"
+
+RDEPEND="dev-libs/openssl:="
+DEPEND="${RDEPEND}
+       app-text/asciidoc
+       app-text/xmlto
+       "
+BDEPEND="virtual/pkgconfig"
+
+DOCS=( CHANGES CREDITS INSTALL KNOWN_ISSUES LICENSE.txt README RELNOTES TODO )
+PATCHES=(
+       "${FILESDIR}"/${PN}-allowTLS.patch
+)
+
+if [[ ${PV} == *9999 ]] ; then
+       EGIT_REPO_URI="https://github.com/${PN}/${PN}.git";
+       inherit git-r3
+else
+       SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+       KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86"
+fi
+
+src_prepare() {
+       default
+       sed -i -e 's/libssl/libssl libcrypto/' Makefile || die "Sed failed!"
+}
+
+src_compile() {
+       use static && append-ldflags -static
+       emake CC="$(tc-getCC)" || die
+}
+
+src_install() {
+       emake install prefix="${EPREFIX}"/usr DESTDIR="${D}" || die
+       einstalldocs
+}

diff --git a/net-misc/proxytunnel/proxytunnel-9999.ebuild 
b/net-misc/proxytunnel/proxytunnel-9999.ebuild
new file mode 100644
index 00000000000..16a4a63d0bb
--- /dev/null
+++ b/net-misc/proxytunnel/proxytunnel-9999.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit flag-o-matic toolchain-funcs
+
+DESCRIPTION="Connect stdin and stdout to a server via an HTTPS proxy"
+HOMEPAGE="https://github.com/proxytunnel/proxytunnel/ 
https://proxytunnel.sourceforge.net/";
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="static"
+
+RDEPEND="dev-libs/openssl:="
+DEPEND="${RDEPEND}
+       app-text/asciidoc
+       app-text/xmlto
+       "
+BDEPEND="virtual/pkgconfig"
+
+DOCS=( CHANGES CREDITS INSTALL KNOWN_ISSUES LICENSE.txt README RELNOTES TODO )
+
+if [[ ${PV} == *9999 ]] ; then
+       EGIT_REPO_URI="https://github.com/${PN}/${PN}.git";
+       inherit git-r3
+else
+       SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+       KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86"
+fi
+
+src_prepare() {
+       default
+       sed -i -e 's/libssl/libssl libcrypto/' Makefile || die "Sed failed!"
+}
+
+src_compile() {
+       use static && append-ldflags -static
+       emake CC="$(tc-getCC)" || die
+}
+
+src_install() {
+       emake install prefix="${EPREFIX}"/usr DESTDIR="${D}" || die
+       einstalldocs
+}

Reply via email to