mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-23 16:49:10 -07:00
mail-mta/msmtp: Removed old
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
This commit is contained in:
@@ -1,4 +1,3 @@
|
||||
DIST msmtp-1.8.12.tar.xz 364712 BLAKE2B 94707d18d9be71e8e51413cdcc55887fc15bd7d0f059d54cfcf4e07b5589febbb9ed4025206e3b82d1b12edad45086d3ad8a47fb3d37488a49e46984d7b7bc32 SHA512 8620e5e9a88a49769cfdbf2aa83842b230b3fd1584641d17129cb404e3c9696edd5a28237ef46a115ca82d2a846c0f653eaa837ba6f8512f8b57493d64451df8
|
||||
DIST msmtp-1.8.14.tar.xz 363988 BLAKE2B 46953512002365f8e80e1bdf80f8513845bae62bcfcbe8334642b7a51f2d7da7719e3c1812d43e2a887162d45a1b29893744f452f6ac7dc205fd72a578eec39f SHA512 fa274849082553b14aef922c43b84fa6226a26638747ed3ef6baae9d97ff753b24f5eca055426c2e0355df81b2458f524d940faf2a7db771d80fb027e9f45e8b
|
||||
DIST msmtp-1.8.15.tar.xz 370736 BLAKE2B 08673535603a7e768b11dea9d1b6a6e00ef9e6948c891572d39b0a8ba1eb1413d1ab71ff877cba1427ee58c25c87b817b4f20f3aad207a8f0a785306fcecbd8e SHA512 66c722f65590785f005631f0edb46f427cc4d9028c71ffbb1fb4eaa8d8fdacaadbcf24f81edc41e464e156b2beb65ecd1166b3d4aad4630ccd9fcaaa2e72e2a6
|
||||
DIST msmtp-1.8.16.tar.xz 375372 BLAKE2B 4567c323bf2f53fa878ed315dc4a2c524918de22305d2034be476373409bc61a9c841f0b9c6075e06e47eceb816ea24e9d6cb71c2bd94d9ba6738ae36ccb09b7 SHA512 5e7e39927007fe8e1763b13a83f44f6456e8e9efade8e1c3148f34d5c2b5aff51b1e4519337628776e6bce91066de9f145c7c2957927cadb0962a25452a47247
|
||||
|
||||
@@ -1,145 +0,0 @@
|
||||
# Copyright 2004-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit fcaps multilib
|
||||
|
||||
DESCRIPTION="An SMTP client and SMTP plugin for mail user agents such as Mutt"
|
||||
HOMEPAGE="https://marlam.de/msmtp/"
|
||||
SRC_URI="https://marlam.de/msmtp/releases/${P}.tar.xz"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
|
||||
IUSE="daemon doc gnome-keyring idn +mta nls sasl ssl vim-syntax"
|
||||
|
||||
# fcaps.eclass unconditionally defines "filecaps" USE flag which we need for
|
||||
# USE="daemon" in order to set the caps we need.
|
||||
REQUIRED_USE="daemon? ( filecaps )"
|
||||
|
||||
# Upstream discourages usage of openssl. See also
|
||||
# https://marlam.de/msmtp/news/openssl-discouraged/
|
||||
DEPEND="
|
||||
gnome-keyring? ( app-crypt/libsecret )
|
||||
idn? ( net-dns/libidn2:= )
|
||||
nls? ( virtual/libintl )
|
||||
sasl? ( virtual/gsasl )
|
||||
ssl? ( net-libs/gnutls[idn?] )
|
||||
"
|
||||
|
||||
RDEPEND="${DEPEND}
|
||||
net-mail/mailbase
|
||||
daemon? (
|
||||
acct-group/msmtpd
|
||||
acct-user/msmtpd
|
||||
)
|
||||
mta? (
|
||||
!mail-mta/courier
|
||||
!mail-mta/esmtp
|
||||
!mail-mta/exim
|
||||
!mail-mta/mini-qmail
|
||||
!mail-mta/netqmail
|
||||
!mail-mta/nullmailer
|
||||
!mail-mta/postfix
|
||||
!mail-mta/qmail-ldap
|
||||
!mail-mta/sendmail
|
||||
!mail-mta/opensmtpd
|
||||
!<mail-mta/ssmtp-2.64-r2
|
||||
!>=mail-mta/ssmtp-2.64-r2[mta]
|
||||
)
|
||||
"
|
||||
|
||||
BDEPEND="
|
||||
doc? ( virtual/texi2dvi )
|
||||
nls? ( sys-devel/gettext )
|
||||
virtual/pkgconfig
|
||||
"
|
||||
|
||||
DOCS="AUTHORS ChangeLog NEWS README THANKS doc/msmtprc*"
|
||||
|
||||
src_prepare() {
|
||||
# Use default Gentoo location for mail aliases
|
||||
sed 's:/etc/aliases:/etc/mail/aliases:' \
|
||||
-i scripts/find_alias/find_alias_for_msmtp.sh || die
|
||||
|
||||
default
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
local myeconfargs=(
|
||||
--disable-gai-idn
|
||||
$(use_enable nls)
|
||||
$(use_with daemon msmtpd)
|
||||
$(use_with gnome-keyring libsecret)
|
||||
$(use_with idn libidn)
|
||||
$(use_with sasl libgsasl)
|
||||
$(use_with ssl tls gnutls)
|
||||
)
|
||||
econf "${myeconfargs[@]}"
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
default
|
||||
|
||||
if use doc ; then
|
||||
cd doc || die
|
||||
emake html pdf
|
||||
fi
|
||||
}
|
||||
|
||||
src_install() {
|
||||
default
|
||||
|
||||
if use daemon ; then
|
||||
fcaps CAP_NET_BIND_SERVICE usr/bin/msmtpd
|
||||
newinitd "${FILESDIR}"/msmtpd.init msmtpd
|
||||
newconfd "${FILESDIR}"/msmtpd.confd msmtpd
|
||||
fi
|
||||
|
||||
if use doc ; then
|
||||
dodoc doc/msmtp.{html,pdf}
|
||||
fi
|
||||
|
||||
if use mta ; then
|
||||
dosym ../bin/msmtp /usr/sbin/sendmail
|
||||
dosym ../bin/msmtp /usr/$(get_libdir)/sendmail
|
||||
fi
|
||||
|
||||
if use vim-syntax ; then
|
||||
insinto /usr/share/vim/vimfiles/syntax
|
||||
doins scripts/vim/msmtp.vim
|
||||
fi
|
||||
|
||||
insinto /etc
|
||||
newins doc/msmtprc-system.example msmtprc
|
||||
|
||||
src_install_contrib find_alias find_alias_for_msmtp.sh
|
||||
src_install_contrib msmtpqueue "*.sh" "README ChangeLog"
|
||||
src_install_contrib msmtpq "msmtpq msmtp-queue" README.msmtpq
|
||||
src_install_contrib set_sendmail set_sendmail.sh set_sendmail.conf
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
if [[ -z ${REPLACING_VERSIONS} ]]; then
|
||||
einfo "Please edit ${EROOT}/etc/msmtprc before first use."
|
||||
einfo "In addition, per user configuration files can be placed"
|
||||
einfo "as '~/.msmtprc'. See the msmtprc-user.example file under"
|
||||
einfo "/usr/share/doc/${PF}/ for an example."
|
||||
fi
|
||||
}
|
||||
|
||||
src_install_contrib() {
|
||||
subdir="$1"
|
||||
bins="$2"
|
||||
docs="$3"
|
||||
local dir=/usr/share/${PN}/${subdir}
|
||||
insinto ${dir}
|
||||
exeinto ${dir}
|
||||
for i in ${bins} ; do
|
||||
doexe scripts/${subdir}/${i}
|
||||
done
|
||||
for i in ${docs} ; do
|
||||
newdoc scripts/${subdir}/${i} ${subdir}.${i}
|
||||
done
|
||||
}
|
||||
Reference in New Issue
Block a user