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 94F79138359 for ; Mon, 14 Sep 2020 22:51:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ADD2FE0863; Mon, 14 Sep 2020 22:51:49 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 95216E0863 for ; Mon, 14 Sep 2020 22:51:49 +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 3A1B9335DB5 for ; Mon, 14 Sep 2020 22:51:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A5831339 for ; Mon, 14 Sep 2020 22:51:46 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1600123902.2e024f67875b7a2c1bbb4122796aee372de2f805.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/vncsnapshot/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/vncsnapshot/vncsnapshot-1.2a.ebuild X-VCS-Directories: net-misc/vncsnapshot/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 2e024f67875b7a2c1bbb4122796aee372de2f805 X-VCS-Branch: master Date: Mon, 14 Sep 2020 22:51:46 +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: 9fa03429-5c4d-477d-9625-b599bf1fd644 X-Archives-Hash: 2449257db339b419dd61b259c130545f commit: 2e024f67875b7a2c1bbb4122796aee372de2f805 Author: Sam James gentoo org> AuthorDate: Mon Sep 14 22:51:42 2020 +0000 Commit: Sam James gentoo org> CommitDate: Mon Sep 14 22:51:42 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e024f67 net-misc/vncsnapshot: simplify ebuild Package-Manager: Portage-3.0.4, Repoman-3.0.1 Signed-off-by: Sam James gentoo.org> net-misc/vncsnapshot/vncsnapshot-1.2a.ebuild | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/net-misc/vncsnapshot/vncsnapshot-1.2a.ebuild b/net-misc/vncsnapshot/vncsnapshot-1.2a.ebuild index 133346f838c..91d250b58b9 100644 --- a/net-misc/vncsnapshot/vncsnapshot-1.2a.ebuild +++ b/net-misc/vncsnapshot/vncsnapshot-1.2a.ebuild @@ -41,8 +41,9 @@ src_prepare() { } src_compile() { - # Note: We override CDEBUGFLAGS instead of CFLAGS because otherwise - # we lose the INCLUDES in the makefile. + # We override CDEBUGFLAGS instead of CFLAGS because otherwise + # we lose the INCLUDES in the makefile. The same flags are used + # for both. # bug #295741 local args=( AR="$(tc-getAR)" @@ -56,7 +57,5 @@ src_compile() { src_install() { dobin vncsnapshot - - cp vncsnapshot.man1 vncsnapshot.1 || die - doman vncsnapshot.1 + newman vncsnapshot.man1 vncsnapshot.1 }