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/wmpop3lb/
Date: Mon, 24 Feb 2020 21:04:44
Message-Id: 1582578257.7ea98dff9ab39e6b129977fad9d0f5b7dc689809.voyageur@gentoo
1 commit: 7ea98dff9ab39e6b129977fad9d0f5b7dc689809
2 Author: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 24 21:02:53 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=7ea98dff
7
8 x11-plugins/wmpop3lb: replace ":" as sed delimiter
9
10 Closes: https://bugs.gentoo.org/710494
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/wmpop3lb/wmpop3lb-2.4.2-r3.ebuild | 6 +++---
15 1 file changed, 3 insertions(+), 3 deletions(-)
16
17 diff --git a/x11-plugins/wmpop3lb/wmpop3lb-2.4.2-r3.ebuild b/x11-plugins/wmpop3lb/wmpop3lb-2.4.2-r3.ebuild
18 index 05a951236c0..8b443af7ff2 100644
19 --- a/x11-plugins/wmpop3lb/wmpop3lb-2.4.2-r3.ebuild
20 +++ b/x11-plugins/wmpop3lb/wmpop3lb-2.4.2-r3.ebuild
21 @@ -25,13 +25,13 @@ PATCHES=( "${FILESDIR}"/${P}-fix-RECV-and-try-STAT-if-LAST-wont-work.patch
22
23 src_prepare() {
24 #Honour Gentoo CFLAGS
25 - sed -i -e "s:-g2 -D_DEBUG:${CFLAGS}:" "wmpop3/Makefile" || die
26 + sed -i -e "s|-g2 -D_DEBUG|${CFLAGS}|" "wmpop3/Makefile" || die
27
28 #De-hardcode compiler
29 - sed -i -e "s:cc:\$(CC):g" "wmpop3/Makefile" || die
30 + sed -i -e "s|cc|\$(CC)|g" "wmpop3/Makefile" || die
31
32 #Honour Gentoo LDFLAGS - bug #335986
33 - sed -i -e "s:\$(FLAGS) -o wmpop3lb:\$(LDFLAGS) -o wmpop3lb:" "wmpop3/Makefile" || die
34 + sed -i -e "s|\$(FLAGS) -o wmpop3lb|\$(LDFLAGS) -o wmpop3lb|" "wmpop3/Makefile" || die
35 default
36 }