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 85259138334 for ; Mon, 22 Oct 2018 14:21:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D5B2DE0877; Mon, 22 Oct 2018 14:21:04 +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 B146AE0877 for ; Mon, 22 Oct 2018 14:21:04 +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 C6747335CCC for ; Mon, 22 Oct 2018 14:21:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 072A6436 for ; Mon, 22 Oct 2018 14:21:02 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1540218055.648aaecc6bb2c6429894f2865b28b4d0717ccfd1.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/gkrellm/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-admin/gkrellm/gkrellm-2.3.10-r1.ebuild X-VCS-Directories: app-admin/gkrellm/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 648aaecc6bb2c6429894f2865b28b4d0717ccfd1 X-VCS-Branch: master Date: Mon, 22 Oct 2018 14:21:02 +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-Archives-Salt: ebb3ead1-eb54-4d86-9941-4bf2bcf5c658 X-Archives-Hash: d78172b50f1e85904a901bfb47d8f64c commit: 648aaecc6bb2c6429894f2865b28b4d0717ccfd1 Author: Lars Wendler gentoo org> AuthorDate: Mon Oct 22 14:20:55 2018 +0000 Commit: Lars Wendler gentoo org> CommitDate: Mon Oct 22 14:20:55 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=648aaecc app-admin/gkrellm: Added a warning if USE="gnutls -ssl" is set. Signed-off-by: Lars Wendler gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 app-admin/gkrellm/gkrellm-2.3.10-r1.ebuild | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/app-admin/gkrellm/gkrellm-2.3.10-r1.ebuild b/app-admin/gkrellm/gkrellm-2.3.10-r1.ebuild index 4b9dfe89901..b921679f6f1 100644 --- a/app-admin/gkrellm/gkrellm-2.3.10-r1.ebuild +++ b/app-admin/gkrellm/gkrellm-2.3.10-r1.ebuild @@ -53,6 +53,13 @@ S="${WORKDIR}/${MY_P}" DOCS=( Changelog CREDITS README ) +pkg_pretend() { + if use gnutls && ! use ssl ; then + ewarn "You have enabled the \"gnutls\" USE flag but not the \"ssl\" USE flag." + ewarn "No ssl backend will be built!" + fi +} + pkg_setup() { enewgroup gkrellmd enewuser gkrellmd -1 -1 -1 gkrellmd