forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Yixun Lan <[email protected]>
- Loading branch information
Showing
2 changed files
with
145 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST msmtp-1.8.26.tar.xz 419644 BLAKE2B 55373fef589bc0cee8ad6091b4988b622e302ef1720c423b306bbfaa4b44fe59a8c6d7aeb9f32e672873a3f5b0f8f777c1c6c7729e84b3324e5f6812ee9b69a7 SHA512 36fa4a571079b0e1141e645f2a565f3c7699e1899f6ece66e3539bed595473488bdf147ed6ff1bff103c6240e484b2c357122292d5eae65ac4c0f74215eb556c | ||
DIST msmtp-1.8.27.tar.xz 440000 BLAKE2B 4264d516cbd5126d4ed57c033221b322c1a9bc7af506b96083d988e8d278227c24718773227fc840acbe6e21329c8b2aee3b0f6744546a34aca094238f5a23fc SHA512 1d4cdc1f8942a194f202f89c44d1c1ae035b4f3cdda856427d29021d1b8e923bcee1067973e0dd73495540294b109b0deab52177d03f76d7a74c85ccfb56597d |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,144 @@ | ||
# Copyright 2004-2024 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
inherit fcaps | ||
|
||
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 ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos" | ||
IUSE="daemon doc keyring +gnutls idn +mta nls sasl ssl" | ||
|
||
# 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=" | ||
idn? ( net-dns/libidn2:= ) | ||
nls? ( virtual/libintl ) | ||
keyring? ( app-crypt/libsecret ) | ||
sasl? ( net-misc/gsasl[client] ) | ||
ssl? ( | ||
gnutls? ( net-libs/gnutls[idn?] ) | ||
!gnutls? ( dev-libs/libretls:= ) | ||
) | ||
" | ||
|
||
RDEPEND="${DEPEND} | ||
net-mail/mailbase | ||
daemon? ( | ||
acct-group/msmtpd | ||
acct-user/msmtpd | ||
) | ||
mta? ( | ||
!mail-mta/courier | ||
!mail-mta/esmtp | ||
!mail-mta/exim | ||
!mail-mta/netqmail | ||
!mail-mta/nullmailer | ||
!mail-mta/postfix | ||
!mail-mta/sendmail | ||
!mail-mta/opensmtpd | ||
!>=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 keyring libsecret) | ||
$(use_with idn libidn) | ||
$(use_with sasl libgsasl) | ||
$(use_with ssl tls $(usex gnutls gnutls libtls)) | ||
) | ||
econf "${myeconfargs[@]}" | ||
} | ||
|
||
src_compile() { | ||
default | ||
|
||
if use doc; then | ||
emake -C doc 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 | ||
|
||
for i in syntax ftdetect ftplugin; do | ||
insinto /usr/share/vim/vimfiles/$i | ||
doins scripts/vim/$i/msmtp.vim | ||
done | ||
|
||
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 | ||
} |