svn commit: r418403 - in head/mail: . jwsmtp

Kurt Jaeger pi at FreeBSD.org
Mon Jul 11 20:14:31 UTC 2016


Author: pi
Date: Mon Jul 11 20:14:30 2016
New Revision: 418403
URL: https://svnweb.freebsd.org/changeset/ports/418403

Log:
  New port: mail/jwsmtp
  
  jwSMTP is a GPL-licensed C++ library to facilitate sending email
  programmatically. All you need to worry about is who the mail is from, who to
  send it to and the message itself, no network coding necessary. It is able to
  send mail in html or plain format. jwSMTP can send attachments, send to
  multiple recipients including Cc/Bcc recipients. LOGIN and PLAIN SMTP
  authentication. Do an MX lookup or send direct via an smtp server.
  
  Supported platforms are BSD, Linux and Windows.
  
  WWW: https://talk.mumbleface.net/jwsmtp/
  
  PR:		210765
  Submitted by:	Mohammad S. Babaei <info at babaei.net>

Added:
  head/mail/jwsmtp/
  head/mail/jwsmtp/Makefile   (contents, props changed)
  head/mail/jwsmtp/distinfo   (contents, props changed)
  head/mail/jwsmtp/pkg-descr   (contents, props changed)
  head/mail/jwsmtp/pkg-plist   (contents, props changed)
Modified:
  head/mail/Makefile

Modified: head/mail/Makefile
==============================================================================
--- head/mail/Makefile	Mon Jul 11 20:13:46 2016	(r418402)
+++ head/mail/Makefile	Mon Jul 11 20:14:30 2016	(r418403)
@@ -187,6 +187,7 @@
     SUBDIR += jamlib
     SUBDIR += jmba
     SUBDIR += junkfilter
+    SUBDIR += jwsmtp
     SUBDIR += kbiff
     SUBDIR += kshowmail
     SUBDIR += lbdb

Added: head/mail/jwsmtp/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/mail/jwsmtp/Makefile	Mon Jul 11 20:14:30 2016	(r418403)
@@ -0,0 +1,41 @@
+# Created by: Mohammad S. Babaei <info at babaei.net>
+# $FreeBSD$
+
+PORTNAME=	jwsmtp
+PORTVERSION=	1.32.15
+CATEGORIES=	mail
+MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}/jwsmtp%20version%201.32.15%20bugfix/
+
+MAINTAINER=	info at babaei.net
+COMMENT=	C++ library for sending email
+
+LICENSE=	GPLv2
+LICENSE_FILE=	${WRKSRC}/COPYING
+
+NO_OPTIONS_SORT=	yes
+OPTIONS_DEFINE=		DOCS MANPAGES
+OPTIONS_DEFAULT=	DOCS MANPAGES
+
+DOCS_DESC=	Install documentation
+MANPAGES_DESC=	Install manpages
+
+GNU_CONFIGURE=	yes
+USE_LDCONFIG=	yes
+USES=		libtool pathfix
+INSTALL_TARGET=	install-strip
+
+.include <bsd.port.options.mk>
+
+.if ${PORT_OPTIONS:MDOCS}
+PLIST_SUB+=	PORTDOCS=""
+.else
+PLIST_SUB+=	PORTDOCS="@comment "
+.endif
+
+.if ${PORT_OPTIONS:MMANPAGES}
+PLIST_SUB+=	MANPAGES=""
+.else
+PLIST_SUB+=	MANPAGES="@comment "
+.endif
+
+.include <bsd.port.mk>

Added: head/mail/jwsmtp/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/mail/jwsmtp/distinfo	Mon Jul 11 20:14:30 2016	(r418403)
@@ -0,0 +1,2 @@
+SHA256 (jwsmtp-1.32.15.tar.gz) = 46227cd677f64850de0b23f6f6764576ddacb637011f34d16386fb31cdd2d722
+SIZE (jwsmtp-1.32.15.tar.gz) = 458872

Added: head/mail/jwsmtp/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/mail/jwsmtp/pkg-descr	Mon Jul 11 20:14:30 2016	(r418403)
@@ -0,0 +1,10 @@
+jwSMTP is a GPL-licensed C++ library to facilitate sending email
+programmatically. All you need to worry about is who the mail is from, who to
+send it to and the message itself, no network coding necessary. It is able to
+send mail in html or plain format. jwSMTP can send attachments, send to
+multiple recipients including Cc/Bcc recipients. LOGIN and PLAIN SMTP
+authentication. Do an MX lookup or send direct via an smtp server.
+
+Supported platforms are BSD, Linux and Windows.
+
+WWW: https://talk.mumbleface.net/jwsmtp/

Added: head/mail/jwsmtp/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/mail/jwsmtp/pkg-plist	Mon Jul 11 20:14:30 2016	(r418403)
@@ -0,0 +1,21 @@
+include/jwsmtp-1.32/jwsmtp/base64.h
+include/jwsmtp-1.32/jwsmtp/compat.h
+include/jwsmtp-1.32/jwsmtp/jwsmtp.h
+include/jwsmtp-1.32/jwsmtp/mailer.h
+lib/libjwsmtp-1.32.so
+lib/libjwsmtp.a
+lib/libjwsmtp.so
+libdata/pkgconfig/jwsmtp-1.32.pc
+%%MANPAGES%%man/man3/jwsmtp.3.gz
+%%PORTDOCS%%%%DOCSDIR%%-1.32/Copying
+%%PORTDOCS%%%%DOCSDIR%%-1.32/basic_code.html
+%%PORTDOCS%%%%DOCSDIR%%-1.32/functions.html
+%%PORTDOCS%%%%DOCSDIR%%-1.32/index.html
+%%PORTDOCS%%%%DOCSDIR%%-1.32/install.html
+%%PORTDOCS%%%%DOCSDIR%%-1.32/lib-set.jpg
+%%PORTDOCS%%%%DOCSDIR%%-1.32/mailer_class.html
+%%PORTDOCS%%%%DOCSDIR%%-1.32/main.css
+%%PORTDOCS%%%%DOCSDIR%%-1.32/t-o-i.jpg
+%%PORTDOCS%%%%DOCSDIR%%-1.32/t-o-l.jpg
+%%PORTDOCS%%%%DOCSDIR%%-1.32/usage.html
+%%PORTDOCS%%%%DOCSDIR%%-1.32/win.html


More information about the svn-ports-all mailing list