summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2021-03-16 19:33:36 +0000
committerSam James <sam@gentoo.org>2021-03-16 19:55:58 +0000
commitaa39424d619270c0169a4bebaafe71a4227d40d8 (patch)
tree53635188d8de351a0f7d73c2991e17b1bba61eee /net-mail
parentnet-mail/imapsync: drop 1.882 (diff)
downloadgentoo-aa39424d619270c0169a4bebaafe71a4227d40d8.tar.gz
gentoo-aa39424d619270c0169a4bebaafe71a4227d40d8.tar.bz2
gentoo-aa39424d619270c0169a4bebaafe71a4227d40d8.zip
net-mail/mpop: drop 1.4.4
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-mail')
-rw-r--r--net-mail/mpop/Manifest1
-rw-r--r--net-mail/mpop/mpop-1.4.4.ebuild51
2 files changed, 0 insertions, 52 deletions
diff --git a/net-mail/mpop/Manifest b/net-mail/mpop/Manifest
index 0b2784b39187..0d25caf065a9 100644
--- a/net-mail/mpop/Manifest
+++ b/net-mail/mpop/Manifest
@@ -1,2 +1 @@
-DIST mpop-1.4.4.tar.xz 319372 BLAKE2B acf5bdb62479126ae212bb008878872d16efba1eb9a077bf4697ba22ff512977fcd5affad090bc952fb01cf07a607a4dce91b873128c43f087c34dca6d6bae81 SHA512 1ed89108d35d7bbd6bcbd6de956f51cfcfaefd808f6aa7135b168d789f8cbe7070be9db676d1222dce5b6fe8b6692616d6b7adec9c23df11ac3de112897924da
DIST mpop-1.4.7.tar.xz 322488 BLAKE2B ea73e84b5ed3b5aad7ef91ceb510187c3f2d42976329a6a53511329a84713edc056ca6db35b1de2c9bff8b417e2710e598c472e78acbdc499dd73b24c46dfb47 SHA512 ce0ac899fd2af1d50ef221c88282c12263c5862b9ff1f6341a8551c3fe6b69272772599a2040a0f553a776245514c55b8102ca8cf291b411e5127a3f39897832
diff --git a/net-mail/mpop/mpop-1.4.4.ebuild b/net-mail/mpop/mpop-1.4.4.ebuild
deleted file mode 100644
index df58c65aef22..000000000000
--- a/net-mail/mpop/mpop-1.4.4.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="A 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 libressl gnome-keyring nls sasl ssl vim-syntax"
-
-RDEPEND="
- idn? ( net-dns/libidn2 )
- gnome-keyring? ( app-crypt/libsecret )
- nls? ( virtual/libintl )
- sasl? ( virtual/gsasl )
- ssl? (
- gnutls? ( net-libs/gnutls:0=[idn?] )
- !gnutls? (
- !libressl? ( dev-libs/openssl:0= )
- libressl? ( dev-libs/libressl:0= )
- )
- )"
-DEPEND="${RDEPEND}
- nls? ( sys-devel/gettext )
- virtual/pkgconfig"
-
-REQUIRED_USE="gnutls? ( ssl )"
-
-DOCS="AUTHORS ChangeLog NEWS NOTES README THANKS"
-
-src_configure() {
- econf \
- $(use_enable nls) \
- $(use_with ssl tls $(usex gnutls "gnutls" "openssl")) \
- $(use_with sasl libgsasl) \
- $(use_with idn libidn) \
- $(use_with gnome-keyring libsecret)
-}
-
-src_install() {
- default
-
- if use vim-syntax ; then
- insinto /usr/share/vim/vimfiles/syntax
- doins scripts/vim/mpop.vim
- fi
-}