2001-05-20 05:25:18 +02:00
|
|
|
# New ports collection makefile for: nbsmtp
|
2005-08-29 14:41:19 +02:00
|
|
|
# Date created: 5 May 2001
|
|
|
|
# Whom: Anders Nordby <anders@fix.no>
|
2001-05-20 05:25:18 +02:00
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
2005-08-29 14:41:19 +02:00
|
|
|
# WITH_SSL=yes "Support for secure connection to mail server"
|
2005-07-13 21:46:31 +02:00
|
|
|
#
|
2001-05-20 05:25:18 +02:00
|
|
|
|
|
|
|
PORTNAME= nbsmtp
|
2005-08-29 14:41:19 +02:00
|
|
|
PORTVERSION= 1.00
|
2001-05-20 05:25:18 +02:00
|
|
|
CATEGORIES= mail
|
2008-03-27 20:27:34 +01:00
|
|
|
MASTER_SITES= CRITICAL
|
2001-05-20 05:25:18 +02:00
|
|
|
|
2005-10-06 13:57:11 +02:00
|
|
|
MAINTAINER= ehaupt@FreeBSD.org
|
2003-02-20 20:00:52 +01:00
|
|
|
COMMENT= Simple program for outgoing SMTP delivery
|
2001-05-20 05:25:18 +02:00
|
|
|
|
2005-01-18 06:44:50 +01:00
|
|
|
GNU_CONFIGURE= yes
|
2005-08-29 14:41:19 +02:00
|
|
|
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
2005-01-18 06:44:50 +01:00
|
|
|
|
2005-07-13 21:46:31 +02:00
|
|
|
OPTIONS= IPV6 "Support for IPv6 connections" off \
|
2005-07-14 07:06:30 +02:00
|
|
|
DEBUG "Enable debug information (for developers)" off \
|
|
|
|
SSL "Enable SSL support" off
|
2005-07-13 21:46:31 +02:00
|
|
|
|
|
|
|
PLIST_FILES= bin/nbsmtp
|
|
|
|
|
2005-08-29 14:41:19 +02:00
|
|
|
MAN5= nbsmtprc.5
|
|
|
|
MAN8= nbsmtp.8
|
2001-05-20 05:25:18 +02:00
|
|
|
|
2005-07-14 07:06:30 +02:00
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
|
2005-07-13 21:46:31 +02:00
|
|
|
.if defined(WITH_SSL)
|
2005-07-14 07:06:30 +02:00
|
|
|
.include "${PORTSDIR}/Mk/bsd.openssl.mk"
|
2005-07-13 21:46:31 +02:00
|
|
|
CONFIGURE_ARGS+= --enable-ssl
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.if !defined(WITHOUT_IPV6)
|
|
|
|
CONFIGURE_ARGS+= --enable-ipv6
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.if !defined(WITHOUT_DEBUG)
|
|
|
|
CONFIGURE_ARGS+= --enable-debug
|
|
|
|
.endif
|
2001-05-20 05:25:18 +02:00
|
|
|
|
2005-07-13 21:46:31 +02:00
|
|
|
.include <bsd.port.post.mk>
|