diff options
author | Chris Gianelloni <wolf31o2@gentoo.org> | 2004-04-04 07:10:06 +0000 |
---|---|---|
committer | Chris Gianelloni <wolf31o2@gentoo.org> | 2004-04-04 07:10:06 +0000 |
commit | 51de79b6ca05d9e3b8ac5a15158e1e1b75589c43 (patch) | |
tree | a5db011e1e3cbc355bca1fe8309e7357fbbcf030 /games-action | |
parent | Adding java-config 1.2.6 as a dep to resolve issue with -O parameter. Closes ... (diff) | |
download | gentoo-2-51de79b6ca05d9e3b8ac5a15158e1e1b75589c43.tar.gz gentoo-2-51de79b6ca05d9e3b8ac5a15158e1e1b75589c43.tar.bz2 gentoo-2-51de79b6ca05d9e3b8ac5a15158e1e1b75589c43.zip |
Fixed crash with 2.6 and closing bug #38862.
Diffstat (limited to 'games-action')
-rw-r--r-- | games-action/descent3/ChangeLog | 5 | ||||
-rw-r--r-- | games-action/descent3/descent3-1.4.0b.ebuild | 7 |
2 files changed, 9 insertions, 3 deletions
diff --git a/games-action/descent3/ChangeLog b/games-action/descent3/ChangeLog index 7be9fd6bb32e..e662ae0797db 100644 --- a/games-action/descent3/ChangeLog +++ b/games-action/descent3/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-action/descent3 # Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-action/descent3/ChangeLog,v 1.4 2004/03/19 21:16:58 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-action/descent3/ChangeLog,v 1.5 2004/04/04 07:10:06 wolf31o2 Exp $ + + 04 Apr 2004; Chris Gianelloni <wolf31o2@gentoo.org> descent3-1.4.0b.ebuild: + Fixed crash with 2.6 and closing bug #38862. 19 Mar 2004; Chris Gianelloni <wolf31o2@gentoo.org> descent3-1.4.0b.ebuild: Added -p to mkdir. Closing bug #43427. diff --git a/games-action/descent3/descent3-1.4.0b.ebuild b/games-action/descent3/descent3-1.4.0b.ebuild index c3081f3701cd..8c0b1901ee69 100644 --- a/games-action/descent3/descent3-1.4.0b.ebuild +++ b/games-action/descent3/descent3-1.4.0b.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-action/descent3/descent3-1.4.0b.ebuild,v 1.3 2004/03/19 21:16:58 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-action/descent3/descent3-1.4.0b.ebuild,v 1.4 2004/04/04 07:10:06 wolf31o2 Exp $ inherit games @@ -79,12 +79,15 @@ src_install() { # we run touch on ${D} so as to make sure portage doesnt do any such thing find ${Ddir} -exec touch '{}' \; - dodir ${GAMES_BINDIR} dogamesbin ${FILESDIR}/descent3 dosed "s:GENTOO_DIR:${dir}:" ${GAMES_BINDIR}/descent3 insinto /usr/share/pixmaps newins ${CDROM_ROOT}/icon.xpm descent3.xpm + # Fix for 2.6 kernel crash + cd ${Ddir} + ln -sf ppics.hog PPics.Hog + prepgamesdirs make_desktop_entry descent3 "Descent 3" "descent3.xpm" } |