diff options
author | Brian Evans <grknight@gentoo.org> | 2019-03-21 13:23:09 -0400 |
---|---|---|
committer | Brian Evans <grknight@gentoo.org> | 2019-03-21 13:23:09 -0400 |
commit | 64b9901c0f3ed4dae25cdf6655b6c7a1cecd85f0 (patch) | |
tree | 1dfe8a1d4fc7b93d2f1de7c7612ab5cabebe370e /mail-client/s-nail | |
parent | sys-cluster/ceph: libressl support (diff) | |
download | gentoo-64b9901c0f3ed4dae25cdf6655b6c7a1cecd85f0.tar.gz gentoo-64b9901c0f3ed4dae25cdf6655b6c7a1cecd85f0.tar.bz2 gentoo-64b9901c0f3ed4dae25cdf6655b6c7a1cecd85f0.zip |
mail-client/s-nail: New package. Enhanced fork of mail-client/nail
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Brian Evans <grknight@gentoo.org>
Diffstat (limited to 'mail-client/s-nail')
-rw-r--r-- | mail-client/s-nail/Manifest | 1 | ||||
-rw-r--r-- | mail-client/s-nail/metadata.xml | 23 | ||||
-rw-r--r-- | mail-client/s-nail/s-nail-14.9.13.ebuild | 91 |
3 files changed, 115 insertions, 0 deletions
diff --git a/mail-client/s-nail/Manifest b/mail-client/s-nail/Manifest new file mode 100644 index 000000000000..1a48213f1107 --- /dev/null +++ b/mail-client/s-nail/Manifest @@ -0,0 +1 @@ +DIST s-nail-14.9.13.tar.xz 734416 BLAKE2B b23de9c32357d5b88ecb723dc875d3366b2b4c57dd654a4f2422e8bb81b781a76568eb0955990d4166f034bf40459fa5d2992da6e7f2b403a641a4d4c0c1e200 SHA512 6467846fab5752c708886ba7a66cd2038effc0cf8d72e2feb670283cf1d5436c27037087eeaa201c074964476ff0c213cffe74169fb03089ebf964fcc766e6ea diff --git a/mail-client/s-nail/metadata.xml b/mail-client/s-nail/metadata.xml new file mode 100644 index 000000000000..6fa99b2c089c --- /dev/null +++ b/mail-client/s-nail/metadata.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>grknight@gentoo.org</email> + <name>Brian Evans</name> + </maintainer> + <use> + <flag name="net"> + Enable support for network protocols (POP, IMAP and SMTP). If you + only need to send mail with the local Transport Agent, disabling + this will get you support for only /usr/sbin/sendmail call. + </flag> + <flag name="ssl"> + If network is enabled, this adds support for S/MIME and + SSL/TLS-powered protocols through <pkg>dev-libs/openssl</pkg>. + </flag> + <flag name="kerberos"> + If network is enabled, this adds support for GSSAPI login on IMAP + through <pkg>virtual/krb5</pkg>. + </flag> + </use> +</pkgmetadata> diff --git a/mail-client/s-nail/s-nail-14.9.13.ebuild b/mail-client/s-nail/s-nail-14.9.13.ebuild new file mode 100644 index 000000000000..8d4581a9f0d8 --- /dev/null +++ b/mail-client/s-nail/s-nail-14.9.13.ebuild @@ -0,0 +1,91 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit toolchain-funcs + +HOMEPAGE="https://www.sdaoden.eu/code.html" +DESCRIPTION="Enhanced mailx-compatible mail client based on Hierloom mailx (nail)" +LICENSE="BSD" + +SRC_URI="https://ftp.sdaoden.eu/${P}.tar.xz" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="idn kerberos libressl net ssl" + +RDEPEND=" + sys-libs/ncurses:0= + virtual/libiconv + idn? ( net-dns/libidn2 ) + net? ( + ssl? ( + !libressl? ( dev-libs/openssl:0 ) + libressl? ( dev-libs/libressl ) + ) + kerberos? ( virtual/krb5 ) + ) + !mail-client/mailx + !net-mail/mailutils + !mail-client/nail +" +DEPEND="${RDEPEND}" + +src_configure() { + local confopts=( + CC=$(tc-getCC) + EXTRA_CFLAGS=-std=c99 + strip=/bin/true + OPT_AUTOCC=no + VAL_PREFIX="${EPREFIX}"/usr + VAL_SYSCONFDIR="${EPREFIX}"/etc + VAL_MTA="${EPREFIX}/usr/sbin/sendmail" + VAL_MAIL='/var/spool/mail' + VAL_PAGER=less + $(usex idn VAL_IDNA=idn2 OPT_IDNA=no) + VERBOSE=1 + ) + + if use net; then + confopts+=( OPT_TLS=$(usex ssl require no) + OPT_GSSAPI=$(usex kerberos require no) + ) + else + confopts+=( OPT_SOCKETS=no ) + fi + + tc-is-cross-compiler && confopts+=( OPT_CROSS_BUILD=yes ) + + emake "${confopts[@]}" config +} + +src_compile() { + emake build +} + +src_install () { + # Use /usr/sbin/sendmail by default and provide an example + cat <<- EOSMTP >> nail.rc + + # Use the local sendmail (/usr/sbin/sendmail) binary by default. + # (Uncomment the following line to use a SMTP server) + #set smtp=localhost + + # Ask for CC: list too. + set askcc + EOSMTP + + emake DESTDIR="${D}" install + + dodoc INSTALL NEWS README THANKS + + dodir /bin + dosym ../usr/bin/mailx /bin/mail + dosym s-nail /usr/bin/mailx + dosym mailx /usr/bin/mail + dosym mailx /usr/bin/Mail + + dosym s-nail.1 /usr/share/man/man1/mailx.1 + dosym mailx.1 /usr/share/man/man1/mail.1 + dosym mailx.1 /usr/share/man/man1/Mail.1 +} |