Diff ssmtp-2.64_p11-r1 with a ssmtp-2.64_p12

/usr/portage/mail-mta/ssmtp/ssmtp-2.64_p12.ebuild 2025-02-03 17:39:34.118671523 +0300
5 5

  
6 6
MY_PATCHSET=4
7 7
WANT_AUTOMAKE=none
8
inherit autotools
8
inherit autotools flag-o-matic
9 9

  
10 10
DESCRIPTION="Extremely simple MTA to get mail off the system to a Mailhub"
11 11
HOMEPAGE="ftp://ftp.debian.org/debian/pool/main/s/ssmtp/"
......
18 18

  
19 19
LICENSE="GPL-2"
20 20
SLOT="0"
21
KEYWORDS="~alpha amd64 arm arm64 hppa ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
21
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
22 22
IUSE="+ssl gnutls +mta"
23 23
REQUIRED_USE="gnutls? ( ssl )"
24 24

  
......
47 47
	)
48 48
"
49 49

  
50
PATCHES=( "${FILESDIR}"/${P}-gcc14.patch ) # bug 879873, from Alpine
51

  
52 50
src_prepare() {
53 51
	drop_debian_patch() {
54 52
		rm "${WORKDIR}"/debian/patches/${1} || die
......
86 84
}
87 85

  
88 86
src_configure() {
87
	# bug #944143, bug #947207
88
	append-flags -std=gnu17
89

  
89 90
	local myeconfargs=(
90 91
		--sysconfdir="${EPREFIX}"/etc/ssmtp
91 92
		$(use_enable ssl)
Thank you!