Date: Thu, 27 Dec 2018 08:10:33 +0000 (UTC) From: Koichiro Iwao <meta@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r488512 - in head/mail: . s-nail Message-ID: <201812270810.wBR8AX0r025782@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: meta Date: Thu Dec 27 08:10:32 2018 New Revision: 488512 URL: https://svnweb.freebsd.org/changeset/ports/488512 Log: New port: mail/s-nail S-nail provides a simple and friendly environment for sending and receiving mail. It is intended to provide the functionality of the POSIX mailx(1) command, but is MIME capable and optionally offers extensions for line editing, S/MIME, SMTP and POP3, among others. S-nail divides incoming mail into its constituent messages and allows the user to deal with them in any order. It offers many COMMANDS and INTERNAL VARIABLES for manipulating messages and sending mail. It provides the user simple editing capabilities to ease the composition of outgoing messages, and increasingly powerful and reliable non-interactive scripting capabilities. WWW: https://www.sdaoden.eu/code.html#s-mailx PR: 232189 Submitted by: Yasuhiro KIMURA <yasu@utahime.org> Approved by: mentors (implicit) Added: head/mail/s-nail/ head/mail/s-nail/Makefile (contents, props changed) head/mail/s-nail/distinfo (contents, props changed) head/mail/s-nail/pkg-descr (contents, props changed) Modified: head/mail/Makefile Modified: head/mail/Makefile ============================================================================== --- head/mail/Makefile Thu Dec 27 07:58:47 2018 (r488511) +++ head/mail/Makefile Thu Dec 27 08:10:32 2018 (r488512) @@ -637,6 +637,7 @@ SUBDIR += rubygem-ruby-qmail SUBDIR += rubygem-tmail SUBDIR += rubygem-vmail + SUBDIR += s-nail SUBDIR += sa-stats SUBDIR += sa-utils SUBDIR += scam-backscatter Added: head/mail/s-nail/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/s-nail/Makefile Thu Dec 27 08:10:32 2018 (r488512) @@ -0,0 +1,44 @@ +# $FreeBSD$ + +PORTNAME= s-nail +PORTVERSION= 14.9.11 +CATEGORIES= mail +MASTER_SITES= https://www.sdaoden.eu/downloads/ + +MAINTAINER= yasu@utahime.org +COMMENT= Send and receive Internet mail + +LICENSE= BSD3CLAUSE BSD4CLAUSE ISCL MIT RFC2104 RSA +LICENSE_COMB= multi +LICENSE_NAME_RFC2104= License of RFC2104 +LICENSE_NAME_RSA= RSA Data Security license +LICENSE_FILE= ${WRKSRC}/COPYING +LICENSE_PERMS_RFC2104= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept +LICENSE_PERMS_RSA= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept + +LIB_DEPENDS= libidn2.so:dns/libidn2 +RUN_DEPENDS= mime-support>0:misc/mime-support + +USES= iconv ssl tar:xz + +PLIST_FILES= bin/s-nail \ + "@sample etc/s-nail.rc.sample" \ + libexec/s-nail-privsep \ + man/man1/s-nail.1.gz + +MAKEFILE= makefile +MAKE_ENV= VAL_PREFIX=${PREFIX} VAL_MANDIR=${MANPREFIX}/man VAL_MIME_TYPES_SYS=${PREFIX}/etc/mime.types VAL_IDNA=idn2 +MAKE_JOBS_UNSAFE= yes + +PORTDOCS= NEWS README + +OPTIONS_DEFINE= DOCS + +post-install: + ${INSTALL_DATA} ${WRKSRC}/nail.rc ${STAGEDIR}${PREFIX}/etc/s-nail.rc.sample + +post-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} + +.include <bsd.port.mk> Added: head/mail/s-nail/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/s-nail/distinfo Thu Dec 27 08:10:32 2018 (r488512) @@ -0,0 +1,3 @@ +TIMESTAMP = 1539245997 +SHA256 (s-nail-14.9.11.tar.xz) = 258d818449da889c5fc4976215698a817c0a3818fb77dd565fa9fe6afed0023e +SIZE (s-nail-14.9.11.tar.xz) = 674464 Added: head/mail/s-nail/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/s-nail/pkg-descr Thu Dec 27 08:10:32 2018 (r488512) @@ -0,0 +1,12 @@ +S-nail provides a simple and friendly environment for sending and +receiving mail. It is intended to provide the functionality of the +POSIX mailx(1) command, but is MIME capable and optionally offers +extensions for line editing, S/MIME, SMTP and POP3, among others. +S-nail divides incoming mail into its constituent messages and allows +the user to deal with them in any order. It offers many COMMANDS and +INTERNAL VARIABLES for manipulating messages and sending mail. It +provides the user simple editing capabilities to ease the composition +of outgoing messages, and increasingly powerful and reliable +non-interactive scripting capabilities. + +WWW: https://www.sdaoden.eu/code.html#s-mailx
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201812270810.wBR8AX0r025782>