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 | f482ca9a6a3fb28baf4a25969080fa2bff74c759 (patch) | |
tree | 35ae894cc1df7598ead18735e4ee72b12b8df49a /games-action | |
parent | Adding java-config 1.2.6 as a dep to resolve issue with -O parameter. Closes ... (diff) | |
download | historical-f482ca9a6a3fb28baf4a25969080fa2bff74c759.tar.gz historical-f482ca9a6a3fb28baf4a25969080fa2bff74c759.tar.bz2 historical-f482ca9a6a3fb28baf4a25969080fa2bff74c759.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/Manifest | 4 | ||||
-rw-r--r-- | games-action/descent3/descent3-1.4.0b.ebuild | 7 |
3 files changed, 11 insertions, 5 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/Manifest b/games-action/descent3/Manifest index d32b290918cd..97fed1a4a660 100644 --- a/games-action/descent3/Manifest +++ b/games-action/descent3/Manifest @@ -1,5 +1,5 @@ -MD5 ba955261c1f216618ce0f429f8fab975 ChangeLog 649 +MD5 08934941d01cc8fb2d0819a687abefc9 ChangeLog 775 MD5 e43b9b7575f9c659feedda43ab915f01 metadata.xml 630 -MD5 bca97ed31cb84893959a0728da1821f5 descent3-1.4.0b.ebuild 2698 +MD5 5b3afed89e6e7ba8fe27d806b58caec9 descent3-1.4.0b.ebuild 2744 MD5 d2af265a871305bb7fa493725388a58d files/digest-descent3-1.4.0b 138 MD5 5fa77308aec1bb4ed9a32b2ed363148e files/descent3 43 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" } |