Gentoo Archives: gentoo-commits

From: Patrick McLean <chutzpah@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/lowdown/
Date: Sat, 17 Apr 2021 22:39:41
Message-Id: 1618699171.c8f4de8531b032b79b7ac7992c63fa0b796a8486.chutzpah@gentoo
1 commit: c8f4de8531b032b79b7ac7992c63fa0b796a8486
2 Author: Patrick McLean <chutzpah <AT> gentoo <DOT> org>
3 AuthorDate: Sat Apr 17 22:39:11 2021 +0000
4 Commit: Patrick McLean <chutzpah <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 17 22:39:31 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8f4de85
7
8 app-text/lowdown-0.8.4: Respect LDFLAGS (bug #783393)
9
10 Also don't directly call ar, and fix musl support.
11
12 Closes: https://bugs.gentoo.org/783393
13 Package-Manager: Portage-3.0.18, Repoman-3.0.3
14 Signed-off-by: Patrick McLean <chutzpah <AT> gentoo.org>
15
16 app-text/lowdown/lowdown-0.8.4.ebuild | 4 ++++
17 1 file changed, 4 insertions(+)
18
19 diff --git a/app-text/lowdown/lowdown-0.8.4.ebuild b/app-text/lowdown/lowdown-0.8.4.ebuild
20 index 6e601e6125f..dd0f98fee37 100644
21 --- a/app-text/lowdown/lowdown-0.8.4.ebuild
22 +++ b/app-text/lowdown/lowdown-0.8.4.ebuild
23 @@ -28,6 +28,10 @@ src_configure() {
24 CC="$(tc-getCC)" ./configure || die "./configure failed"
25 }
26
27 +src_compile() {
28 + emake LDFLAGS="${LDFLAGS}" AR="$(tc-getAR)" $(usex elibc_musl UTF8_LOCALE=C.UTF-8 '')
29 +}
30 +
31 src_test() {
32 emake regress
33 }