Gentoo Archives: gentoo-commits

From: "Marcin Woźniak" <y0rune@×××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: mail-client/heirloom-mailx/
Date: Sun, 18 Apr 2021 06:44:40
Message-Id: 1618728188.a31b227e08533b24be26b476dd7994c2de6da713.yorune@gentoo
1 commit: a31b227e08533b24be26b476dd7994c2de6da713
2 Author: Marcin Woźniak <y0rune <AT> aol <DOT> com>
3 AuthorDate: Sun Apr 18 06:43:08 2021 +0000
4 Commit: Marcin Woźniak <y0rune <AT> aol <DOT> com>
5 CommitDate: Sun Apr 18 06:43:08 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a31b227e
7
8 mail-client/heirloom-mailx: Changed licence and fix problem with QA
9
10 Like in the bug I tried to add hide the error from QA.
11 I simply added LDFLAGS in the emake. I think it should be help.
12
13 EDIT:
14 I tried with src_configure but the mailx do not have configure file.
15
16 Bug: https://bugs.gentoo.org/782961
17 Closes: https://bugs.gentoo.org/782961
18 Signed-off-by: Marcin Woźniak <y0rune <AT> aol.com>
19
20 mail-client/heirloom-mailx/heirloom-mailx-12.5.ebuild | 7 ++++---
21 1 file changed, 4 insertions(+), 3 deletions(-)
22
23 diff --git a/mail-client/heirloom-mailx/heirloom-mailx-12.5.ebuild b/mail-client/heirloom-mailx/heirloom-mailx-12.5.ebuild
24 index fe87daf09..1fbbcf75e 100644
25 --- a/mail-client/heirloom-mailx/heirloom-mailx-12.5.ebuild
26 +++ b/mail-client/heirloom-mailx/heirloom-mailx-12.5.ebuild
27 @@ -1,4 +1,4 @@
28 -# Copyright 2020 Gentoo Authors
29 +# Copyright 2001-2021 Gentoo Authors
30 # Distributed under the terms of the GNU General Public License v2
31
32 EAPI=7
33 @@ -12,7 +12,8 @@ KEYWORDS="~amd64"
34 DEPEND="net-libs/liblockfile
35 dev-libs/libbsd
36 virtual/mta
37 - mail-client/mailx-support"
38 + mail-client/mailx-support
39 + dev-libs/openssl"
40
41 RDEPEND="${DEPEND}
42 !virtual/mailx
43 @@ -29,7 +30,7 @@ src_prepare() {
44
45 src_compile(){
46 sed 's@<openssl@<openssl-1.0/openssl@' -i openssl.c fio.c makeconfig
47 - emake LDFLAGS=${LDFLAGS} LDFLAGS+="-L /usr/lib/openssl-1.0/" SENDMAIL=/usr/sbin/sendmail
48 + emake LDFLAGS="${LDFLAGS}" LDFLAGS+="-L /usr/lib/openssl-1.0/" SENDMAIL=/usr/sbin/sendmail
49 }
50
51 src_install(){