From owner-svn-ports-all@freebsd.org Mon Jul 11 20:14:31 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C1FC7B92E5A; Mon, 11 Jul 2016 20:14:31 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7FFC416F0; Mon, 11 Jul 2016 20:14:31 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u6BKEU5P057513; Mon, 11 Jul 2016 20:14:30 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6BKEUXC057507; Mon, 11 Jul 2016 20:14:30 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201607112014.u6BKEUXC057507@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Mon, 11 Jul 2016 20:14:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418403 - in head/mail: . jwsmtp X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Jul 2016 20:14:31 -0000 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 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 +# $FreeBSD$ + +PORTNAME= jwsmtp +PORTVERSION= 1.32.15 +CATEGORIES= mail +MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/jwsmtp%20version%201.32.15%20bugfix/ + +MAINTAINER= info@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 + +.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 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