Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/clipnotify/
Date: Fri, 03 Dec 2021 13:02:36
Message-Id: 1638536546.2e494ac58f90e23500d7b3f11b126c2ac483ec1d.juippis@gentoo
1 commit: 2e494ac58f90e23500d7b3f11b126c2ac483ec1d
2 Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
3 AuthorDate: Fri Dec 3 12:56:45 2021 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Fri Dec 3 13:02:26 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e494ac5
7
8 x11-misc/clipnotify: limit MAKEOPTS to -j1
9
10 - there's only one .c file to build but it only seems to work with
11 -j1 for me.
12
13 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
14
15 x11-misc/clipnotify/clipnotify-1.0.2.ebuild | 6 ++++++
16 1 file changed, 6 insertions(+)
17
18 diff --git a/x11-misc/clipnotify/clipnotify-1.0.2.ebuild b/x11-misc/clipnotify/clipnotify-1.0.2.ebuild
19 index 4a8c1f9e890c..51099e860d15 100644
20 --- a/x11-misc/clipnotify/clipnotify-1.0.2.ebuild
21 +++ b/x11-misc/clipnotify/clipnotify-1.0.2.ebuild
22 @@ -18,6 +18,12 @@ DEPEND="
23 "
24 RDEPEND="${DEPEND}"
25
26 +src_compile() {
27 + # Running into parallel jobs issues with -j16 on v1.0.2. There's only one .c file
28 + # to compile. Go figure...
29 + emake -j1
30 +}
31 +
32 src_install() {
33 dobin clipnotify
34 }