From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([69.77.167.62] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1JPoF9-0004fg-6Y for garchives@archives.gentoo.org; Fri, 15 Feb 2008 00:15:55 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2FA3BE066E; Fri, 15 Feb 2008 00:15:54 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 0BB24E066E for ; Fri, 15 Feb 2008 00:15:54 +0000 (UTC) Received: from stork.gentoo.org (stork.gentoo.org [64.127.104.133]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTP id 90033657D3 for ; Fri, 15 Feb 2008 00:15:53 +0000 (UTC) Received: from nyhm by stork.gentoo.org with local (Exim 4.68) (envelope-from ) id 1JPoF6-00029z-Fe for gentoo-commits@lists.gentoo.org; Fri, 15 Feb 2008 00:15:52 +0000 From: "Tristan Heaven (nyhm)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, nyhm@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in eclass: games.eclass X-VCS-Repository: gentoo-x86 X-VCS-Files: games.eclass X-VCS-Directories: eclass X-VCS-Committer: nyhm X-VCS-Committer-Name: Tristan Heaven Content-Type: text/plain; charset=utf8 Message-Id: Sender: Tristan Heaven Date: Fri, 15 Feb 2008 00:15:52 +0000 Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 0533e754-7b52-4d87-a7a3-190ef7ffb74f X-Archives-Hash: b0fcdce882f39d8150077007f3a5d5a7 nyhm 08/02/15 00:15:52 Modified: games.eclass Log: fix quoting in games_umod_unpack Revision Changes Path 1.124 eclass/games.eclass file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/games.eclas= s?rev=3D1.124&view=3Dmarkup plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/games.eclas= s?rev=3D1.124&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/games.eclas= s?r1=3D1.123&r2=3D1.124 Index: games.eclass =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /var/cvsroot/gentoo-x86/eclass/games.eclass,v retrieving revision 1.123 retrieving revision 1.124 diff -u -r1.123 -r1.124 --- games.eclass 6 Nov 2007 22:38:13 -0000 1.123 +++ games.eclass 15 Feb 2008 00:15:51 -0000 1.124 @@ -1,6 +1,6 @@ -# Copyright 1999-2006 Gentoo Foundation +# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/games.eclass,v 1.123 2007/11/0= 6 22:38:13 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/games.eclass,v 1.124 2008/02/1= 5 00:15:51 nyhm Exp $ =20 # devlist: {vapier,wolf31o2,mr_bones_}@gentoo.org -> games@gentoo.org # @@ -218,13 +218,13 @@ =20 # Unpacks .umod/.ut2mod/.ut4mod files for UT/UT2003/UT2004 # Usage: games_umod_unpack $1 +# oh, and don't forget to set 'dir' and 'Ddir' games_umod_unpack() { local umod=3D$1 - mkdir -p "${Ddir}/System" - cp "${dir}"/System/{ucc-bin,{Manifest,Def{ault,User}}.ini,{Engine,Core,= zlib,ogg,vorbis}.so,{Engine,Core}.int} ${Ddir}/System - export UT_DATA_PATH=3D"${Ddir}/System" - cd "${UT_DATA_PATH}" - ./ucc-bin umodunpack -x "${S}/${umod}" -nohomedir &> /dev/null \ + mkdir -p "${Ddir}"/System + cp "${dir}"/System/{ucc-bin,{Manifest,Def{ault,User}}.ini,{Engine,Core,= zlib,ogg,vorbis}.so,{Engine,Core}.int} "${Ddir}"/System + cd "${Ddir}"/System + UT_DATA_PATH=3D${Ddir}/System ./ucc-bin umodunpack -x "${S}/${umod}" -n= ohomedir &> /dev/null \ || die "uncompressing file ${umod}" rm -f "${Ddir}"/System/{ucc-bin,{Manifest,Def{ault,User},User,UT200{3,4= }}.ini,{Engine,Core,zlib,ogg,vorbis}.so,{Engine,Core}.int,ucc.log} &>/dev= /null \ || die "Removing temporary files" --=20 gentoo-commits@lists.gentoo.org mailing list