diff options
author | Devan Franchini <twitch153@gentoo.org> | 2014-01-25 04:40:29 +0000 |
---|---|---|
committer | Devan Franchini <twitch153@gentoo.org> | 2014-01-25 04:40:29 +0000 |
commit | b5056fad985b5113ab071d9f2e0bec0c123507b6 (patch) | |
tree | ba44ff08c52dbf9ea4ef3fc81bba3fa48e039075 /games-emulation | |
parent | Version bump to 1.53 (diff) | |
download | gentoo-2-b5056fad985b5113ab071d9f2e0bec0c123507b6.tar.gz gentoo-2-b5056fad985b5113ab071d9f2e0bec0c123507b6.tar.bz2 gentoo-2-b5056fad985b5113ab071d9f2e0bec0c123507b6.zip |
Saves external GL folder from removal
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'games-emulation')
-rw-r--r-- | games-emulation/dolphin/ChangeLog | 5 | ||||
-rw-r--r-- | games-emulation/dolphin/dolphin-9999.ebuild | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/games-emulation/dolphin/ChangeLog b/games-emulation/dolphin/ChangeLog index 139610c6df15..c5782eab1b5d 100644 --- a/games-emulation/dolphin/ChangeLog +++ b/games-emulation/dolphin/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-emulation/dolphin # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/dolphin/ChangeLog,v 1.14 2014/01/24 17:23:50 twitch153 Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/dolphin/ChangeLog,v 1.15 2014/01/25 04:40:29 twitch153 Exp $ + + 25 Jan 2014; Devan Franchini <twitch153@gentoo.org> dolphin-9999.ebuild: + Saves external GL folder from removal 24 Jan 2014; Devan Franchini <twitch153@gentoo.org> dolphin-9999.ebuild: Removes deletion of CLRun dir, and updates dependency for glew diff --git a/games-emulation/dolphin/dolphin-9999.ebuild b/games-emulation/dolphin/dolphin-9999.ebuild index f86587a3730b..64b51750eabe 100644 --- a/games-emulation/dolphin/dolphin-9999.ebuild +++ b/games-emulation/dolphin/dolphin-9999.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/dolphin/dolphin-9999.ebuild,v 1.9 2014/01/24 17:23:50 twitch153 Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/dolphin/dolphin-9999.ebuild,v 1.10 2014/01/25 04:40:29 twitch153 Exp $ EAPI=5 @@ -90,13 +90,16 @@ src_prepare() { # Remove ALL the bundled libraries, aside from: # - SOIL: The sources are not public. # - Bochs-disasm: Don't know what it is. + # - GL: A custom gl.h file is used. mv Externals/SOIL . || die mv Externals/Bochs_disasm . || die mv Externals/polarssl . || die + mv Externals/GL . || die rm -r Externals/* || die "Failed to delete Externals dir." mv Bochs_disasm Externals || die mv SOIL Externals || die mv polarssl Externals || die + mv GL Externals || die } src_configure() { |