commit:     64b9901c0f3ed4dae25cdf6655b6c7a1cecd85f0
Author:     Brian Evans <grknight <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 21 17:23:09 2019 +0000
Commit:     Brian Evans <grknight <AT> gentoo <DOT> org>
CommitDate: Thu Mar 21 17:23:09 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64b9901c

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 <AT> gentoo.org>

 mail-client/s-nail/Manifest              |  1 +
 mail-client/s-nail/metadata.xml          | 23 ++++++++
 mail-client/s-nail/s-nail-14.9.13.ebuild | 91 ++++++++++++++++++++++++++++++++
 3 files changed, 115 insertions(+)

diff --git a/mail-client/s-nail/Manifest b/mail-client/s-nail/Manifest
new file mode 100644
index 00000000000..1a48213f110
--- /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 00000000000..6fa99b2c089
--- /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>[email protected]</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 00000000000..8d4581a9f0d
--- /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
+}

Reply via email to