diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2011-11-01 21:26:19 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2011-11-01 21:26:19 +0000 |
commit | 14766338ce4f94f6acb2e6e418d991b65504de8f (patch) | |
tree | 750f0d8b5060119e222d6b5fa1d82b870b85aa94 /games-puzzle | |
parent | Add Erik Falor <ewfalor@gmail.com> as proxy-maintainer (diff) | |
download | gentoo-2-14766338ce4f94f6acb2e6e418d991b65504de8f.tar.gz gentoo-2-14766338ce4f94f6acb2e6e418d991b65504de8f.tar.bz2 gentoo-2-14766338ce4f94f6acb2e6e418d991b65504de8f.zip |
add a warning if no music is going to be played (bug #388975)
(Portage version: 2.1.10.11/cvs/Linux i686)
Diffstat (limited to 'games-puzzle')
-rw-r--r-- | games-puzzle/pathological/ChangeLog | 8 | ||||
-rw-r--r-- | games-puzzle/pathological/pathological-1.1.3-r2.ebuild | 15 |
2 files changed, 19 insertions, 4 deletions
diff --git a/games-puzzle/pathological/ChangeLog b/games-puzzle/pathological/ChangeLog index e4796665ba78..0a1616eea474 100644 --- a/games-puzzle/pathological/ChangeLog +++ b/games-puzzle/pathological/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for games-puzzle/pathological -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-puzzle/pathological/ChangeLog,v 1.19 2008/06/25 18:56:36 nixnut Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-puzzle/pathological/ChangeLog,v 1.20 2011/11/01 21:26:19 mr_bones_ Exp $ + + 01 Nov 2011; Michael Sterrett <mr_bones_@gentoo.org> + pathological-1.1.3-r2.ebuild: + add a warning if no music is going to be played (bug #388975) 25 Jun 2008; nixnut <nixnut@gentoo.org> pathological-1.1.3-r2.ebuild: Stable on ppc wrt bug 228965 diff --git a/games-puzzle/pathological/pathological-1.1.3-r2.ebuild b/games-puzzle/pathological/pathological-1.1.3-r2.ebuild index b4caf9baee0a..cbf4454cd176 100644 --- a/games-puzzle/pathological/pathological-1.1.3-r2.ebuild +++ b/games-puzzle/pathological/pathological-1.1.3-r2.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-puzzle/pathological/pathological-1.1.3-r2.ebuild,v 1.8 2008/06/26 03:29:29 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-puzzle/pathological/pathological-1.1.3-r2.ebuild,v 1.9 2011/11/01 21:26:19 mr_bones_ Exp $ inherit eutils games @@ -69,3 +69,14 @@ src_install() { rm -f "${D}/${GAMES_DATADIR}"/${PN}/graphics/*.xcf prepgamesdirs } + +pkg_postinst() { + games_pkg_postinst + if ! has_version "media-libs/sdl-mixer[mikmod]" ; then + echo + elog "Since you have turned off the mikmod use flag for media-libs/sdl-mixer" + elog "no background music will be played." + echo + fi + +} |