Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 15 Mar 2003 15:20:04 -0800 (PST)
From:      Ulrich Spoerlein <q@uni.de>
To:        freebsd-ports-bugs@FreeBSD.org
Subject:   Re: ports/50024: games/quakeforge: zpak looks for /bin/bash and fails
Message-ID:  <200303152320.h2FNK48H046346@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
The following reply was made to PR ports/50024; it has been noted by GNATS.

From: Ulrich Spoerlein <q@uni.de>
To: Dan Naumov <dan.naumov@ofw.fi>
Cc: FreeBSD-gnats-submit@FreeBSD.org, netchild@FreeBSD.org
Subject: Re: ports/50024: games/quakeforge: zpak looks for /bin/bash and fails
Date: Sun, 16 Mar 2003 00:10:26 +0100

 It's actually a plain-sh script, so there is no need to add a bash
 dependancy. The attached patch should work fine and fixes a minor quirk
 with the script.
 
 
 For the committer:
 
 I said to maintain the port and Alexander put the following into
 the commit log "Give maintainership to Ulrich Spoerlein <q@uni.de> from
 ports." but it's still set to ports@freebsd.org
 
 Please put the following as "patch-zpak" into games/quakeforge/files
 Thanks.
 
 --- tools/zpak.orig	Sat Mar 15 23:32:09 2003
 +++ tools/zpak	Sat Mar 15 23:58:52 2003
 @@ -1,4 +1,4 @@
 -#! /bin/bash
 +#!/bin/sh
  # create pak files with gzipped internals
  
  if [ $# -eq 0 ]; then
 @@ -18,7 +18,7 @@
  
  	# cosmetic (gzip preserves timestamps.. could come in handy)
  	find * -type f \
 -	-exec touch {} -r ${pakfile} \;
 +	-exec touch -r ${pakfile} {} \;
  
  	find * -type f \
  	! -name '*.gz' ! -name '*.jpg' ! -name '*.ogg' ! -name '*.png' \

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports-bugs" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200303152320.h2FNK48H046346>