Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 820077 | Differences between
and this patch

Collapse All | Expand All

(-)a/mail-mta/msmtp/msmtp-1.8.20.ebuild (-4 / +6 lines)
Lines 12-18 SRC_URI="https://marlam.de/msmtp/releases/${P}.tar.xz" Link Here
12
LICENSE="GPL-3"
12
LICENSE="GPL-3"
13
SLOT="0"
13
SLOT="0"
14
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
14
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
15
IUSE="daemon doc gnome-keyring idn +mta nls sasl ssl vim-syntax"
15
IUSE="daemon doc gnome-keyring gnutls idn +mta nls sasl ssl vim-syntax"
16
16
17
# fcaps.eclass unconditionally defines "filecaps" USE flag which we need for
17
# fcaps.eclass unconditionally defines "filecaps" USE flag which we need for
18
# USE="daemon" in order to set the caps we need.
18
# USE="daemon" in order to set the caps we need.
Lines 25-31 DEPEND=" Link Here
25
	idn? ( net-dns/libidn2:= )
25
	idn? ( net-dns/libidn2:= )
26
	nls? ( virtual/libintl )
26
	nls? ( virtual/libintl )
27
	sasl? ( virtual/gsasl )
27
	sasl? ( virtual/gsasl )
28
	ssl? ( net-libs/gnutls[idn?] )
28
	ssl? (
29
		gnutls? ( net-libs/gnutls[idn?] )
30
		!gnutls? ( dev-libs/libretls:= )
31
	)
29
"
32
"
30
33
31
RDEPEND="${DEPEND}
34
RDEPEND="${DEPEND}
Lines 74-80 src_configure() { Link Here
74
		$(use_with gnome-keyring libsecret)
77
		$(use_with gnome-keyring libsecret)
75
		$(use_with idn libidn)
78
		$(use_with idn libidn)
76
		$(use_with sasl libgsasl)
79
		$(use_with sasl libgsasl)
77
		$(use_with ssl tls gnutls)
80
		$(use_with ssl tls $(usex gnutls gnutls libtls))
78
	)
81
	)
79
	econf "${myeconfargs[@]}"
82
	econf "${myeconfargs[@]}"
80
}
83
}
81
- 

Return to bug 820077