diff options
author | 2006-09-27 15:59:18 +0000 | |
---|---|---|
committer | 2006-09-27 15:59:18 +0000 | |
commit | 0979d97213ff82bbcd785140883980f9cf1faeff (patch) | |
tree | 1f75ad1cd86dcb8d73738b45560122ca954e4a5c /games-arcade | |
parent | Stable on alpha wrt bug #148228 (diff) | |
download | gentoo-2-0979d97213ff82bbcd785140883980f9cf1faeff.tar.gz gentoo-2-0979d97213ff82bbcd785140883980f9cf1faeff.tar.bz2 gentoo-2-0979d97213ff82bbcd785140883980f9cf1faeff.zip |
Check sdl-mixer is built with USE=mikmod, bug #145139
(Portage version: 2.1.2_pre1-r3)
Diffstat (limited to 'games-arcade')
-rw-r--r-- | games-arcade/solarwolf/ChangeLog | 5 | ||||
-rw-r--r-- | games-arcade/solarwolf/files/digest-solarwolf-1.5 | 2 | ||||
-rw-r--r-- | games-arcade/solarwolf/solarwolf-1.5.ebuild | 9 |
3 files changed, 14 insertions, 2 deletions
diff --git a/games-arcade/solarwolf/ChangeLog b/games-arcade/solarwolf/ChangeLog index 72818d7fcf2c..88a72066125b 100644 --- a/games-arcade/solarwolf/ChangeLog +++ b/games-arcade/solarwolf/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-arcade/solarwolf # Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-arcade/solarwolf/ChangeLog,v 1.15 2006/05/09 15:41:19 tcort Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-arcade/solarwolf/ChangeLog,v 1.16 2006/09/27 15:59:18 nyhm Exp $ + + 27 Sep 2006; Tristan Heaven <nyhm@gentoo.org> solarwolf-1.5.ebuild: + Check sdl-mixer is built with USE=mikmod, bug #145139 09 May 2006; Thomas Cort <tcort@gentoo.org> solarwolf-1.5.ebuild: Stable on alpha. diff --git a/games-arcade/solarwolf/files/digest-solarwolf-1.5 b/games-arcade/solarwolf/files/digest-solarwolf-1.5 index 926c9e950c14..d6b9719c08c9 100644 --- a/games-arcade/solarwolf/files/digest-solarwolf-1.5 +++ b/games-arcade/solarwolf/files/digest-solarwolf-1.5 @@ -1 +1,3 @@ MD5 52fbed0a33c3c4c08d9dc0e533f90f8c solarwolf-1.5.tar.gz 2045888 +RMD160 5ac1d38aa7321d9cd9785c41070f4a98f2218258 solarwolf-1.5.tar.gz 2045888 +SHA256 bd261c17e9aad6ab18925d74bbdeaf8e57d24e707c96f7073386561d8ebd219f solarwolf-1.5.tar.gz 2045888 diff --git a/games-arcade/solarwolf/solarwolf-1.5.ebuild b/games-arcade/solarwolf/solarwolf-1.5.ebuild index 661b6a7b37cb..9b0d6fe36d84 100644 --- a/games-arcade/solarwolf/solarwolf-1.5.ebuild +++ b/games-arcade/solarwolf/solarwolf-1.5.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-arcade/solarwolf/solarwolf-1.5.ebuild,v 1.12 2006/05/09 15:41:19 tcort Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-arcade/solarwolf/solarwolf-1.5.ebuild,v 1.13 2006/09/27 15:59:18 nyhm Exp $ inherit eutils games @@ -17,6 +17,13 @@ DEPEND=">=dev-python/pygame-1.5.6 >=dev-lang/python-2.3 media-libs/libsdl" +pkg_setup() { + games_pkg_setup + if ! built_with_use media-libs/sdl-mixer mikmod ; then + die "You need to build media-libs/sdl-mixer with USE=mikmod" + fi +} + src_unpack() { unpack ${A} find "${S}" -name .xvpics -print0 | xargs -0 rm -fr |