From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Apr 22 09:40:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id DF36EF7A for ; Mon, 22 Apr 2013 09:40:00 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id C60181B39 for ; Mon, 22 Apr 2013 09:40:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r3M9e0c4071292 for ; Mon, 22 Apr 2013 09:40:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r3M9e0KV071291; Mon, 22 Apr 2013 09:40:00 GMT (envelope-from gnats) Resent-Date: Mon, 22 Apr 2013 09:40:00 GMT Resent-Message-Id: <201304220940.r3M9e0KV071291@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Alex Kozlov Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id E58FCF6E for ; Mon, 22 Apr 2013 09:39:29 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id BC2B51B30 for ; Mon, 22 Apr 2013 09:39:29 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id r3M9dQtZ033013 for ; Mon, 22 Apr 2013 09:39:26 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id r3M9dQFj033012; Mon, 22 Apr 2013 09:39:26 GMT (envelope-from nobody) Message-Id: <201304220939.r3M9dQFj033012@red.freebsd.org> Date: Mon, 22 Apr 2013 09:39:26 GMT From: Alex Kozlov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/178046: [patch] www/lynx convert to OptionsNG X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 22 Apr 2013 09:40:00 -0000 >Number: 178046 >Category: ports >Synopsis: [patch] www/lynx convert to OptionsNG >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Apr 22 09:40:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Alex Kozlov >Release: RELENG_9 >Organization: private >Environment: >Description: - Convert to new options framework - Remove indefinite article from COMMENT - Convert Makefile headers to new style >How-To-Repeat: >Fix: Patch attached with submission follows: Index: www/lynx/Makefile @@ -1,9 +1,5 @@ -# New ports collection makefile for: lynx -# Date created: 15 Dec 1994 -# Whom: Andrey Chernov -# +# Created by: Andrey Chernov # $FreeBSD$ -# PORTNAME= lynx PORTVERSION= 2.8.7.2 @@ -13,7 +9,7 @@ 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 @@ 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 +.include -.if defined(WITHOUT_NLS) +.if empty(PORT_OPTIONS:MNLS) CONFIGURE_ARGS+=--disable-nls PLIST_SUB+= NLS='@comment ' .else @@ -45,21 +40,21 @@ 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 @@ 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 @@ .endif ${CHOWN} ${SHAREOWN}:${SHAREGRP} ${L_LIB}/lynx.cfg -.include +.include >Release-Note: >Audit-Trail: >Unformatted: