From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3B9301382C5 for ; Sat, 17 Apr 2021 22:39:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 474E0E081A; Sat, 17 Apr 2021 22:39:39 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2BF07E081A for ; Sat, 17 Apr 2021 22:39:39 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5034233D7E3 for ; Sat, 17 Apr 2021 22:39:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 60F9B647 for ; Sat, 17 Apr 2021 22:39:36 +0000 (UTC) From: "Patrick McLean" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrick McLean" Message-ID: <1618699171.c8f4de8531b032b79b7ac7992c63fa0b796a8486.chutzpah@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/lowdown/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/lowdown/lowdown-0.8.4.ebuild X-VCS-Directories: app-text/lowdown/ X-VCS-Committer: chutzpah X-VCS-Committer-Name: Patrick McLean X-VCS-Revision: c8f4de8531b032b79b7ac7992c63fa0b796a8486 X-VCS-Branch: master Date: Sat, 17 Apr 2021 22:39:36 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 7b9e3229-36a8-4ed1-9323-2aa76f292915 X-Archives-Hash: f15b2bcdccf2843b7588a390de81d2b0 commit: c8f4de8531b032b79b7ac7992c63fa0b796a8486 Author: Patrick McLean gentoo org> AuthorDate: Sat Apr 17 22:39:11 2021 +0000 Commit: Patrick McLean gentoo org> CommitDate: Sat Apr 17 22:39:31 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8f4de85 app-text/lowdown-0.8.4: Respect LDFLAGS (bug #783393) Also don't directly call ar, and fix musl support. Closes: https://bugs.gentoo.org/783393 Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Patrick McLean gentoo.org> app-text/lowdown/lowdown-0.8.4.ebuild | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app-text/lowdown/lowdown-0.8.4.ebuild b/app-text/lowdown/lowdown-0.8.4.ebuild index 6e601e6125f..dd0f98fee37 100644 --- a/app-text/lowdown/lowdown-0.8.4.ebuild +++ b/app-text/lowdown/lowdown-0.8.4.ebuild @@ -28,6 +28,10 @@ src_configure() { CC="$(tc-getCC)" ./configure || die "./configure failed" } +src_compile() { + emake LDFLAGS="${LDFLAGS}" AR="$(tc-getAR)" $(usex elibc_musl UTF8_LOCALE=C.UTF-8 '') +} + src_test() { emake regress }