Gentoo Archives: gentoo-commits

From: Thomas Beierlein <tomjbe@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-electronics/puff/
Date: Tue, 29 Jun 2021 17:12:54
Message-Id: 1624986698.c13c78180b2338d95ffbbf776ee4f3c3702170d5.tomjbe@gentoo
1 commit: c13c78180b2338d95ffbbf776ee4f3c3702170d5
2 Author: Thomas Beierlein <tomjbe <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jun 29 17:11:38 2021 +0000
4 Commit: Thomas Beierlein <tomjbe <AT> gentoo <DOT> org>
5 CommitDate: Tue Jun 29 17:11:38 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c13c7818
7
8 sci-electronics/puff: Adapt to changes in Free Pascal compiler
9
10 Closes: https://bugs.gentoo.org/798264
11 Package-Manager: Portage-3.0.20, Repoman-3.0.3
12 Signed-off-by: Thomas Beierlein <tomjbe <AT> gentoo.org>
13
14 sci-electronics/puff/puff-20100127-r1.ebuild | 7 ++++---
15 1 file changed, 4 insertions(+), 3 deletions(-)
16
17 diff --git a/sci-electronics/puff/puff-20100127-r1.ebuild b/sci-electronics/puff/puff-20100127-r1.ebuild
18 index 0c27ca623e4..c13ddfb1131 100644
19 --- a/sci-electronics/puff/puff-20100127-r1.ebuild
20 +++ b/sci-electronics/puff/puff-20100127-r1.ebuild
21 @@ -1,4 +1,4 @@
22 -# Copyright 1999-2019 Gentoo Authors
23 +# Copyright 1999-2021 Gentoo Authors
24 # Distributed under the terms of the GNU General Public License v2
25
26 EAPI=7
27 @@ -20,9 +20,10 @@ DEPEND="${RDEPEND}
28 src_prepare() {
29 default
30 # fix lib path for X11 and dont ignore LDFLAGS
31 - sed -i -e "s#lib\\\/#$(get_libdir)\\\/#" \
32 + sed -i -e "s#lib\\\/#$(get_libdir)\\\/#" \
33 -e 's/CFLAGS/#CFLAGS/' \
34 - -e 's/link.res pu/link.res $(LDFLAGS) pu/' Makefile || die
35 + -e 's/link.res/.res/g' \
36 + -e 's/.res pu/.res $(LDFLAGS) pu/' Makefile || die
37 }
38
39 src_compile() {