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 C763C138350 for ; Tue, 28 Apr 2020 08:29:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D91F9E08E8; Tue, 28 Apr 2020 08:29:22 +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 A1974E08D4 for ; Tue, 28 Apr 2020 08:29:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 3E17E34EF51 for ; Tue, 28 Apr 2020 08:29:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D54541F2 for ; Tue, 28 Apr 2020 08:29:18 +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: <1588062543.b5aece8e7c84de10a3713e4588f1a20a1b62ad4a.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-nntp/suck/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-nntp/suck/suck-4.3.4.ebuild X-VCS-Directories: net-nntp/suck/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: b5aece8e7c84de10a3713e4588f1a20a1b62ad4a X-VCS-Branch: master Date: Tue, 28 Apr 2020 08:29:18 +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: 443cc6ea-0a89-4a00-9935-6074fd15cc02 X-Archives-Hash: ff69f15629932ce6a65328f7b9429a8c commit: b5aece8e7c84de10a3713e4588f1a20a1b62ad4a Author: Joonas Niilola gentoo org> AuthorDate: Tue Apr 28 08:27:46 2020 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Tue Apr 28 08:29:03 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5aece8e net-nntp/suck: tidy 4.3.4 ebuild Signed-off-by: Joonas Niilola gentoo.org> net-nntp/suck/suck-4.3.4.ebuild | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/net-nntp/suck/suck-4.3.4.ebuild b/net-nntp/suck/suck-4.3.4.ebuild index 6e3a5533c5c..ecb5006bebe 100644 --- a/net-nntp/suck/suck-4.3.4.ebuild +++ b/net-nntp/suck/suck-4.3.4.ebuild @@ -2,6 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 + inherit autotools DESCRIPTION="Grab news from a remote NNTP server and feed them to another" @@ -37,8 +38,13 @@ src_prepare() { } src_configure() { - use ssl || sed -i -e 's/^SSL_/#SSL_/' Makefile.in || die "ssl sed failed" - use perl || sed -i -e 's/^PERL_/#PERL_/' Makefile.in || die "perl sed failed" + if use ssl; then + sed -i -e 's/^SSL_/#SSL_/' Makefile.in || die "ssl sed failed" + fi + + if use perl; then + sed -i -e 's/^PERL_/#PERL_/' Makefile.in || die "perl sed failed" + fi econf --without-inn-lib --without-inn-include }