mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-29 05:38:00 +00:00
5d282f809c
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@babaei.net>
42 lines
808 B
Makefile
42 lines
808 B
Makefile
# Created by: Mohammad S. Babaei <info@babaei.net>
|
|
# $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 <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>
|