Bug 178046

Summary: [patch] www/lynx convert to OptionsNG
Product: Ports & Packages Reporter: Alex Kozlov <spam>
Component: Individual Port(s)Assignee: Alex Kozlov <ak>
Status: Closed FIXED    
Severity: Affects Only Me    
Priority: Normal    
Version: Latest   
Hardware: Any   
OS: Any   
Attachments:
Description Flags
file.diff none

Description Alex Kozlov 2013-04-22 10:40:00 UTC
- Convert to new options framework
- Remove indefinite article from COMMENT
- Convert Makefile headers to new style

Fix: Patch attached with submission follows:
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2013-04-22 10:40:10 UTC
Maintainer of www/lynx,

Please note that PR ports/178046 has just been submitted.

If it contains a patch for an upgrade, an enhancement or a bug fix
you agree on, reply to this email stating that you approve the patch
and a committer will take care of it.

The full text of the PR can be found at:
    http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/178046

-- 
Edwin Groothuis via the GNATS Auto Assign Tool
edwin@FreeBSD.org
Comment 2 Edwin Groothuis freebsd_committer freebsd_triage 2013-04-22 10:40:11 UTC
State Changed
From-To: open->feedback

Awaiting maintainers feedback (via the GNATS Auto Assign Tool)
Comment 3 Alex Kozlov freebsd_committer freebsd_triage 2013-04-22 10:42:56 UTC
Responsible Changed
From-To: freebsd-ports-bugs->ak

I'll take it.
Comment 4 dfilter service freebsd_committer freebsd_triage 2013-04-22 14:21:13 UTC
Author: ak
Date: Mon Apr 22 13:20:59 2013
New Revision: 316229
URL: http://svnweb.freebsd.org/changeset/ports/316229

Log:
  - Convert to new options framework
  - Remove indefinite article from COMMENT
  - Convert Makefile headers to new style
  
  PR:	ports/178046
  Approved by:	Jason Harris <jharris@widomaker.com> (maintainer)
  Feature safe:	yes

Modified:
  head/www/lynx/Makefile   (contents, props changed)

Modified: head/www/lynx/Makefile
==============================================================================
--- head/www/lynx/Makefile	Mon Apr 22 13:15:06 2013	(r316228)
+++ head/www/lynx/Makefile	Mon Apr 22 13:20:59 2013	(r316229)
@@ -1,9 +1,5 @@
-# New ports collection makefile for:	lynx
-# Date created:				15 Dec 1994
-# Whom:					Andrey Chernov <ache@FreeBSD.org>
-#
+# Created by: Andrey Chernov <ache@FreeBSD.org>
 # $FreeBSD$
-#
 
 PORTNAME=	lynx
 PORTVERSION=	2.8.7.2
@@ -13,7 +9,7 @@ MASTER_SITES=	http://lynx.isc.org/curren
 DISTNAME=	${PORTNAME}${PORTVERSION:R}rel.${PORTVERSION:E}
 
 MAINTAINER=	jharris@widomaker.com
-COMMENT=	A non-graphical, text-based World-Wide Web client
+COMMENT=	Non-graphical, text-based World-Wide Web client
 
 CONFLICTS=	lynx-2.8.[8-9]*
 
@@ -28,14 +24,13 @@ CONFIGURE_ARGS+=--with-zlib --libdir="${
 
 MAKE_JOBS_UNSAFE=	yes
 
-OPTIONS=	SSL		"SSL support" on \
-		DEFAULT_COLORS	"Colors support" off \
-		IPV6		"IPv6 support" off \
-		NLS 		"Native language support" on
+OPTIONS_DEFINE=	DEFAULT_COLORS IPV6 NLS SSL
+OPTIONS_DEFAULT=	SSL
+DEFAULT_COLORS_DESC=	Colors support
 
-.include <bsd.port.pre.mk>
+.include <bsd.port.options.mk>
 
-.if defined(WITHOUT_NLS)
+.if empty(PORT_OPTIONS:MNLS)
 CONFIGURE_ARGS+=--disable-nls
 PLIST_SUB+=	NLS='@comment '
 .else
@@ -45,21 +40,21 @@ CONFIGURE_ARGS+=--enable-nls --with-libi
 PLIST_SUB+=	NLS=''
 .endif
 
-.if defined(WITH_IPV6) && !defined(NO_INET6)
+.if ${PORT_OPTIONS:MIPV6} && !defined(NO_INET6)
 CONFIGURE_ARGS+=--enable-ipv6
 .else
 CONFIGURE_ARGS+=--disable-ipv6
 .endif
 
-.if defined(WITH_SSL)
+.if ${PORT_OPTIONS:MSSL}
 CONFIGURE_ARGS+=	--with-ssl=${OPENSSLBASE}
 .endif
 
-.if defined(WITH_DEFAULT_COLORS)
+.if ${PORT_OPTIONS:MDEFAULT_COLORS}
 CONFIGURE_ARGS+=--enable-default-colors
 .endif
 
-.if defined(NOPORTDOCS)
+.if empty(PORT_OPTIONS:MDOCS)
 CONFIGURE_ARGS+=--disable-local-docs
 INSTALL_TARGET=	install
 DOCSDIR=
@@ -78,7 +73,7 @@ L_LIB=		${PREFIX}/etc
 SUB_FILES=	pkg-message
 
 post-install:
-.if defined(NOPORTDOCS)
+.if empty(PORT_OPTIONS:MDOCS)
 	[ -f ${L_LIB}/lynx.cfg ] || ${INSTALL} ${L_LIB}/lynx.cfg.sample ${L_LIB}/lynx.cfg
 	[ -f ${L_LIB}/lynx.lss ] || ${INSTALL} ${L_LIB}/lynx.lss.sample ${L_LIB}/lynx.lss
 .else
@@ -87,4 +82,4 @@ post-install:
 .endif
 	${CHOWN} ${SHAREOWN}:${SHAREGRP} ${L_LIB}/lynx.cfg
 
-.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"
Comment 5 Alex Kozlov freebsd_committer freebsd_triage 2013-04-22 14:22:44 UTC
State Changed
From-To: feedback->closed

Committed. Thanks!