From owner-svn-ports-head@FreeBSD.ORG Fri Jun 14 21:40:03 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 3907852E; Fri, 14 Jun 2013 21:40:03 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 2B9CC1A3D; Fri, 14 Jun 2013 21:40:03 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r5ELe2Cg085267; Fri, 14 Jun 2013 21:40:02 GMT (envelope-from bdrewery@svn.freebsd.org) Received: (from bdrewery@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r5ELe2XU085266; Fri, 14 Jun 2013 21:40:02 GMT (envelope-from bdrewery@svn.freebsd.org) Message-Id: <201306142140.r5ELe2XU085266@svn.freebsd.org> From: Bryan Drewery Date: Fri, 14 Jun 2013 21:40:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r320965 - head/mail/spamdyke X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jun 2013 21:40:03 -0000 Author: bdrewery Date: Fri Jun 14 21:40:02 2013 New Revision: 320965 URL: http://svnweb.freebsd.org/changeset/ports/320965 Log: - Use new options helpers - Add missing DEBUG_EXCESSIVE_DESC Modified: head/mail/spamdyke/Makefile Modified: head/mail/spamdyke/Makefile ============================================================================== --- head/mail/spamdyke/Makefile Fri Jun 14 21:13:41 2013 (r320964) +++ head/mail/spamdyke/Makefile Fri Jun 14 21:40:02 2013 (r320965) @@ -25,26 +25,13 @@ USE_GCC= any OPTIONS_DEFINE= TLS DEBUG DEBUG_EXCESSIVE DOCS OPTIONS_DEFAULT= TLS DEBUG_DESC= Enable debugging output +DEBUG_EXCESSIVE_DESC= Enable excessive debugging output -.include - -.if ${PORT_OPTIONS:MTLS} -CONFIGURE_ARGS+= --enable-tls -.else -CONFIGURE_ARGS+= --disable-tls -.endif +TLS_CONFIGURE_ENABLE= tls +DEBUG_CONFIGURE_ENABLE= debug-output +DEBUG_EXCESSIVE_CONFIGURE_ENABLE= excessive-output -.if ${PORT_OPTIONS:MDEBUG} -CONFIGURE_ARGS+= --with-debug-output -.else -CONFIGURE_ARGS+= --without-debug-output -.endif - -.if ${PORT_OPTIONS:MDEBUG_EXCESSIVE} -CONFIGURE_ARGS+= --with-excessive-output -.else -CONFIGURE_ARGS+= --without-excessive-output -.endif +.include .if ${PORT_OPTIONS:MDOCS} PORTDOCS= Changelog.txt FAQ.html GNUGPL.txt INSTALL.txt \