From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 84F9D138334 for ; Wed, 7 Aug 2019 16:27:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A1821E0806; Wed, 7 Aug 2019 16:27:10 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8052FE0831 for ; Wed, 7 Aug 2019 16:27:10 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 366BD3494A9 for ; Wed, 7 Aug 2019 16:27:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9BA5674D for ; Wed, 7 Aug 2019 16:27:07 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1565195215.0d1b8df0eebfadd1f1e8e9c6eadb39d5c7efd444.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/sslsplit/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/sslsplit/sslsplit-9999.ebuild X-VCS-Directories: net-analyzer/sslsplit/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 0d1b8df0eebfadd1f1e8e9c6eadb39d5c7efd444 X-VCS-Branch: master Date: Wed, 7 Aug 2019 16:27:07 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 6e82c2f9-cc11-46a2-9442-faabc8ea96d1 X-Archives-Hash: 322167947d9b6eaf0c429ebebf1728c0 commit: 0d1b8df0eebfadd1f1e8e9c6eadb39d5c7efd444 Author: Petr Vaněk atlas cz> AuthorDate: Tue Aug 6 09:07:49 2019 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Wed Aug 7 16:26:55 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d1b8df0 net-analyzer/sslsplit: update 9999 ebuild, EAPI-7 Bump Package-Manager: Portage-2.3.69, Repoman-2.3.16 Signed-off-by: Petr Vaněk atlas.cz> Signed-off-by: Joonas Niilola gentoo.org> net-analyzer/sslsplit/sslsplit-9999.ebuild | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/net-analyzer/sslsplit/sslsplit-9999.ebuild b/net-analyzer/sslsplit/sslsplit-9999.ebuild index f013b4bb555..5ea7c49b62c 100644 --- a/net-analyzer/sslsplit/sslsplit-9999.ebuild +++ b/net-analyzer/sslsplit/sslsplit-9999.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 inherit flag-o-matic @@ -22,23 +22,25 @@ else fi RDEPEND=" - elibc_musl? ( sys-libs/fts-standalone ) dev-libs/libevent[ssl,threads] - dev-libs/openssl:0=" + dev-libs/openssl:0= + net-libs/libnet:1.1 + elibc_musl? ( sys-libs/fts-standalone )" DEPEND="${RDEPEND} test? ( dev-libs/check )" +BDEPEND="" src_prepare() { default use elibc_musl && append-libs "-lfts" - sed -i 's/-D_FORTIFY_SOURCE=2 //g' GNUmakefile || die - sed -i 's/\/SSLSPLIT_FEATURES/g' GNUmakefile build.c || die + sed -i -e 's/-D_FORTIFY_SOURCE=2 //g' \ + -e 's/\/SSLSPLIT_FEATURES/g' GNUmakefile || die sed -i '/opts_suite/d' main.t.c || die } src_install() { - emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install + emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" SYSCONFDIR="${EPREFIX}/etc" install dodoc AUTHORS.md NEWS.md README.md }