Bug 172420 - sysutils/3dm options framework conversion
Summary: sysutils/3dm options framework conversion
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Baptiste Daroussin
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-10-07 04:10 UTC by ports.maintainer
Modified: 2012-10-07 10:43 UTC (History)
0 users

See Also:


Attachments
file.diff (476 bytes, patch)
2012-10-07 04:10 UTC, ports.maintainer
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description ports.maintainer 2012-10-07 04:10:11 UTC
Patch updates the sysutils/3dm Makefile to the new options framework.

Fix: Patch attached with submission follows:
Comment 1 Baptiste Daroussin freebsd_committer freebsd_triage 2012-10-07 08:51:07 UTC
Responsible Changed
From-To: freebsd-ports-bugs->bapt

I'll take it.
Comment 2 dfilter service freebsd_committer freebsd_triage 2012-10-07 08:55:25 UTC
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"
Comment 3 Baptiste Daroussin freebsd_committer freebsd_triage 2012-10-07 10:43:22 UTC
State Changed
From-To: open->closed

Committed. Thanks!