Gentoo Archives: gentoo-commits

From: Bernard Cafarelli <voyageur@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmdots/
Date: Mon, 24 Feb 2020 21:04:43
Message-Id: 1582578257.6c791c6916797f02353697a56acf4d2f8131c4f9.voyageur@gentoo
1 commit: 6c791c6916797f02353697a56acf4d2f8131c4f9
2 Author: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 24 21:04:08 2020 +0000
4 Commit: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 24 21:04:17 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c791c69
7
8 x11-plugins/wmdots: replace ":" as sed delimiter
9
10 Closes: https://bugs.gentoo.org/710714
11 Package-Manager: Portage-2.3.89, Repoman-2.3.20
12 Signed-off-by: Bernard Cafarelli <voyageur <AT> gentoo.org>
13
14 x11-plugins/wmdots/wmdots-0.2_beta-r1.ebuild | 10 +++++-----
15 1 file changed, 5 insertions(+), 5 deletions(-)
16
17 diff --git a/x11-plugins/wmdots/wmdots-0.2_beta-r1.ebuild b/x11-plugins/wmdots/wmdots-0.2_beta-r1.ebuild
18 index e38905e1329..5aaba6401e1 100644
19 --- a/x11-plugins/wmdots/wmdots-0.2_beta-r1.ebuild
20 +++ b/x11-plugins/wmdots/wmdots-0.2_beta-r1.ebuild
21 @@ -1,4 +1,4 @@
22 -# Copyright 1999-2018 Gentoo Authors
23 +# Copyright 1999-2020 Gentoo Authors
24 # Distributed under the terms of the GNU General Public License v2
25
26 EAPI=7
27 @@ -23,14 +23,14 @@ S="${WORKDIR}/${PN}"
28 src_prepare() {
29 default
30 eapply "${FILESDIR}"/${P}-stringh.patch
31 - sed -e "s:cc:$(tc-getCC):g" \
32 - -e "s:-g -O2:${CFLAGS}:g" -i Makefile || die
33 + sed -e "s|cc|$(tc-getCC)|g" \
34 + -e "s|-g -O2|${CFLAGS}|g" -i Makefile || die
35
36 #Fix compilation target
37 - sed -e "s:wmifs:wmdots:" -i Makefile || die
38 + sed -e "s|wmifs|wmdots|" -i Makefile || die
39
40 #Honour Gentoo LDFLAGS, see bug #336982
41 - sed -e "s:-o wmdots:\$(LDFLAGS) -o wmdots:" -i Makefile || die
42 + sed -e "s|-o wmdots|\$(LDFLAGS) -o wmdots|" -i Makefile || die
43 }
44
45 src_compile() {