From owner-freebsd-ports Sat May 8 13:57:28 1999 Delivered-To: freebsd-ports@freebsd.org Received: from norn.ca.eu.org (cr965240-b.abtsfd1.bc.wave.home.com [24.113.19.137]) by hub.freebsd.org (Postfix) with ESMTP id 43A2B151B2 for ; Sat, 8 May 1999 13:57:19 -0700 (PDT) (envelope-from norn@norn.ca.eu.org) Received: by norn.ca.eu.org (Postfix, from userid 1000) id D16E014A8; Sat, 8 May 1999 13:57:14 -0700 (PDT) Content-Length: 4446 Message-ID: X-Mailer: XFMail 1.3 [p0] on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <199905080150.SAA09657@freefall.freebsd.org> Date: Sat, 08 May 1999 13:57:14 -0700 (PDT) Reply-To: Chris Piazza From: Chris Piazza To: Chris Piazza Subject: RE: ports/11567: Update: games/xqf Cc: freebsd-ports@FreeBSD.ORG Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I took another look at this and I see the qstat 2.3c support now. It is important that users update their qstat, though. Files removed: patch-ab New patch below: Index: xqf/Makefile =================================================================== RCS file: /cvs/FreeBSD/ports/games/xqf/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- Makefile 1999/04/22 03:20:14 1.2 +++ Makefile 1999/05/08 20:50:22 @@ -1,12 +1,12 @@ # New ports collection makefile for: xqf -# Version required: 0.8.7.2 +# Version required: 0.8.99.2 # Date created: 08 February 1999 # Whom: steve farrell # # $Id: Makefile,v 1.2 1999/04/22 03:20:14 mharo Exp $ # -DISTNAME= xqf-0.8.99.1 +DISTNAME= xqf-0.8.99.2 CATEGORIES= games MASTER_SITES= ftp://ftp.linuxgames.com/xqf/ @@ -16,5 +16,8 @@ LIB_DEPENDS= gtk12:${PORTSDIR}/x11-toolkits/gtk12 USE_GMAKE= yes + +post-install: + @ ${CAT} ${PKGDIR}/MESSAGE .include Index: xqf/files/md5 =================================================================== RCS file: /cvs/FreeBSD/ports/games/xqf/files/md5,v retrieving revision 1.2 diff -u -r1.2 md5 --- md5 1999/04/22 03:20:14 1.2 +++ md5 1999/05/08 19:40:19 @@ -1 +1 @@ -MD5 (xqf-0.8.99.1.tar.gz) = 09ca80d248b3e469fb4d852c268ed740 +MD5 (xqf-0.8.99.2.tar.gz) = c8ebcbfb208644a56580962e370a6a45 Index: xqf/patches/patch-aa =================================================================== RCS file: /cvs/FreeBSD/ports/games/xqf/patches/patch-aa,v retrieving revision 1.2 diff -u -r1.2 patch-aa --- patch-aa 1999/04/22 03:20:15 1.2 +++ patch-aa 1999/05/08 20:47:41 @@ -1,34 +1,30 @@ -*** Makefile.orig Wed Apr 21 19:36:44 1999 ---- Makefile Thu Apr 22 10:26:50 1999 -*************** -*** 1,6 **** - CC = gcc -! CFLAGS = -O2 -g -Wall `gtk-config --cflags` # -DDEBUG #-DDNS_STANDALONE -! LDFLAGS = `gtk-config --libs` - - INSTALL_ROOT = /usr/local - ---- 1,6 ---- - CC = gcc -! CFLAGS = -O2 -g -Wall `gtk12-config --cflags` # -DDEBUG #-DDNS_STANDALONE -! LDFLAGS = `gtk12-config --libs` - - INSTALL_ROOT = /usr/local - -*************** -*** 22,28 **** - $(CC) $(CFLAGS) $(CPPFLAGS) -MM $$i; done) > Makefile - - install: -! install -s -m 755 -g root -o root $(TARGET) $(INSTALL_ROOT)/bin - - clean: - rm -f *.[oasi] *~ core $(TARGET) Makefile.old ---- 22,28 ---- - $(CC) $(CFLAGS) $(CPPFLAGS) -MM $$i; done) > Makefile - - install: -! install -c -s -m 755 -g wheel -o root $(TARGET) $(INSTALL_ROOT)/bin - - clean: - rm -f *.[oasi] *~ core $(TARGET) Makefile.old +--- Makefile.orig Fri May 7 09:03:16 1999 ++++ Makefile Sat May 8 13:47:29 1999 +@@ -17,13 +17,13 @@ + # -DDEBUG + # + +-EXTRA_CFLAGS = # -DQSTAT23 -DCOMPRESSOR_BZIP2 # -DDEBUG ++EXTRA_CFLAGS = -DQSTAT23 #-DCOMPRESSOR_BZIP2 # -DDEBUG + +-CC = gcc +-CFLAGS = -O2 -g -Wall `gtk-config --cflags` $(EXTRA_CFLAGS) +-LDFLAGS = `gtk-config --libs` ++CC ?= gcc ++CFLAGS += `gtk12-config --cflags` $(EXTRA_CFLAGS) ++LDFLAGS = `gtk12-config --libs` + +-INSTALL_ROOT = /usr/local ++INSTALL_ROOT = ${PREFIX} + + TARGET = xqf + OBJS = xqf.o xqf-ui.o game.o pref.o server.o stat.o rc.o dialogs.o \ +@@ -43,7 +43,7 @@ + $(CC) $(CFLAGS) $(CPPFLAGS) -MM $$i; done) > Makefile + + install: +- install -s -m 755 -g root -o root $(TARGET) $(INSTALL_ROOT)/bin ++ install -c -s -m 755 -g wheel -o root $(TARGET) $(INSTALL_ROOT)/bin + + clean: + rm -f *.[oasi] *~ core $(TARGET) Makefile.old Index: xqf/patches/patch-ab =================================================================== RCS file: patch-ab diff -N patch-ab --- /tmp/cvsE45380 Sat May 8 13:54:03 1999 +++ /dev/null Sat May 8 13:51:45 1999 @@ -1,12 +0,0 @@ -*** srv-list.c.orig Thu Apr 22 10:29:49 1999 ---- srv-list.c Thu Apr 22 10:29:50 1999 -*************** -*** 16,21 **** ---- 16,22 ---- - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA - */ - -+ #include - #include /* inet_ntoa */ - #include /* inet_ntoa */ - #include /* inet_ntoa */ --- Chris Piazza Abbotsford, BC, Canada cpiazza@home.net finger norn@norn.ca.eu.org for PGP key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message