Patch updates the sysutils/3dm Makefile to the new options framework. Fix: Patch attached with submission follows:
Responsible Changed From-To: freebsd-ports-bugs->bapt I'll take it.
Author: bapt Date: Sun Oct 7 07:55:15 2012 New Revision: 305439 URL: http://svn.freebsd.org/changeset/ports/305439 Log: - Convert to new options [1] - While I'm here, trim header PR: ports/172420 Submitted by: Darren Pilgrim <ports.maintainer@evilphi.com> (maintainer) Modified: head/sysutils/3dm/Makefile Modified: head/sysutils/3dm/Makefile ============================================================================== --- head/sysutils/3dm/Makefile Sun Oct 7 07:54:18 2012 (r305438) +++ head/sysutils/3dm/Makefile Sun Oct 7 07:55:15 2012 (r305439) @@ -1,9 +1,5 @@ -# New ports collection makefile for: 3dm2 -# Date created: 02 Sep 2002 -# Whom: dbaker -# +# Created by: Daniel Baker <dbaker@FreeBSD.org> # $FreeBSD$ -# PORTNAME= 3dm PORTVERSION= 2.11.00.019 @@ -19,11 +15,14 @@ COMMENT= 3ware RAID controller monitorin USE_RC_SUBR= 3dm2 -OPTIONS= SSLFIX "Install KB16625-patched binaries" On +OPTIONS_DEFINE= SSLFIX +SSLFIX_DESC= Install KB16625-patched binaries + +OPTIONS_DEFAULT= SSLFIX .include <bsd.port.options.mk> -.if defined(WITH_SSLFIX) +.if !empty(PORT_OPTIONS:MSSLFIX) DISTFILES+= kb16625_${PORTVERSION}.tar.gz BINPREFIX= ${WRKSRC}/kb16625 .else _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
State Changed From-To: open->closed Committed. Thanks!