From nobody@FreeBSD.org  Sat Nov 15 18:59:00 2008
Return-Path: <nobody@FreeBSD.org>
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 5E4601065679
	for <freebsd-gnats-submit@FreeBSD.org>; Sat, 15 Nov 2008 18:59:00 +0000 (UTC)
	(envelope-from nobody@FreeBSD.org)
Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21])
	by mx1.freebsd.org (Postfix) with ESMTP id 4E7878FC13
	for <freebsd-gnats-submit@FreeBSD.org>; Sat, 15 Nov 2008 18:59:00 +0000 (UTC)
	(envelope-from nobody@FreeBSD.org)
Received: from www.freebsd.org (localhost [127.0.0.1])
	by www.freebsd.org (8.14.3/8.14.3) with ESMTP id mAFIwxnN059947
	for <freebsd-gnats-submit@FreeBSD.org>; Sat, 15 Nov 2008 18:58:59 GMT
	(envelope-from nobody@www.freebsd.org)
Received: (from nobody@localhost)
	by www.freebsd.org (8.14.3/8.14.3/Submit) id mAFIwxH1059946;
	Sat, 15 Nov 2008 18:58:59 GMT
	(envelope-from nobody)
Message-Id: <200811151858.mAFIwxH1059946@www.freebsd.org>
Date: Sat, 15 Nov 2008 18:58:59 GMT
From: Oleg Ginzburg <oleg.ginzburg@nevosoft.ru>
To: freebsd-gnats-submit@FreeBSD.org
Subject: update net/nakenchat ports
X-Send-Pr-Version: www-3.1
X-GNATS-Notify: mike@mikekohn.net

>Number:         128894
>Category:       ports
>Synopsis:       update net/nakenchat ports
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    wxs
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          update
>Submitter-Id:   current-users
>Arrival-Date:   Sat Nov 15 19:00:14 UTC 2008
>Closed-Date:    Sun Nov 23 19:25:52 UTC 2008
>Last-Modified:  Sun Nov 23 19:30:01 UTC 2008
>Originator:     Oleg Ginzburg
>Release:        8.0-CURRENT
>Organization:
>Environment:
FreeBSD ole.localhost 8.0-CURRENT FreeBSD 8.0-CURRENT #6 r184646M: Sat Nov 15 15:36:43 MSK 2008     root@ole.localhost:/usr/obj/usr/src/sys/home  i386
>Description:
Update nakenchat to 2.12 version
>How-To-Repeat:

>Fix:


Patch attached with submission follows:

diff -ruN nakenchat.bak/Makefile nakenchat/Makefile
--- nakenchat.bak/Makefile	1970-01-01 03:00:00.000000000 +0300
+++ nakenchat/Makefile	2008-11-15 21:43:18.000000000 +0300
@@ -0,0 +1,71 @@
+# New ports collection makefile for:   nakenchat
+# Date created:        01 July 2003
+# Whom:                Michael Kohn  (mike@mikekohn.net)
+#
+# $FreeBSD: ports/net/nakenchat/Makefile,v 1.2 2004/03/07 05:03:22 kris Exp $
+#
+
+PORTNAME=	nakenchat
+PORTVERSION=	2.12
+CATEGORIES=	net
+MASTER_SITES=	http://downloads.mikekohn.net/nakenchat/
+
+MAINTAINER=	oleg.ginzburg@nevosoft.ru
+COMMENT=	Small (under 50k) chat server with many features
+
+GNU_CONFIGURE=  yes
+USE_RC_SUBR=    nakenchat
+
+AVAILABLE_LANG="english french german italian norwegian spanish"
+
+OPTIONS=	KEEPALIVEOFF "Disable socket keepalive option" off \
+		CHANBANLISTOFF "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 
+
+.if defined(KEEPALIVEOFF)
+CONFIGURE_ARGS+=--disable-keepalive
+.else
+CONFIGURE_ARGS+=--enable-keepalive
+.endif
+
+.if defined(CHANBANLISTOFF)
+CONFIGURE_ARGS+=--disable-userchanlist
+.else
+CONFIGURE_ARGS+=--enable-userchanlist
+.endif
+
+.if defined(WITH_DEBUG)
+CONFIGURE_ARGS+=--enable-debug
+.else
+CONFIGURE_ARGS+=--disable-debug
+.endif
+
+.if defined(HIDDENCAVES)
+CONFIGURE_ARGS+=--enable-hidden-caves
+.else
+CONFIGURE_ARGS+=--disable-hidden-caves
+.endif
+
+.if defined(DOTQ)
+CONFIGURE_ARGS+=--enable-dotQ
+.else
+CONFIGURE_ARGS+=--disable-dotQ
+.endif
+
+.if defined(FILEUSERLIST)
+CONFIGURE_ARGS+=--enable-whofile
+.else
+CONFIGURE_ARGS+=--disable-whofile
+.endif
+
+.if defined(ELITEFILTER)
+CONFIGURE_ARGS+=--enable-elite
+.else
+CONFIGURE_ARGS+=--disable-elite
+.endif
+
+.include <bsd.port.mk>
diff -ruN nakenchat.bak/distinfo nakenchat/distinfo
--- nakenchat.bak/distinfo	1970-01-01 03:00:00.000000000 +0300
+++ nakenchat/distinfo	2008-11-13 12:18:00.000000000 +0300
@@ -0,0 +1,3 @@
+MD5 (nakenchat-2.12.tar.gz) = de31d1bf7ed4d1e48d6ab34556f26f0a
+SHA256 (nakenchat-2.12.tar.gz) = 1597d7759b3849f9b53ada323fa72f7cfc238d4e0c741dccafab3fae66bd900b
+SIZE (nakenchat-2.12.tar.gz) = 41839
diff -ruN nakenchat.bak/files/nakenchat.in nakenchat/files/nakenchat.in
--- nakenchat.bak/files/nakenchat.in	1970-01-01 03:00:00.000000000 +0300
+++ nakenchat/files/nakenchat.in	2008-11-15 20:56:38.000000000 +0300
@@ -0,0 +1,26 @@
+#!/bin/sh
+#
+# $FreeBSD: ports/net/nakenchat/files/nakenchat.in,v 1.3 2006/04/03 04:33:22 mnag Exp $
+#
+# PROVIDE: nakenchat
+# REQUIRE: DAEMON
+#
+# Add the following lines to /etc/rc.conf to enable nakenchat:
+#
+# nakenchat_enable (bool):		Set it to "YES" to enable nakenchat.
+#				Default is "NO".
+#
+
+. /etc/rc.subr
+
+name="nakenchat"
+rcvar=${name}_enable
+
+load_rc_config $name
+
+: ${nakenchat_enable="NO"}
+
+command=/usr/local/bin/nakenchat
+command_args="&"
+
+run_rc_command "$1"
diff -ruN nakenchat.bak/pkg-descr nakenchat/pkg-descr
--- nakenchat.bak/pkg-descr	1970-01-01 03:00:00.000000000 +0300
+++ nakenchat/pkg-descr	2003-10-08 09:03:23.000000000 +0400
@@ -0,0 +1,11 @@
+Small chat server written in C.  The compiled code is still under
+50k (at this time around 40k).  The chat offers many features
+including private channels, gagging, squelching, banning,
+censoring, and much more.  Users can connect to the chat through
+many ways including telnet and a Java applet through a webpage.
+
+WWW: http://nakenchat.naken.cc/
+
+-Michael Kohn
+
+mike@mikekohn.net
diff -ruN nakenchat.bak/pkg-plist nakenchat/pkg-plist
--- nakenchat.bak/pkg-plist	1970-01-01 03:00:00.000000000 +0300
+++ nakenchat/pkg-plist	2003-10-08 09:03:23.000000000 +0400
@@ -0,0 +1,3 @@
+bin/nakenchat
+bin/nakenpasswd
+etc/nakenchat.conf


>Release-Note:
>Audit-Trail:
State-Changed-From-To: open->feedback 
State-Changed-By: edwin 
State-Changed-When: Sat Nov 15 19:00:30 UTC 2008 
State-Changed-Why:  
Awaiting maintainers feedback (via the GNATS Auto Assign Tool) 

http://www.freebsd.org/cgi/query-pr.cgi?pr=128894 

From: Edwin Groothuis <edwin@FreeBSD.org>
To: mike@mikekohn.net
Cc: bug-followup@FreeBSD.org
Subject: Re: ports/128894: update net/nakenchat ports
Date: Sat, 15 Nov 2008 19:00:28 UT

 Maintainer of net/nakenchat,
 
 Please note that PR ports/128894 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/128894
 
 -- 
 Edwin Groothuis via the GNATS Auto Assign Tool
 edwin@FreeBSD.org

From: "Michael A. Kohn" <mike@mikekohn.net>
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/128894: update net/nakenchat ports
Date: Mon, 17 Nov 2008 08:55:31 -0600 (CST)

 I approve of this change.  Thanks!
 
 On Sat, 15 Nov 2008, Edwin Groothuis wrote:
 
 > Maintainer of net/nakenchat,
 >
 > Please note that PR ports/128894 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/128894
 >
 > -- 
 > Edwin Groothuis via the GNATS Auto Assign Tool
 > edwin@FreeBSD.org
 >
Responsible-Changed-From-To: freebsd-ports-bugs->wxs 
Responsible-Changed-By: wxs 
Responsible-Changed-When: Mon Nov 17 18:42:04 UTC 2008 
Responsible-Changed-Why:  
I'll take it. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=128894 
State-Changed-From-To: feedback->closed 
State-Changed-By: wxs 
State-Changed-When: Sun Nov 23 19:25:50 UTC 2008 
State-Changed-Why:  
Committed with lots of changes, so that it would actually work. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=128894 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/128894: commit references a PR
Date: Sun, 23 Nov 2008 19:25:21 +0000 (UTC)

 wxs         2008-11-23 19:25:13 UTC
 
   FreeBSD ports repository
 
   Modified files:
     net/nakenchat        Makefile distinfo pkg-plist 
     net/nakenchat/files  patch-Makefile 
   Added files:
     net/nakenchat/files  nakenchat.in patch-configure 
   Log:
   - Update to 2.12
   - Pass maintainer to submitter
   - Switch to new MASTER_SITES
   - Add RC script
   - Switch to OPTIONS
   - Properly handle the configuration file
   - Respect CC and CFLAGS
   
   PR:             ports/128894
   Submitted by:   Oleg Ginzburg <oleg.ginzburg@nevosoft.ru>
   Approved by:    mike@mikekohn.net (maintainer)
   
   Revision  Changes    Path
   1.3       +45 -5     ports/net/nakenchat/Makefile
   1.4       +3 -3      ports/net/nakenchat/distinfo
   1.1       +26 -0     ports/net/nakenchat/files/nakenchat.in (new)
   1.2       +15 -10    ports/net/nakenchat/files/patch-Makefile
   1.1       +40 -0     ports/net/nakenchat/files/patch-configure (new)
   1.2       +3 -1      ports/net/nakenchat/pkg-plist
 _______________________________________________
 cvs-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/cvs-all
 To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
 
>Unformatted:
