From weaseal@relnor.com  Tue Feb 17 22:57:36 2004
Return-Path: <weaseal@relnor.com>
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 918CF16A4CE
	for <FreeBSD-gnats-submit@freebsd.org>; Tue, 17 Feb 2004 22:57:36 -0800 (PST)
Received: from relnor.com (pcp694352pcs.lvngst01.md.comcast.net [68.50.16.152])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 039AF43D1D
	for <FreeBSD-gnats-submit@freebsd.org>; Tue, 17 Feb 2004 22:57:31 -0800 (PST)
	(envelope-from weaseal@relnor.com)
Received: from relnor.com (localhost [127.0.0.1])
	by relnor.com (8.12.10/8.12.10) with ESMTP id i1I6vamm052410
	for <FreeBSD-gnats-submit@freebsd.org>; Wed, 18 Feb 2004 01:57:36 -0500 (EST)
	(envelope-from weaseal@relnor.com)
Received: (from root@localhost)
	by relnor.com (8.12.10/8.12.10/Submit) id i1I6vZiW052409;
	Wed, 18 Feb 2004 01:57:35 -0500 (EST)
	(envelope-from weaseal)
Message-Id: <200402180657.i1I6vZiW052409@relnor.com>
Date: Wed, 18 Feb 2004 01:57:35 -0500 (EST)
From: Walter Venable <weaseal@hotmail.com>
To: FreeBSD-gnats-submit@freebsd.org
Cc:
Subject: [NEW PORT] irc/undernet-ircu: Undernet IRCU daemon
X-Send-Pr-Version: 3.113
X-GNATS-Notify:

>Number:         62996
>Category:       ports
>Synopsis:       [NEW PORT] irc/undernet-ircu: Undernet IRCU daemon
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Tue Feb 17 23:00:36 PST 2004
>Closed-Date:    Tue Feb 17 23:43:07 PST 2004
>Last-Modified:  Tue Feb 17 23:43:07 PST 2004
>Originator:     Walter Venable
>Release:        FreeBSD 4.9-STABLE i386
>Organization:
>Environment:
System: FreeBSD relnor.com 4.9-STABLE FreeBSD 4.9-STABLE #0: Thu Feb 12 17:04:32 EST 2004
>Description:
Undernet's popular and reliable irc daemon.  See website (URL below) for
details.

Note that this port is titled "undernet-ircu" to differentiate it from another
ircd known as ircu (which was created and is maintained by a former undernet
coder who forked project paths without changing project names).

Author:	"Coder-Com" <coder-com@undernet.org>
WWW:	http://coder-com.undernet.org

Generated with FreeBSD Port Tools 0.50
>How-To-Repeat:
>Fix:

--- undernet-ircu-2.10.11.06.shar begins here ---
# This is a shell archive.  Save it in a file, remove anything before
# this line, and then unpack it by entering "sh file".  Note, it may
# create directories; files and directories will be owned by you and
# have default permissions.
#
# This archive contains:
#
#	undernet-ircu
#	undernet-ircu/Makefile
#	undernet-ircu/distinfo
#	undernet-ircu/pkg-descr
#	undernet-ircu/files
#	undernet-ircu/files/patch-aa
#
echo c - undernet-ircu
mkdir -p undernet-ircu > /dev/null 2>&1
echo x - undernet-ircu/Makefile
sed 's/^X//' >undernet-ircu/Makefile << 'END-of-undernet-ircu/Makefile'
X# New ports collection makefile for:	undernet-ircu
X# Date created:				2004-2-17
X# Whom:					Walter Venable <weaseal@hotmail.com>
X#
X# $FreeBSD$
X
XPORTNAME=	undernet-ircu
XPORTVERSION=	2.10.11.06
XCATEGORIES=	irc net
XMASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
XMASTER_SITE_SUBDIR=	undernet-ircu
XDISTNAME=	ircu${PORTVERSION}
X
XMAINTAINER=	weaseal@users.sourceforge.net
XCOMMENT=	Undernet IRCU daemon
X
XCONFLICTS=	ircd-hybrid*
X
XGNU_CONFIGURE=		yes
XCONFIGURE_TARGET=	--build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
XCONFIGURE_ARGS=		--with-dpath=${PREFIX}/etc
X
XPLIST_FILES=	bin/chkconf bin/ircd etc/example.conf
X
XMAN8=		ircd.8
X
X.include <bsd.port.pre.mk>
X
Xpre-everything::
X
X	@${ECHO} ""
X	@${ECHO} "Here is a list of possible configuration options:"
X	@${ECHO} "(Note that options already selected will not be shown)"
X	@${ECHO} ""
X
X.if defined(ENABLE_POLL)
XCONFIGURE_ARGS+=	--enable-poll
X.else
X	@${ECHO} "	ENABLE_POLL: Force poll to be used regardless of whether or not"
X	@${ECHO} "	             it is a system call."
X.endif
X
X.if defined(ENABLE_DEBUG)
XCONFIGURE_ARGS+=	--enable-debug
X.else
X	@${ECHO} "	ENABLE_DEBUG: Turn on debugging mode."
X.endif
X
X.if defined(DISABLE_ASSERTS)
XCONFIGURE_ARGS+=	--disable-asserts
X.else
X	@${ECHO} "	DISABLE_ASSERTS: Disable assertion checking."
X.endif
X
X.if defined(DISABLE_SYMBOLS)
XCONFIGURE_ARGS+=	--disable-symbols
X.else
X	@${ECHO} "	DISABLE_SYMBOLS: Disable debugging symbols (remove -g from CFLAGS)."
X.endif
X
X.if defined(ENABLE_PROFILE)
XCONFIGURE_ARGS+=	--enable-profile
X.else
X	@${ECHO} "	ENABLE_PROFILE: Enable profiling support (add -pg to CFLAGS)."
X.endif
X
X.if defined(ENABLE_PEDANTIC)
XCONFIGURE_ARGS+=	--enable-pedantic
X.else
X	@${ECHO} "	ENABLE_PEDANTIC: Enable pedantic warnings (add -pedantic to CFLAGS)."
X.endif
X
X.if defined(ENABLE_WARNINGS)
XCONFIGURE_ARGS+=	--enable-warnings
X.else
X	@${ECHO} "	ENABLE_WARNINGS: Enable warnings (add -Wall to CFLAGS)."
X.endif
X
X.if defined(DISABLE_INLINES)
XCONFIGURE_ARGS+=	--disable-inlines
X.else
X	@${ECHO} "	DISABLE_INLINES: Disable inlining for a few critical functions."
X.endif
X
X.if defined(DISABLE_DEVPOLL)
XCONFIGURE_ARGS+=	--disable-devpoll
X.else
X	@${ECHO} "	DISABLE_DEVPOLL: Disable the /dev/poll-based engine."
X.endif
X
X.if defined(DISABLE_KQUEUE)
XCONFIGURE_ARGS+=	--disable-kqueue
X.else
X	@${ECHO} "	DISABLE_KQUEUE: Disable the kqueue-based engine."
X.endif
X
X.if defined(DISABLE_EPOLL)
XCONFIGURE_ARGS+=	--disable-epoll
X.else
X	@${ECHO} "	DISABLE_EPOLL: Disable the epoll-based engine."
X.endif
X	@${ECHO} ""
X	@${ECHO} "To select any of these options CTRL+C now!  Then, for example: "
X	@${ECHO} "	'make ENABLE_OPTION=1'."
X	@${ECHO} ""
Xpost-install:
X	@ ${ECHO} ""
X	@ ${ECHO} "	PLEASE NOTE:"
X	@ ${ECHO} "	When you 'make deinstall', a binary file will remain in ${PREFIX}/bin"
X	@ ${ECHO} "	with the name ircd.YEAR-MONTH-DAY-HOUR-MINUTE (of install).  This file"
X	@ ${ECHO} "	must be removed manually."
X	@ ${ECHO} ""
X
X.include <bsd.port.post.mk>
END-of-undernet-ircu/Makefile
echo x - undernet-ircu/distinfo
sed 's/^X//' >undernet-ircu/distinfo << 'END-of-undernet-ircu/distinfo'
XMD5 (ircu2.10.11.06.tar.gz) = b1863d044eaae96ccef8d3dba6725346
XSIZE (ircu2.10.11.06.tar.gz) = 833888
END-of-undernet-ircu/distinfo
echo x - undernet-ircu/pkg-descr
sed 's/^X//' >undernet-ircu/pkg-descr << 'END-of-undernet-ircu/pkg-descr'
XUndernet's popular and reliable irc daemon.  See website (URL below) for
Xdetails.
X
XNote that this port is titled "undernet-ircu" to differentiate it from another
Xircd known as ircu (which was created and is maintained by a former undernet
Xcoder who forked project paths without changing project names).
X
XAuthor:	"Coder-Com" <coder-com@undernet.org>
XWWW:	http://coder-com.undernet.org
END-of-undernet-ircu/pkg-descr
echo c - undernet-ircu/files
mkdir -p undernet-ircu/files > /dev/null 2>&1
echo x - undernet-ircu/files/patch-aa
sed 's/^X//' >undernet-ircu/files/patch-aa << 'END-of-undernet-ircu/files/patch-aa'
X--- ircd/Makefile.in	Sat Nov  1 05:19:09 2003
X+++ ircd/Makefile.in	Wed Feb 18 01:45:08 2004
X@@ -273,7 +273,7 @@
X 	  ${LN_S} ircd.`cat /tmp/ircd.tag` ${SYMLINK}; )
X 	@${RM} /tmp/ircd.tag
X 	${INSTALL} -s -m 700 -o ${IRCDOWN} -g ${IRCDGRP} chkconf ${BINDIR}
X-	${INSTALL} -m 600 -o ${IRCDOWN} -g ${IRCDGRP} ${top_srcdir}/doc/example.conf ${DPATH}
X+	${INSTALL} -m 600 -o ${IRCDOWN} -g ${IRCDGRP} ${top_srcdir}/doc/example.conf ${DPATH}/ircd.conf.example
X # 	( cd ${DPATH}; \
X # 	  ${TOUCH} ${MPATH}; \
X # 	  ${TOUCH} ${RPATH}; \
X@@ -291,7 +291,7 @@
X 	@echo "Installing new ircd as ${BINDIR}/ircd :"
X 	${INSTALL} -m ${IRCDMODE} -o ${IRCDOWN} -g ${IRCDGRP} ircd ${BINDIR}/ircd
X 	${INSTALL} -s -m 700 -o ${IRCDOWN} -g ${IRCDGRP} chkconf ${BINDIR}
X-	${INSTALL} -m 600 -o ${IRCDOWN} -g ${IRCDGRP} ${top_srcdir}/doc/example.conf ${DPATH}
X+	${INSTALL} -m 600 -o ${IRCDOWN} -g ${IRCDGRP} ${top_srcdir}/doc/example.conf ${DPATH}/ircd.conf.example
X # 	( cd ${DPATH}; \
X # 	  ${TOUCH} ${MPATH}; \
X # 	  ${TOUCH} ${RPATH}; \
END-of-undernet-ircu/files/patch-aa
exit
--- undernet-ircu-2.10.11.06.shar ends here ---

>Release-Note:
>Audit-Trail:

From: "Walter Venable" <weaseal@hotmail.com>
To: freebsd-gnats-submit@FreeBSD.org, weaseal@hotmail.com
Cc:  
Subject: Re: ports/62996: [NEW PORT] irc/undernet-ircu: Undernet IRCU daemon
Date: Wed, 18 Feb 2004 02:05:35 -0500

 You may remove this PR.  It contains an error which was replaced in an 
 incoming PR of the same title.
 
 _________________________________________________________________
 Get a FREE online computer virus scan from McAfee when you click here. 
 http://clinic.mcafee.com/clinic/ibuy/campaign.asp?cid=3963
 
State-Changed-From-To: open->closed 
State-Changed-By: linimon 
State-Changed-When: Tue Feb 17 23:42:51 PST 2004 
State-Changed-Why:  
Submitter notes that a corrected PR has been submitted. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=62996 
>Unformatted:
