From owner-svn-ports-all@FreeBSD.ORG Sat Sep 8 15:37:56 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A4178106564A; Sat, 8 Sep 2012 15:37:56 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 8F78F8FC1C; Sat, 8 Sep 2012 15:37:56 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q88Fbuts014288; Sat, 8 Sep 2012 15:37:56 GMT (envelope-from ehaupt@svn.freebsd.org) Received: (from ehaupt@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q88FbuIf014285; Sat, 8 Sep 2012 15:37:56 GMT (envelope-from ehaupt@svn.freebsd.org) Message-Id: <201209081537.q88FbuIf014285@svn.freebsd.org> From: Emanuel Haupt Date: Sat, 8 Sep 2012 15:37:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r303914 - head/mail/nbsmtp X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 08 Sep 2012 15:37:56 -0000 Author: ehaupt Date: Sat Sep 8 15:37:56 2012 New Revision: 303914 URL: http://svn.freebsd.org/changeset/ports/303914 Log: - Remove OPTIONS entirely; there is no reason to not use SSL or IPv6 in the year 2012 - Remove deprecated header information Modified: head/mail/nbsmtp/Makefile Modified: head/mail/nbsmtp/Makefile ============================================================================== --- head/mail/nbsmtp/Makefile Sat Sep 8 15:17:51 2012 (r303913) +++ head/mail/nbsmtp/Makefile Sat Sep 8 15:37:56 2012 (r303914) @@ -1,14 +1,8 @@ -# New ports collection makefile for: nbsmtp -# Date created: 5 May 2001 -# Whom: Anders Nordby -# # $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 - -.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 +.include