diff options
author | pav <pav@FreeBSD.org> | 2004-06-05 21:31:33 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2004-06-05 21:31:33 +0800 |
commit | 70e69ea755ec20dde76e808a09e10994b4ef2d41 (patch) | |
tree | c202719db0d9efd51de45af975faa7269bbbd9bf /mail/msmtp-devel | |
parent | 6e380a2b78165ee17a7a7163154a17e8612d3132 (diff) | |
download | freebsd-ports-gnome-70e69ea755ec20dde76e808a09e10994b4ef2d41.tar.gz freebsd-ports-gnome-70e69ea755ec20dde76e808a09e10994b4ef2d41.tar.zst freebsd-ports-gnome-70e69ea755ec20dde76e808a09e10994b4ef2d41.zip |
Add msmtp-devel, a development version of msmtp.
PR: ports/67594, ports/67602
Submitted by: Yen-Ming Lee <leeym@utopia.leeym.com>,
Roman Bogorodskiy <bogorodskiy@inbox.ru>
Diffstat (limited to 'mail/msmtp-devel')
-rw-r--r-- | mail/msmtp-devel/Makefile | 49 | ||||
-rw-r--r-- | mail/msmtp-devel/distinfo | 2 | ||||
-rw-r--r-- | mail/msmtp-devel/pkg-descr | 5 |
3 files changed, 56 insertions, 0 deletions
diff --git a/mail/msmtp-devel/Makefile b/mail/msmtp-devel/Makefile new file mode 100644 index 000000000000..c399b5dd3178 --- /dev/null +++ b/mail/msmtp-devel/Makefile @@ -0,0 +1,49 @@ +# Ports collection makefile for: msmtp-devel +# Date created: 2 June 2004 +# Whom: Roman Bogorodskiy +# +# $FreeBSD$ +# + +PORTNAME= msmtp +PORTVERSION= 1.1.1 +CATEGORIES= mail +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= msmtp +PKGNAMESUFFIX= -devel + +MAINTAINER= bogorodskiy@inbox.ru +COMMENT= The development version of SMTP plugin for MUAs + +GNU_CONFIGURE= yes +USE_GETOPT_LONG=yes +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib +CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}" +CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} +MAN1= msmtp.1 +PLIST_FILES= bin/msmtp + +CONFLICTS= msmtp-0.* \ + msmtp-1.0.* + +.if !defined(WITH_OPENSSL) +WITH_GNUTLS= yes +.endif + +.if defined(WITH_GNUTLS) +LIB_DEPENDS+= gnutls:${PORTSDIR}/security/gnutls +.endif + +.if defined(WITH_OPENSSL) +USE_OPENSSL= yes +CONFIGURE_ARGS+= --with-ssl=openssl +.endif + +.if defined(WITH_GNU_SASL) +LIB_DEPENDS+= gsasl:${PORTSDIR}/security/gsasl +.else +CONFIGURE_ARGS+= --disable-gsasl +.endif + +.include <bsd.port.mk> diff --git a/mail/msmtp-devel/distinfo b/mail/msmtp-devel/distinfo new file mode 100644 index 000000000000..451eaa7f0883 --- /dev/null +++ b/mail/msmtp-devel/distinfo @@ -0,0 +1,2 @@ +MD5 (msmtp-1.1.1.tar.gz) = 5ffb4f26c68760ffbaf7d37ff06d7abb +SIZE (msmtp-1.1.1.tar.gz) = 147697 diff --git a/mail/msmtp-devel/pkg-descr b/mail/msmtp-devel/pkg-descr new file mode 100644 index 000000000000..a2eb44e8e704 --- /dev/null +++ b/mail/msmtp-devel/pkg-descr @@ -0,0 +1,5 @@ +This is a development version of msmtp. Most of the code was rewritten or +restructured, so it needs some testing. Some new features were also added: +SMTP pipelining, the --serverinfo option, and the --from option. + +WWW: http://msmtp.sourceforge.net/ |