Gentoo Archives: gentoo-commits

From: Florian Schmaus <flow@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-im/profanity/
Date: Tue, 03 May 2022 07:04:18
Message-Id: 1651561421.6e6ccb3ddae3a06b3b6e9adb7248abbe9712f0e0.flow@gentoo
1 commit: 6e6ccb3ddae3a06b3b6e9adb7248abbe9712f0e0
2 Author: Florian Schmaus <flow <AT> gentoo <DOT> org>
3 AuthorDate: Tue May 3 07:03:41 2022 +0000
4 Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
5 CommitDate: Tue May 3 07:03:41 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e6ccb3d
7
8 net-im/profanity: fix use_with, delete .la files, respect CFLAGS
9
10 Closes: https://bugs.gentoo.org/842300
11 Closes: https://bugs.gentoo.org/842303
12 Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>
13
14 .../{profanity-0.12.1.ebuild => profanity-0.12.1-r1.ebuild} | 11 ++++++++++-
15 1 file changed, 10 insertions(+), 1 deletion(-)
16
17 diff --git a/net-im/profanity/profanity-0.12.1.ebuild b/net-im/profanity/profanity-0.12.1-r1.ebuild
18 similarity index 88%
19 rename from net-im/profanity/profanity-0.12.1.ebuild
20 rename to net-im/profanity/profanity-0.12.1-r1.ebuild
21 index 17175e193d4e..4dbaba2f82a7 100644
22 --- a/net-im/profanity/profanity-0.12.1.ebuild
23 +++ b/net-im/profanity/profanity-0.12.1-r1.ebuild
24 @@ -54,5 +54,14 @@ src_configure() {
25 $(use_enable omemo) \
26 $(use_enable otr) \
27 $(use_enable gpg pgp) \
28 - $(with_enable xscreensaver)
29 + $(use_with xscreensaver)
30 +}
31 +
32 +src_compile() {
33 + emake CFLAGS="${CFLAGS}"
34 +}
35 +
36 +src_install() {
37 + default
38 + find "${ED}" -type f -name '*.la' -delete || die
39 }