gentoo-ebuilds/net-mail/mpop/mpop-1.4.21.ebuild
Sam James dd4078fcf2
net-mail/mpop: add 1.4.21
Closes: https://bugs.gentoo.org/733206
Closes: https://bugs.gentoo.org/937091
Signed-off-by: Sam James <sam@gentoo.org>
2025-03-31 22:09:55 +01:00

53 lines
1.1 KiB
Bash

# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="Small, fast, and portable POP3 client"
HOMEPAGE="https://marlam.de/mpop/"
SRC_URI="https://marlam.de/mpop/releases/${P}.tar.xz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
IUSE="gnutls idn keyring nls sasl ssl"
REQUIRED_USE="gnutls? ( ssl )"
RDEPEND="
idn? ( net-dns/libidn2 )
keyring? ( app-crypt/libsecret )
nls? ( virtual/libintl )
sasl? ( >=net-misc/gsasl-2.1[client] )
ssl? (
gnutls? ( >=net-libs/gnutls-3.7.2:=[idn?] )
!gnutls? (
dev-libs/openssl:=
)
)
"
DEPEND="${RDEPEND}"
BDEPEND="
nls? ( sys-devel/gettext )
virtual/pkgconfig
"
DOCS=( AUTHORS ChangeLog NEWS NOTES README THANKS )
src_configure() {
local myeconfargs=(
$(use_enable nls)
$(use_with ssl tls $(usex gnutls "gnutls" "openssl"))
$(use_with sasl libgsasl)
$(use_with idn libidn)
$(use_with keyring libsecret)
)
econf "${myeconfargs[@]}"
}
src_install() {
default
insinto /usr/share/vim/vimfiles/syntax
doins scripts/vim/mpop.vim
}