From danfe@regency.nsu.ru  Thu Sep  4 11:27:57 2003
Return-Path: <danfe@regency.nsu.ru>
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 52A8716A4BF
	for <FreeBSD-gnats-submit@freebsd.org>; Thu,  4 Sep 2003 11:27:57 -0700 (PDT)
Received: from mx.nsu.ru (mx.nsu.ru [212.192.164.5])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 31FC043F93
	for <FreeBSD-gnats-submit@freebsd.org>; Thu,  4 Sep 2003 11:27:56 -0700 (PDT)
	(envelope-from danfe@regency.nsu.ru)
Received: from mail by mx.nsu.ru with drweb-scanned (Exim 3.35 #1 (Debian))
	id 19uysG-0004RC-00
	for <FreeBSD-gnats-submit@freebsd.org>; Fri, 05 Sep 2003 01:30:28 +0700
Received: from regency.nsu.ru ([193.124.210.26])
	by mx.nsu.ru with esmtp (Exim 3.35 #1 (Debian))
	id 19uysF-0004Od-00
	for <FreeBSD-gnats-submit@freebsd.org>; Fri, 05 Sep 2003 01:30:27 +0700
Received: from regency.nsu.ru (localhost [127.0.0.1])
	by regency.nsu.ru (8.12.9/8.12.9) with ESMTP id h84ITRvt081564
	for <FreeBSD-gnats-submit@freebsd.org>; Fri, 5 Sep 2003 01:29:27 +0700 (NOVST)
	(envelope-from danfe@regency.nsu.ru)
Received: (from danfe@localhost)
	by regency.nsu.ru (8.12.9/8.12.9/Submit) id h84ITRHJ081476;
	Fri, 5 Sep 2003 01:29:27 +0700 (NOVST)
Message-Id: <200309041829.h84ITRHJ081476@regency.nsu.ru>
Date: Fri, 5 Sep 2003 01:29:27 +0700 (NOVST)
From: Alexey Dokuchaev <danfe@regency.nsu.ru>
Reply-To: Alexey Dokuchaev <danfe@regency.nsu.ru>
To: FreeBSD-gnats-submit@freebsd.org
Cc:
Subject: games/fuhquake: small maintenance update
X-Send-Pr-Version: 3.113
X-GNATS-Notify:

>Number:         56453
>Category:       ports
>Synopsis:       games/fuhquake: small maintenance update
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    freebsd-ports-bugs
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          maintainer-update
>Submitter-Id:   current-users
>Arrival-Date:   Thu Sep 04 11:30:18 PDT 2003
>Closed-Date:    Fri Sep 05 02:06:19 PDT 2003
>Last-Modified:  Fri Sep 05 02:06:19 PDT 2003
>Originator:     Alexey Dokuchaev
>Release:        FreeBSD 4.8-STABLE i386
>Organization:
CNIT NSU
>Environment:
System: FreeBSD regency.nsu.ru 4.8-STABLE FreeBSD 4.8-STABLE #0: Fri Aug 8 20:27:14 NOVST 2003 root@regency.nsu.ru:/usr/obj/usr/src/sys/REGENCY i386
>Description:
This is a small patch to Makefile that does two things:
	- Silence GCC warnings on 5.x (missing \n at EOF)
	- Change bogus SED statement

This also closes PR ports/56425.

Submitted by:	Ulrich Spoerlein <q@uni.de>
>How-To-Repeat:
N/A
>Fix:
%%%
diff -ur /usr/ports/games/fuhquake/Makefile fuhquake/Makefile
--- /usr/ports/games/fuhquake/Makefile	Mon Sep  1 18:52:05 2003
+++ fuhquake/Makefile	Fri Sep  5 01:04:29 2003
@@ -106,6 +106,12 @@
 
 post-patch:
 	@${REINPLACE_CMD} -e 's|%%%%BASEDIR%%%%|${DATADIR}|' ${WRKSRC}/common.c
+.for file in cmd.h common.h render.h console.h quakedef.h cvar.h cvar_groups.h \
+	fmod.h config_manager.h auth.h logging.h ignore.h fchecks.h rulesets.h \
+	modules.h mp3_player.h r_local.h movie.c logging.c quotes.h zone.c \
+	gl_local.h gl_image.h gl_warp_sin.h
+	@${ECHO_CMD} "" >> ${WRKSRC}/${file}
+.endfor
 
 do-build:
 .if !defined(WITHOUT_X11)
@@ -143,6 +149,6 @@
 .endif
 
 post-install:
-	@${SED} -e 's|$${PREFIX}|${PREFIX}|g' ${PKGMESSAGE}
+	@${SED} -e 's|$${DATADIR}|${DATADIR}|g' ${PKGMESSAGE}
 
 .include <bsd.port.mk>

>Release-Note:
>Audit-Trail:

From: Alexey Dokuchaev <danfe@nsu.ru>
To: FreeBSD-gnats-submit@freebsd.org, freebsd-ports-bugs@freebsd.org
Cc:  
Subject: Re: ports/56453: games/fuhquake: small maintenance update
Date: Fri, 5 Sep 2003 02:00:24 +0700

 --HcAYCG3uE/tztfnV
 Content-Type: text/plain; charset=us-ascii
 Content-Disposition: inline
 
 Forgot one more patch (apply after previous one).
 
 	- Don't grumble about disabling x86 asm on non-i386 hardware,
 	  since obviously it won't be used anyway.
 
 ./danfe
 
 --HcAYCG3uE/tztfnV
 Content-Type: text/plain; charset=us-ascii
 Content-Disposition: attachment; filename=111
 
 --- /usr/ports/games/fuhquake/Makefile	Mon Sep  1 18:52:05 2003
 +++ Makefile	Fri Sep  5 01:59:23 2003
 @@ -91,7 +91,7 @@
  .if !defined(WITH_OPTIMIZED_CFLAGS)
  	@${ECHO_MSG} "Define WITH_OPTIMIZED_CFLAGS to enable extra optimization options"
  .endif
 -.if !defined(WITHOUT_X86_ASM)
 +.if ${ARCH} == "i386" && !defined(WITHOUT_X86_ASM)
  	@${ECHO_MSG} "Define WITHOUT_X86_ASM to disable x86 assembly code"
  .endif
  
 
 --HcAYCG3uE/tztfnV--
 
State-Changed-From-To: open->closed 
State-Changed-By: krion 
State-Changed-When: Fri Sep 5 02:06:10 PDT 2003 
State-Changed-Why:  
Committed, thanks! 

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