Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/x11-ssh-askpass/
Date: Thu, 15 Apr 2021 06:40:02
Message-Id: 1618468734.9d02b021fb62f75f7df091530f19b0582aa601af.juippis@gentoo
1 commit: 9d02b021fb62f75f7df091530f19b0582aa601af
2 Author: Ionen Wolkens <sudinave <AT> gmail <DOT> com>
3 AuthorDate: Wed Apr 14 11:12:52 2021 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 15 06:38:54 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d02b021
7
8 net-misc/x11-ssh-askpass: fix build with -native-symlinks
9
10 Closes: https://bugs.gentoo.org/725200
11 Signed-off-by: Ionen Wolkens <sudinave <AT> gmail.com>
12 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
13
14 net-misc/x11-ssh-askpass/x11-ssh-askpass-1.2.4.1-r2.ebuild | 8 ++++----
15 1 file changed, 4 insertions(+), 4 deletions(-)
16
17 diff --git a/net-misc/x11-ssh-askpass/x11-ssh-askpass-1.2.4.1-r2.ebuild b/net-misc/x11-ssh-askpass/x11-ssh-askpass-1.2.4.1-r2.ebuild
18 index 65c9a669194..4d294cbd507 100644
19 --- a/net-misc/x11-ssh-askpass/x11-ssh-askpass-1.2.4.1-r2.ebuild
20 +++ b/net-misc/x11-ssh-askpass/x11-ssh-askpass-1.2.4.1-r2.ebuild
21 @@ -1,4 +1,4 @@
22 -# Copyright 1999-2020 Gentoo Authors
23 +# Copyright 1999-2021 Gentoo Authors
24 # Distributed under the terms of the GNU General Public License v2
25
26 EAPI=7
27 @@ -21,16 +21,16 @@ RDEPEND="virtual/ssh
28 x11-libs/libXt"
29 DEPEND="${RDEPEND}"
30 BDEPEND="app-text/rman
31 - x11-misc/imake"
32 + >=x11-misc/imake-1.0.8-r1"
33
34 src_configure() {
35 econf --libexecdir=/usr/"$(get_libdir)"/misc \
36 --disable-installing-app-defaults
37 - xmkmf || die "xmkmf failed"
38 + CC="$(tc-getBUILD_CC)" LD="$(tc-getLD)" \
39 + IMAKECPP="${IMAKECPP:-$(tc-getCPP)}" xmkmf -a || die "xmkmf failed"
40 }
41
42 src_compile() {
43 - emake includes
44 emake CC="$(tc-getCC)" CDEBUGFLAGS="${CFLAGS}"
45 }