Date: Wed, 14 Jul 1999 23:15:03 +0800 (CST) From: "[oldsister0]" <ymtseng@SungShan.Dorm13.NCTU.edu.tw> To: FreeBSD-gnats-submit@freebsd.org Subject: ports/12641: update ports:game/bnetd Message-ID: <199907141515.XAA62667@SungShan.Dorm13.NCTU.edu.tw>
next in thread | raw e-mail | index | archive | help
>Number: 12641 >Category: ports >Synopsis: update ports:game/bnetd >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Jul 14 08:20:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: [oldsister0] >Release: FreeBSD 4.0-CURRENT i386 >Organization: NCTUCSIE >Environment: FreeBSD SungShan.Dorm13.NCTU.edu.tw 4.0-CURRENT FreeBSD 4.0-CURRENT #0: Wed Jul 7 23:14:48 CST 1999 ymtseng@SungShan.Dorm13.NCTU.edu.tw:/usr/src/sys/compile/DREAMER i386 >Description: update bnetd to 0.4.11 >How-To-Repeat: >Fix: diff -ruN /usr/ports/games/bnetd/Makefile bnetd/Makefile --- /usr/ports/games/bnetd/Makefile Mon Jul 12 21:43:28 1999 +++ bnetd/Makefile Wed Jul 14 02:43:28 1999 @@ -1,12 +1,12 @@ # New ports collection makefile for: bnetd -# Version required: 0.4.6 +# Version required: 0.4.11 # Date created: 24 April 1999 # Whom: Ying-Chieh Liao <ijliao@csie.nctu.edu.tw> # # $Id: Makefile,v 1.4 1999/07/09 00:49:29 cpiazza Exp $ # -DISTNAME= bnetd-0.4.9 +DISTNAME= bnetd-0.4.11 CATEGORIES= games net MASTER_SITES= http://www.bnetd.org/files/ @@ -16,14 +16,17 @@ MAN4= bnetd.conf.4 bntext.4 MLINKS= bntext.4 bnmotd.txt.4 bntext.4 bnnews.txt.4 +do-configure: + @(cd ${WRKSRC}/src; ./configure) + do-build: @(cd ${WRKSRC}/src; ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS}) do-install: - cd ${WRKSRC}/bin; ${INSTALL_PROGRAM} bnchat bnftp bnpass ${PREFIX}/bin + cd ${WRKSRC}/bin; ${INSTALL_PROGRAM} bnbot bnchat bnftp bnpass ${PREFIX}/bin cd ${WRKSRC}/sbin; ${INSTALL_PROGRAM} bnetd ${PREFIX}/sbin cd ${WRKSRC}/man; ${INSTALL_MAN} ${MAN1} ${MAN1PREFIX}/man/man1; ${INSTALL_MAN} ${MAN4} ${MAN4PREFIX}/man/man4 - ${MKDIR} ${PREFIX}/bnetd; ${CP} -R ${WRKSRC}/files ${WRKSRC}/users ${WRKSRC}/conf ${PREFIX}/bnetd + ${MKDIR} ${PREFIX}/bnetd; ${CP} -R ${WRKSRC}/files ${WRKSRC}/users ${WRKSRC}/conf ${WRKSRC}/reports ${PREFIX}/bnetd post-install: @if [ ! -f ${PREFIX}/etc/rc.d/bnetd.sh ]; then \ diff -ruN /usr/ports/games/bnetd/files/md5 bnetd/files/md5 --- /usr/ports/games/bnetd/files/md5 Mon Jul 12 21:43:28 1999 +++ bnetd/files/md5 Fri Jul 9 13:21:27 1999 @@ -1 +1 @@ -MD5 (bnetd-0.4.9.tar.gz) = 399a5f0f0e4ad77e3f276a73c2a44429 +MD5 (bnetd-0.4.11.tar.gz) = 6d89215514429e7331ff0770bced2d6a diff -ruN /usr/ports/games/bnetd/patches/patch-aa bnetd/patches/patch-aa --- /usr/ports/games/bnetd/patches/patch-aa Fri Jul 9 08:50:09 1999 +++ bnetd/patches/patch-aa Wed Jul 14 02:25:25 1999 @@ -1,11 +1,11 @@ ---- src/Makefile.orig Fri Jul 9 17:41:52 1999 -+++ src/Makefile Fri Jul 9 17:42:17 1999 -@@ -23,7 +23,7 @@ - - # GCC - #CC = gcc -pipe -s -O2 --CC = gcc -pipe -g -O2 -+CC += ${CFLAGS} - #CC = gcc -pipe -pg -g -O0 - #CC = gcc -pipe -g -O0 -Wall -Wshadow -Wcast-align -Wwrite-strings -Wstrict-prototypes -Wmissing-declarations -Wnested-externs - #CC = gcc -pipe -g -O2 -Wall -Wshadow -Wcast-align -Wwrite-strings -Wstrict-prototypes -Wmissing-declarations -Wnested-externs +--- src/Makefile.in.orig Wed Jul 14 02:24:31 1999 ++++ src/Makefile.in Wed Jul 14 02:24:47 1999 +@@ -84,7 +84,7 @@ + bnpass_OBJECTS = bnpass.o bnethash.o eventlog.o + bnpass_LDADD = $(LDADD) + bnpass_LDFLAGS = +-CFLAGS = @CFLAGS@ ++CFLAGS = -pipe -O2 + COMPILE = $(CC) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) + CCLD = $(CC) + LINK = $(CCLD) $(CFLAGS) $(LDFLAGS) -o $@ diff -ruN /usr/ports/games/bnetd/patches/patch-ab bnetd/patches/patch-ab --- /usr/ports/games/bnetd/patches/patch-ab Fri Jul 9 08:50:10 1999 +++ bnetd/patches/patch-ab Thu Jan 1 08:00:00 1970 @@ -1,12 +0,0 @@ ---- src/command.c.orig Fri Jul 9 17:44:02 1999 -+++ src/command.c Fri Jul 9 17:44:29 1999 -@@ -17,6 +17,9 @@ - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ -+ -+#include <sys/types.h> -+ - #include "setup.h" - #include <stdio.h> - #include <string.h> diff -ruN /usr/ports/games/bnetd/pkg/PLIST bnetd/pkg/PLIST --- /usr/ports/games/bnetd/pkg/PLIST Mon Jul 12 21:43:28 1999 +++ bnetd/pkg/PLIST Fri Jul 9 13:18:31 1999 @@ -1,3 +1,4 @@ +bin/bnbot bin/bnchat bin/bnftp bin/bnpass >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199907141515.XAA62667>