Bug 168893 - graphics/tinyows switch to new OPTIONS framework
Summary: graphics/tinyows switch to new OPTIONS framework
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: Michael Scheidell
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-06-09 11:20 UTC by Joris Dedieu
Modified: 2012-08-06 11:40 UTC (History)
0 users

See Also:


Attachments
file.diff (772 bytes, patch)
2012-06-09 11:20 UTC, Joris Dedieu
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Joris Dedieu 2012-06-09 11:20:08 UTC
Switch graphics/tinyows to new OPTIONS framework

How-To-Repeat: make -C /usr/ports/graphic/tinyows rmconfig config
Comment 1 Martin Wilke freebsd_committer freebsd_triage 2012-06-09 15:23:03 UTC
Responsible Changed
From-To: freebsd-ports-bugs->miwi

I'll take it.
Comment 2 Edwin Groothuis freebsd_committer freebsd_triage 2012-06-09 15:24:09 UTC
Class Changed
From-To: update->maintainer-update

Fix category (submitter is maintainer) (via the GNATS Auto Assign Tool)
Comment 3 Martin Wilke freebsd_committer freebsd_triage 2012-08-05 07:31:26 UTC
Responsible Changed
From-To: miwi->freebsd-ports-bugs

back to pool
Comment 4 Michael Scheidell freebsd_committer freebsd_triage 2012-08-05 19:51:55 UTC
Responsible Changed
From-To: freebsd-ports-bugs->scheidell

I'll take it.
Comment 5 Michael Scheidell freebsd_committer freebsd_triage 2012-08-06 11:31:50 UTC
State Changed
From-To: open->closed

Committed. Thanks!
Comment 6 dfilter service freebsd_committer freebsd_triage 2012-08-06 11:31:50 UTC
Author: scheidell
Date: Mon Aug  6 10:31:40 2012
New Revision: 302157
URL: http://svn.freebsd.org/changeset/ports/302157

Log:
  - Switch to new OPTIONS framework
  
  PR:		ports/168893
  Submitted by:	Joris Dedieu <joris.dedieu@gmail.com> (maintainer)

Modified:
  head/graphics/tinyows/Makefile

Modified: head/graphics/tinyows/Makefile
==============================================================================
--- head/graphics/tinyows/Makefile	Mon Aug  6 10:28:27 2012	(r302156)
+++ head/graphics/tinyows/Makefile	Mon Aug  6 10:31:40 2012	(r302157)
@@ -20,11 +20,12 @@ BUILD_DEPENDS=		${LOCALBASE}/lib/postgre
 USE_BZIP2=		YES
 GNU_CONFIGURE=		YES
 
-OPTIONS=		FASTCGI "Support FASTCGI" on \
+OPTIONS_DEFINE=		FASTCGI
+OPTIONS_DEFAULT=	FASTCGI
 
-.include <bsd.port.pre.mk>
+.include <bsd.port.options.mk>
 
-.if defined(WITH_FASTCGI)
+.if ${PORT_OPTIONS:MFASTCGI}
 BUILD_DEPENDS+=	${LOCALBASE}/bin/cgi-fcgi:${PORTSDIR}/www/fcgi
 CONFIGURE_ARGS+=	--with-fastcgi=${LOCALBASE}
 .endif
@@ -33,4 +34,4 @@ post-install:
 	${MKDIR} ${WWWDIR}/cgi-bin/
 	${INSTALL_PROGRAM} ${WRKSRC}/tinyows ${WWWDIR}/cgi-bin/tinyows
 
-.include <bsd.port.post.mk>
+.include <bsd.port.mk>
_______________________________________________
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"