diff options
author | Chris Gianelloni <wolf31o2@gentoo.org> | 2005-10-21 18:24:23 +0000 |
---|---|---|
committer | Chris Gianelloni <wolf31o2@gentoo.org> | 2005-10-21 18:24:23 +0000 |
commit | 95e83fda2c0f57d7e7b27f46e5645d92c6eae0a2 (patch) | |
tree | 30f8138c9aa5cbad77e725a981150e682c963be5 /eclass/games.eclass | |
parent | Added addition dir variable to games_make_wrapper for bug #109793. (diff) | |
download | gentoo-2-95e83fda2c0f57d7e7b27f46e5645d92c6eae0a2.tar.gz gentoo-2-95e83fda2c0f57d7e7b27f46e5645d92c6eae0a2.tar.bz2 gentoo-2-95e83fda2c0f57d7e7b27f46e5645d92c6eae0a2.zip |
Added makeself 2.1.5 support and fixing games_ut_unpack for proper ut2004 support.
Diffstat (limited to 'eclass/games.eclass')
-rw-r--r-- | eclass/games.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/games.eclass b/eclass/games.eclass index a9da730a6824..557ac73b8a38 100644 --- a/eclass/games.eclass +++ b/eclass/games.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/games.eclass,v 1.105 2005/09/04 06:27:36 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/games.eclass,v 1.106 2005/10/21 18:24:23 wolf31o2 Exp $ # # devlist: {vapier,wolf31o2,mr_bones_}@gentoo.org -> games@gentoo.org # @@ -192,7 +192,7 @@ games_pkg_postinst() { echo } -# Unpack .uz(2) files for UT/UT2003 +# Unpack .uz(2) files for UT/UT2003/UT2004 # $1: directory or file to unpack games_ut_unpack() { local ut_unpack="$1" @@ -224,6 +224,6 @@ games_umod_unpack() { cd "${UT_DATA_PATH}" ./ucc-bin umodunpack -x "${S}/${umod}" -nohomedir &> /dev/null \ || die "uncompressing file ${umod}" - rm -f "${Ddir}"/System/{ucc-bin,{Manifest,Def{ault,User},User,UT2003}.ini,{Engine,Core,zlib,ogg,vorbis}.so,{Engine,Core}.int,ucc.log} &>/dev/null \ + 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" } |