diff options
author | Chris Gianelloni <wolf31o2@gentoo.org> | 2004-05-24 16:54:48 +0000 |
---|---|---|
committer | Chris Gianelloni <wolf31o2@gentoo.org> | 2004-05-24 16:54:48 +0000 |
commit | 770bf34ffc07084397149ff57aef00d4550769fc (patch) | |
tree | 3e74c4402f1cdb9691504331ca34d323d2bc982f /games-fps | |
parent | multilib fix (Manifest recommit) (diff) | |
download | gentoo-2-770bf34ffc07084397149ff57aef00d4550769fc.tar.gz gentoo-2-770bf34ffc07084397149ff57aef00d4550769fc.tar.bz2 gentoo-2-770bf34ffc07084397149ff57aef00d4550769fc.zip |
Adding a chmod u+w before uncompression since files are coming from CD.
Diffstat (limited to 'games-fps')
-rw-r--r-- | games-fps/ut2004/ChangeLog | 5 | ||||
-rw-r--r-- | games-fps/ut2004/ut2004-3204.ebuild | 3 |
2 files changed, 6 insertions, 2 deletions
diff --git a/games-fps/ut2004/ChangeLog b/games-fps/ut2004/ChangeLog index 11579ff0f663..9f9dcaffc9ed 100644 --- a/games-fps/ut2004/ChangeLog +++ b/games-fps/ut2004/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-fps/ut2004 # Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-fps/ut2004/ChangeLog,v 1.3 2004/05/21 13:55:24 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-fps/ut2004/ChangeLog,v 1.4 2004/05/24 16:54:48 wolf31o2 Exp $ + + 24 May 2004; Chris Gianelloni <wolf31o2@gentoo.org> ut2004-3204.ebuild: + Adding a chmod u+w before uncompression since files are coming from CD. 21 May 2004; Chris Gianelloni <wolf31o2@gentoo.org> ut2004-3204.ebuild: Fixing my SNAFU in src_unpack and closing bug #51644. diff --git a/games-fps/ut2004/ut2004-3204.ebuild b/games-fps/ut2004/ut2004-3204.ebuild index 37add81784fe..8f256bc0ab1d 100644 --- a/games-fps/ut2004/ut2004-3204.ebuild +++ b/games-fps/ut2004/ut2004-3204.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-fps/ut2004/ut2004-3204.ebuild,v 1.3 2004/05/21 13:55:24 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-fps/ut2004/ut2004-3204.ebuild,v 1.4 2004/05/24 16:54:48 wolf31o2 Exp $ inherit games @@ -139,6 +139,7 @@ src_install() { # uncompressing files einfo "Uncompressing files... this *will* take a while..." for j in {Animations,Maps,Sounds,StaticMeshes,Textures} ; do + chmod -R u+w ${j} || die "chmod in uncompress" games_ut_unpack ${Ddir}/${j} || die "uncompressing files" done |