Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/vncsnapshot/
Date: Mon, 14 Sep 2020 22:51:50
Message-Id: 1600123902.2e024f67875b7a2c1bbb4122796aee372de2f805.sam@gentoo
1 commit: 2e024f67875b7a2c1bbb4122796aee372de2f805
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 14 22:51:42 2020 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 14 22:51:42 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e024f67
7
8 net-misc/vncsnapshot: simplify ebuild
9
10 Package-Manager: Portage-3.0.4, Repoman-3.0.1
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 net-misc/vncsnapshot/vncsnapshot-1.2a.ebuild | 9 ++++-----
14 1 file changed, 4 insertions(+), 5 deletions(-)
15
16 diff --git a/net-misc/vncsnapshot/vncsnapshot-1.2a.ebuild b/net-misc/vncsnapshot/vncsnapshot-1.2a.ebuild
17 index 133346f838c..91d250b58b9 100644
18 --- a/net-misc/vncsnapshot/vncsnapshot-1.2a.ebuild
19 +++ b/net-misc/vncsnapshot/vncsnapshot-1.2a.ebuild
20 @@ -41,8 +41,9 @@ src_prepare() {
21 }
22
23 src_compile() {
24 - # Note: We override CDEBUGFLAGS instead of CFLAGS because otherwise
25 - # we lose the INCLUDES in the makefile.
26 + # We override CDEBUGFLAGS instead of CFLAGS because otherwise
27 + # we lose the INCLUDES in the makefile. The same flags are used
28 + # for both.
29 # bug #295741
30 local args=(
31 AR="$(tc-getAR)"
32 @@ -56,7 +57,5 @@ src_compile() {
33
34 src_install() {
35 dobin vncsnapshot
36 -
37 - cp vncsnapshot.man1 vncsnapshot.1 || die
38 - doman vncsnapshot.1
39 + newman vncsnapshot.man1 vncsnapshot.1
40 }