Сравнение alpine-2.26-r2 с alpine-2.26-r3
/usr/portage/mail-client/alpine/alpine-2.26-r3.ebuild 2023-10-09 14:52:31.572368403 +0300 | ||
---|---|---|
3 | 3 | |
4 | 4 |
EAPI=8 |
5 | 5 | |
6 |
inherit autotools optfeature toolchain-funcs |
|
6 |
inherit autotools flag-o-matic optfeature toolchain-funcs |
|
7 | 7 | |
8 | 8 |
DESCRIPTION="An easy to use text-based based mail and news client" |
9 | 9 |
HOMEPAGE="https://alpineapp.email/ https://repo.or.cz/alpine.git/" |
... | ... | |
67 | 67 |
--with-ssl-certs-dir="${EPREFIX}"/etc/ssl/certs |
68 | 68 |
) |
69 | 69 |
fi |
70 | ||
71 |
# problems with strict prototypes, not easily patched #870766 |
|
72 |
append-cflags -Wno-error=strict-prototypes |
|
73 | ||
70 | 74 |
econf "${myconf[@]}" |
71 | 75 |
} |
72 | 76 | |
73 | 77 |
src_compile() { |
74 |
emake -j1 AR="$(tc-getAR)" |
|
78 |
# the bundled c-client lib stumbles with both -j>1 and --shuffle #888709 |
|
79 |
emake -j1 --shuffle=none AR="$(tc-getAR)" c-client |
|
80 |
emake AR="$(tc-getAR)" |
|
75 | 81 |
} |
76 | 82 | |
77 | 83 |
src_install() { |