projects
/
gentoo.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ce87dd5
)
net-mail/notmuch: correct gpgme detection on Solaris
author
Fabian Groffen
<grobian@gentoo.org>
Sat, 31 Aug 2019 13:12:31 +0000
(15:12 +0200)
committer
Fabian Groffen
<grobian@gentoo.org>
Sat, 31 Aug 2019 13:12:48 +0000
(15:12 +0200)
Bug: https://bugs.gentoo.org/692098
Package-Manager: Portage-2.3.69, Repoman-2.3.16
Signed-off-by: Fabian Groffen <grobian@gentoo.org>
net-mail/notmuch/notmuch-0.29.1.ebuild
patch
|
blob
|
history
diff --git
a/net-mail/notmuch/notmuch-0.29.1.ebuild
b/net-mail/notmuch/notmuch-0.29.1.ebuild
index ffa74708369a6f7a076ca620d8c06caec5422943..4984cf17d69a9392fa4653c13309ee364dac81a0 100644
(file)
--- 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() {