aboutsummaryrefslogtreecommitdiff
path: root/irc/ircd-hybrid
diff options
context:
space:
mode:
authorBill Fumerola <billf@FreeBSD.org>1998-12-15 22:05:33 +0000
committerBill Fumerola <billf@FreeBSD.org>1998-12-15 22:05:33 +0000
commitc277b2875f4c4a6e9ed197ff3bd8a8ce132911be (patch)
tree4011c267940dffdec0b390df9b380b2c4ae1d1dd /irc/ircd-hybrid
parentdc91bb2cc1c9eedc621a625a8da0357523025f4e (diff)
downloadports-c277b2875f4c4a6e9ed197ff3bd8a8ce132911be.tar.gz
ports-c277b2875f4c4a6e9ed197ff3bd8a8ce132911be.zip
Update to 5.3p4
PR: ports/9075 Submitted by: Ken Monville <desmo@bandwidth.org> (maintainer)
Notes
Notes: svn path=/head/; revision=15368
Diffstat (limited to 'irc/ircd-hybrid')
-rw-r--r--irc/ircd-hybrid/Makefile6
-rw-r--r--irc/ircd-hybrid/distinfo2
-rw-r--r--irc/ircd-hybrid/pkg-comment2
-rw-r--r--irc/ircd-hybrid/pkg-descr6
-rw-r--r--irc/ircd-hybrid/pkg-install6
5 files changed, 15 insertions, 7 deletions
diff --git a/irc/ircd-hybrid/Makefile b/irc/ircd-hybrid/Makefile
index ed4f9aaa7cc8..f431db5697b1 100644
--- a/irc/ircd-hybrid/Makefile
+++ b/irc/ircd-hybrid/Makefile
@@ -1,12 +1,12 @@
# New ports collection makefile for: ircd-hybrid
-# Version required: 5.3p2
+# Version required: 5.3p4
# Date created: 9 January 1998
# Whom: desmo@bandwidth.org
#
-# $Id: Makefile,v 1.7 1998/08/30 18:35:41 steve Exp $
+# $Id: Makefile,v 1.8 1998/11/16 21:44:58 billf Exp $
#
-DISTNAME= ircd-hybrid-5.3p2
+DISTNAME= ircd-hybrid-5.3p4
CATEGORIES= net
MASTER_SITES= ftp://ftp.blackened.com/pub/irc/hybrid/
diff --git a/irc/ircd-hybrid/distinfo b/irc/ircd-hybrid/distinfo
index 532e3a0562b8..2fa296a6acdc 100644
--- a/irc/ircd-hybrid/distinfo
+++ b/irc/ircd-hybrid/distinfo
@@ -1 +1 @@
-MD5 (ircd-hybrid-5.3p2.tar.gz) = 6a00bffc4a70a00681c227d6dfa66262
+MD5 (ircd-hybrid-5.3p4.tar.gz) = 158ded5bae72504b7e9d42b155cf860e
diff --git a/irc/ircd-hybrid/pkg-comment b/irc/ircd-hybrid/pkg-comment
index 886bb7658419..5922bbd898dd 100644
--- a/irc/ircd-hybrid/pkg-comment
+++ b/irc/ircd-hybrid/pkg-comment
@@ -1 +1 @@
-An IRC Server.
+irc server with many implemented options
diff --git a/irc/ircd-hybrid/pkg-descr b/irc/ircd-hybrid/pkg-descr
index 0f34517b2ddd..b816dcb78e17 100644
--- a/irc/ircd-hybrid/pkg-descr
+++ b/irc/ircd-hybrid/pkg-descr
@@ -1,6 +1,8 @@
-Irc is a functional replacement for and improvement to talk(1). Talk
+IRC is a functional replacement for and improvement to talk(1). Talk
is an old, primitive, atrocious, minimalist sort of keyboard/screen
conversation tool, using a grotesque, machine-dependent protocol.
-Irc does everything talk does, but with a better protocol, allowing
+IRC does everything talk does, but with a better protocol, allowing
more than 2 users to talk at once, with access across the aggregate
Internet, and providing a whole raft of other useful features.
+
+ftp://ftp.blackened.com/pub/irc/hybrid/
diff --git a/irc/ircd-hybrid/pkg-install b/irc/ircd-hybrid/pkg-install
index 05cb85569905..1bd17605bbb3 100644
--- a/irc/ircd-hybrid/pkg-install
+++ b/irc/ircd-hybrid/pkg-install
@@ -53,6 +53,11 @@ echo ""
if pw groupshow ircd 2> /dev/null ; then
echo "You already have a group \"ircd\", so I will use it."
else
+ if pw usershow 72 2> /dev/null ; then
+ echo "You already have a uid \"72\". Please create a user \"ircd\""
+ echo "with a default group of \"ircd\"."
+ exit 1
+ fi
echo "You need a group \"ircd\"."
if which -s pw && yesno "Would you like me to create it" y; then
pw groupadd ircd -g 72 || exit
@@ -72,6 +77,7 @@ if pw usershow ircd 2> /dev/null ; then
else
echo "You need a user \"ircd\"."
if which -s pw && yesno "Would you like me to create it" y; then
+ ifkk
pw useradd ircd -g ircd -u 72 -h - -d /nonexistent \
-s /nonexistent -c "IRC Daemon" || exit
echo "Done."