mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-12 03:00:28 +00:00
48b16bc177
Feature safe: yes
48 lines
910 B
Makefile
48 lines
910 B
Makefile
# New ports collection makefile for: nbsmtp
|
|
# Date created: 5 May 2001
|
|
# Whom: Anders Nordby <anders@fix.no>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
# WITH_SSL=yes "Support for secure connection to mail server"
|
|
#
|
|
|
|
PORTNAME= nbsmtp
|
|
PORTVERSION= 1.00
|
|
CATEGORIES= mail
|
|
MASTER_SITES= CRITICAL
|
|
|
|
MAINTAINER= ehaupt@FreeBSD.org
|
|
COMMENT= Simple program for outgoing SMTP delivery
|
|
|
|
LICENSE= GPLv2
|
|
|
|
GNU_CONFIGURE= yes
|
|
MAKE_JOBS_SAFE= yes
|
|
|
|
OPTIONS= IPV6 "Support for IPv6 connections" off \
|
|
DEBUG "Enable debug information (for developers)" off \
|
|
SSL "Enable SSL support" off
|
|
|
|
PLIST_FILES= bin/nbsmtp
|
|
|
|
MAN5= nbsmtprc.5
|
|
MAN8= nbsmtp.8
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if defined(WITH_SSL)
|
|
.include "${PORTSDIR}/Mk/bsd.openssl.mk"
|
|
CONFIGURE_ARGS+= --enable-ssl
|
|
.endif
|
|
|
|
.if !defined(WITHOUT_IPV6)
|
|
CONFIGURE_ARGS+= --enable-ipv6
|
|
.endif
|
|
|
|
.if !defined(WITHOUT_DEBUG)
|
|
CONFIGURE_ARGS+= --enable-debug
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|