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 C76CB138334 for ; Sat, 31 Aug 2019 13:13:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B82C6E08A2; Sat, 31 Aug 2019 13:13:03 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 98799E08A2 for ; Sat, 31 Aug 2019 13:13:03 +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 5358134A775 for ; Sat, 31 Aug 2019 13:13:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 59BC44D3 for ; Sat, 31 Aug 2019 13:13:00 +0000 (UTC) From: "Fabian Groffen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Fabian Groffen" Message-ID: <1567257168.c254be0749ca0792ec1c68417bd59ff8f725878a.grobian@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-mail/notmuch/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-mail/notmuch/notmuch-0.29.1.ebuild X-VCS-Directories: net-mail/notmuch/ X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: c254be0749ca0792ec1c68417bd59ff8f725878a X-VCS-Branch: master Date: Sat, 31 Aug 2019 13:13:00 +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: 1e4a734a-ff32-466e-802d-f0424abd2ebf X-Archives-Hash: 232bfda35c42aec702e4a1b58fbbb53b commit: c254be0749ca0792ec1c68417bd59ff8f725878a Author: Fabian Groffen gentoo org> AuthorDate: Sat Aug 31 13:12:31 2019 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Sat Aug 31 13:12:48 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c254be07 net-mail/notmuch: correct gpgme detection on Solaris Bug: https://bugs.gentoo.org/692098 Package-Manager: Portage-2.3.69, Repoman-2.3.16 Signed-off-by: Fabian Groffen gentoo.org> net-mail/notmuch/notmuch-0.29.1.ebuild | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/net-mail/notmuch/notmuch-0.29.1.ebuild b/net-mail/notmuch/notmuch-0.29.1.ebuild index ffa74708369..4984cf17d69 100644 --- a/net-mail/notmuch/notmuch-0.29.1.ebuild +++ b/net-mail/notmuch/notmuch-0.29.1.ebuild @@ -131,7 +131,14 @@ src_prepare() { append-cxxflags -g fi - [[ ${CHOST} == *-solaris* ]] && append-ldflags -lnsl -lsocket + if [[ ${CHOST} == *-solaris* ]] ; then + append-ldflags -lnsl -lsocket # non-autoconf configure + # disable gpgme test using too old gpg-key + sed -i \ + -e '/GNUPGHOME=/d' \ + -e '/SESSION_KEY =/c|| false ;' \ + configure || die + fi } src_configure() {