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 | a624f2d938f2a0f4664fa241047ab0fe6c8e8302 (patch) | |
tree | 5e71c5efa2e02a28727d7e542c15f4b0a88036cf /games-fps/ut2004 | |
parent | multilib fix (diff) | |
download | historical-a624f2d938f2a0f4664fa241047ab0fe6c8e8302.tar.gz historical-a624f2d938f2a0f4664fa241047ab0fe6c8e8302.tar.bz2 historical-a624f2d938f2a0f4664fa241047ab0fe6c8e8302.zip |
Adding a chmod u+w before uncompression since files are coming from CD.
Diffstat (limited to 'games-fps/ut2004')
-rw-r--r-- | games-fps/ut2004/ChangeLog | 5 | ||||
-rw-r--r-- | games-fps/ut2004/Manifest | 4 | ||||
-rw-r--r-- | games-fps/ut2004/ut2004-3204.ebuild | 3 |
3 files changed, 8 insertions, 4 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/Manifest b/games-fps/ut2004/Manifest index c70526eb67b4..f5ce10f9ca37 100644 --- a/games-fps/ut2004/Manifest +++ b/games-fps/ut2004/Manifest @@ -1,5 +1,5 @@ -MD5 ad985417cf27f97fe699c910e3f2a674 ut2004-3204.ebuild 7144 -MD5 3332768f8c7629ba1b334f003ebeba85 ChangeLog 653 +MD5 17b78b2effc2a222b3cd77c80751d7b2 ut2004-3204.ebuild 7193 +MD5 71332707cf857fde37c28963874bf000 ChangeLog 802 MD5 11a7e1491b1ac042ac7216b26b4ad1fb metadata.xml 254 MD5 e199cda0f458ab3a4b3ca2e482451c8f files/ut2004.xml 358 MD5 38a2ab1b4c41c3400282d142baabc6e1 files/digest-ut2004-3204 74 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 |