Created attachment 198047 [details] patch file 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.
Comment on attachment 198047 [details] patch file +.for f in ${PORTDOCS} + ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR} +.endfor No need of for statement when you can do: (cd ${WRKSRC} && ${INSTALL_DATA} NEWS README ${STAGEDIR}${DOCSDIR})
Comment on attachment 198047 [details] patch file Approval only required/needed/applies to existing (committed) ports
Created attachment 198619 [details] updated patch file Update patch not to use .for ... .endfor loop. So please commit attached patch instead of original one.
Take.
A commit references this bug: Author: meta Date: Thu Dec 27 08:10:33 UTC 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) Changes: head/mail/Makefile head/mail/s-nail/ head/mail/s-nail/Makefile head/mail/s-nail/distinfo head/mail/s-nail/pkg-descr
Works fine for me. When pkg-plist contains few files, PLIST_FILES is prefered. Committed with minor changes, thanks!