diff options
author | ehaupt <ehaupt@FreeBSD.org> | 2012-09-08 23:37:56 +0800 |
---|---|---|
committer | ehaupt <ehaupt@FreeBSD.org> | 2012-09-08 23:37:56 +0800 |
commit | a670172b131a7659c28d743026522f7c197d3773 (patch) | |
tree | d1b64253815683c6e5514d2ee004caa1d553f6ce /mail | |
parent | a54f3312247cdbd0b7d0c107ca15c09feae23746 (diff) | |
download | freebsd-ports-gnome-a670172b131a7659c28d743026522f7c197d3773.tar.gz freebsd-ports-gnome-a670172b131a7659c28d743026522f7c197d3773.tar.zst freebsd-ports-gnome-a670172b131a7659c28d743026522f7c197d3773.zip |
- Remove OPTIONS entirely; there is no reason to not use SSL or IPv6 in the
year 2012
- Remove deprecated header information
Diffstat (limited to 'mail')
-rw-r--r-- | mail/nbsmtp/Makefile | 31 |
1 files changed, 4 insertions, 27 deletions
diff --git a/mail/nbsmtp/Makefile b/mail/nbsmtp/Makefile index 51b1eceac874..59eac89814dc 100644 --- a/mail/nbsmtp/Makefile +++ b/mail/nbsmtp/Makefile @@ -1,14 +1,8 @@ -# 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 +PORTREVISION= 1 CATEGORIES= mail MASTER_SITES= CRITICAL @@ -20,28 +14,11 @@ 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 +CONFIGURE_ARGS+= --enable-ssl --enable-ipv6 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 +PLIST_FILES= bin/nbsmtp -.include <bsd.port.post.mk> +.include <bsd.port.mk> |