Gentoo Archives: gentoo-commits

From: Anna Vyalkova <cyber+gentoo@×××××.in>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: net-irc/pounce/
Date: Mon, 30 May 2022 17:47:36
Message-Id: 1653932812.03e01169d7e51b431ac07c169dacdd0e561230a0.cybertailor@gentoo
1 commit: 03e01169d7e51b431ac07c169dacdd0e561230a0
2 Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
3 AuthorDate: Mon May 30 15:18:43 2022 +0000
4 Commit: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
5 CommitDate: Mon May 30 17:46:52 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=03e01169
7
8 net-irc/pounce: edo
9
10 Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
11
12 net-irc/pounce/pounce-3.0.ebuild | 12 ++++++------
13 1 file changed, 6 insertions(+), 6 deletions(-)
14
15 diff --git a/net-irc/pounce/pounce-3.0.ebuild b/net-irc/pounce/pounce-3.0.ebuild
16 index 94675d8f1..1bc2ada8b 100644
17 --- a/net-irc/pounce/pounce-3.0.ebuild
18 +++ b/net-irc/pounce/pounce-3.0.ebuild
19 @@ -3,7 +3,7 @@
20
21 EAPI=8
22
23 -inherit toolchain-funcs
24 +inherit edo toolchain-funcs
25
26 DESCRIPTION="Multi-client, TLS-only IRC bouncer"
27 HOMEPAGE="https://git.causal.agency/pounce/about/"
28 @@ -30,25 +30,25 @@ BDEPEND="
29 DOCS=( {QUIRKS,README}.7 )
30
31 src_configure() {
32 + tc-export CC
33 +
34 local confargs=(
35 --prefix="${EPREFIX}/usr"
36 --mandir="${EPREFIX}/usr/share/man"
37 )
38
39 # note: not an autoconf configure script
40 - ./configure "${confargs[@]}" || die
41 + edo ./configure "${confargs[@]}"
42
43 pushd extra/notify >/dev/null || die
44 - ./configure "${confargs[@]}" || die
45 + edo ./configure "${confargs[@]}"
46 popd >/dev/null || die
47
48 if use palaver; then
49 pushd extra/palaver >/dev/null || die
50 - ./configure "${confargs[@]}" || die
51 + edo ./configure "${confargs[@]}"
52 popd >/dev/null || die
53 fi
54 -
55 - tc-export CC
56 }
57
58 src_compile() {