Bug 171271 - [maintainer update] sysutils/monit 5.5
Summary: [maintainer update] sysutils/monit 5.5
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: Bryan Drewery
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-09-03 02:10 UTC by Martin Pala
Modified: 2012-09-03 04:20 UTC (History)
0 users

See Also:


Attachments
file.diff (736 bytes, patch)
2012-09-03 02:10 UTC, Martin Pala
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Martin Pala 2012-09-03 02:10:09 UTC

    
Comment 1 Bryan Drewery freebsd_committer freebsd_triage 2012-09-03 03:52:51 UTC
Responsible Changed
From-To: freebsd-ports-bugs->bdrewery

I'll take it.
Comment 2 dfilter service freebsd_committer freebsd_triage 2012-09-03 04:17:02 UTC
Author: bdrewery
Date: Mon Sep  3 03:16:45 2012
New Revision: 303583
URL: http://svn.freebsd.org/changeset/ports/303583

Log:
  - Update to 5.5 [1]
  - Convert to new options framework
  
  PR:		ports/171271
  Submitted by:	Martin Pala <martinp@tildeslash.com> (maintainer)
  Approved by:	eadler, bapt (mentors, implicit)

Modified:
  head/sysutils/monit/Makefile
  head/sysutils/monit/distinfo

Modified: head/sysutils/monit/Makefile
==============================================================================
--- head/sysutils/monit/Makefile	Mon Sep  3 01:35:19 2012	(r303582)
+++ head/sysutils/monit/Makefile	Mon Sep  3 03:16:45 2012	(r303583)
@@ -6,7 +6,7 @@
 #
 
 PORTNAME=	monit
-PORTVERSION=	5.4
+PORTVERSION=	5.5
 CATEGORIES=	sysutils
 MASTER_SITES=	http://www.mmonit.com/monit/dist/
 
@@ -23,7 +23,8 @@ USE_RC_SUBR=	${PORTNAME}
 CONFIGURE_ENV=	CONFIG_SHELL="${SH}" \
 		LOCALBASE="${LOCALBASE}"
 
-OPTIONS=	SSL "Enable SSL support" on
+OPTIONS_DEFINE=	SSL
+OPTIONS_DEFAULT=SSL
 
 PLIST_FILES=	bin/monit \
 		etc/monitrc.sample
@@ -35,7 +36,7 @@ PORTDOCS=	${DOCS:T}
 
 .include <bsd.port.options.mk>
 
-.if defined(WITHOUT_SSL)
+.if empty(PORT_OPTIONS:MSSL)
 CONFIGURE_ARGS+=	--without-ssl
 .endif
 

Modified: head/sysutils/monit/distinfo
==============================================================================
--- head/sysutils/monit/distinfo	Mon Sep  3 01:35:19 2012	(r303582)
+++ head/sysutils/monit/distinfo	Mon Sep  3 03:16:45 2012	(r303583)
@@ -1,2 +1,2 @@
-SHA256 (monit-5.4.tar.gz) = 805c6545de2dd7f3d9e6e0c68018b2aadd5fc98b243c8868178f247a60906038
-SIZE (monit-5.4.tar.gz) = 1197209
+SHA256 (monit-5.5.tar.gz) = 8276b060b3f0e6453c9748d421dec044ddae09d3e4c4666e13472aab294d7c53
+SIZE (monit-5.5.tar.gz) = 1197459
_______________________________________________
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 Bryan Drewery freebsd_committer freebsd_triage 2012-09-03 04:17:18 UTC
State Changed
From-To: open->closed

Committed. Thanks! Also updated to the new options framework, see 
http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/makefile-options.html.