From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jun 2 16:20:20 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6052C1065670 for ; Sat, 2 Jun 2012 16:20:20 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 318018FC16 for ; Sat, 2 Jun 2012 16:20:20 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q52GKKhk062557 for ; Sat, 2 Jun 2012 16:20:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q52GKKDl062556; Sat, 2 Jun 2012 16:20:20 GMT (envelope-from gnats) Date: Sat, 2 Jun 2012 16:20:20 GMT Message-Id: <201206021620.q52GKKDl062556@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Oleg Ginzburg Cc: Subject: Re: ports/168580: net/nakenchat maintainer email update; switch to options-ng X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Oleg Ginzburg List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Jun 2012 16:20:20 -0000 The following reply was made to PR ports/168580; it has been noted by GNATS. From: Oleg Ginzburg To: bug-followup@freebsd.org, olevole@olevole.ru Cc: Subject: Re: ports/168580: net/nakenchat maintainer email update; switch to options-ng Date: Sat, 2 Jun 2012 20:21:20 +0400 --Boundary-00=_A2jyPj+IuyYBj3y Content-Type: Text/Plain; charset="us-ascii" Content-Transfer-Encoding: 7bit forget for patch --Boundary-00=_A2jyPj+IuyYBj3y Content-Type: text/plain; charset="ISO-8859-1"; name="nakenchat.txt" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="nakenchat.txt" diff -ruN nakenchat.bak/Makefile nakenchat/Makefile --- nakenchat.bak/Makefile 2008-11-23 22:25:12.000000000 +0300 +++ nakenchat/Makefile 2012-06-02 19:27:54.000000000 +0400 @@ -10,47 +10,49 @@ CATEGORIES= net MASTER_SITES= http://downloads.mikekohn.net/nakenchat/ -MAINTAINER= oleg.ginzburg@nevosoft.ru +MAINTAINER= olevole@olevole.ru COMMENT= Small (under 50k) chat server with many features HAS_CONFIGURE= yes USE_RC_SUBR= nakenchat -OPTIONS= KEEPALIVEOFF "Disable socket keepalive option" off \ - USERCHANLISTOFF "Disable userlist based on channel" off \ - DEBUG "Compile in debug code" off \ - HIDDENCAVES "Enable hidden caves feature" off \ - DOTQ "compile in .Q option" off \ - FUSERLIST "support to save current userlist to a file" off \ - ELITEFILTER "Enable the 3li73 filter" off +OPTIONS_DEFINE= KEEPALIVEOFF USERCHANLISTOFF DEBUG HIDDENCAVES DOTQ FUSERLIST ELITEFILTER -.include +KEEPALIVEOFF_DESC= Disable socket keepalive option +USERCHANLISTOFF_DESC= Disable userlist based on channel +DEBUG_DESC= Compile in debug code +HIDDENCAVES_DESC= Enable hidden caves feature +DOTQ_DESC= compile in .Q option +FUSERLIST_DESC= support to save current userlist to a file +ELITEFILTER_DESC= Enable the 3li73 filter -.if defined(WITH_KEEPALIVEOFF) +.include + +.if ${PORT_OPTIONS:MWITH_KEEPALIVEOFF} CONFIGURE_ARGS+= --disable-keepalive .endif -.if defined(WITH_USERCHANLISTOFF) +.if ${PORT_OPTIONS:MWITH_USERCHANLISTOFF} CONFIGURE_ARGS+= --disable-userchanlist .endif -.if defined(WITH_DEBUG) +.if ${PORT_OPTIONS:MWITH_DEBUG} CONFIGURE_ARGS+= --enable-debug .endif -.if defined(WITH_HIDDENCAVES) +.if ${PORT_OPTIONS:MWITH_HIDDENCAVES} CONFIGURE_ARGS+= --enable-hidden-caves .endif -.if defined(WITH_DOTQ) +.if ${PORT_OPTIONS:MWITH_DOTQ} CONFIGURE_ARGS+= --enable-dotQ .endif -.if defined(WITH_FUSERLIST) +.if ${PORT_OPTIONS:MWITH_FUSERLIST} CONFIGURE_ARGS+= --enable-whofile .endif -.if defined(WITH_ELITEFILTER) +.if ${PORT_OPTIONS:MWITH_ELITEFILTER} CONFIGURE_ARGS+= --enable-elite .endif @@ -59,4 +61,4 @@ ${CP} -p ${PREFIX}/etc/nakenchat.conf.sample ${PREFIX}/etc/nakenchat.conf ; \ fi -.include +.include --Boundary-00=_A2jyPj+IuyYBj3y--