diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2009-04-04 21:17:52 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2009-04-04 21:17:52 +0000 |
commit | f6a3299f9bca695b7b568d2b4f0aedf9973ea2f0 (patch) | |
tree | 421b0f55cfea3a1415c14fe713f58db84294b5f1 /games-action/chromium | |
parent | Fix build failure on SuperH, bug 262359. (diff) | |
download | gentoo-2-f6a3299f9bca695b7b568d2b4f0aedf9973ea2f0.tar.gz gentoo-2-f6a3299f9bca695b7b568d2b4f0aedf9973ea2f0.tar.bz2 gentoo-2-f6a3299f9bca695b7b568d2b4f0aedf9973ea2f0.zip |
fix desktop entry with patch from Chris Mayo (bug #264902)
(Portage version: 2.1.6.7/cvs/Linux i686)
Diffstat (limited to 'games-action/chromium')
-rw-r--r-- | games-action/chromium/ChangeLog | 6 | ||||
-rw-r--r-- | games-action/chromium/chromium-0.9.14.ebuild | 12 |
2 files changed, 11 insertions, 7 deletions
diff --git a/games-action/chromium/ChangeLog b/games-action/chromium/ChangeLog index bd0731cc9644..1f313f5e8444 100644 --- a/games-action/chromium/ChangeLog +++ b/games-action/chromium/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for games-action/chromium # Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-action/chromium/ChangeLog,v 1.36 2009/03/30 16:10:53 scarabeus Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-action/chromium/ChangeLog,v 1.37 2009/04/04 21:17:52 mr_bones_ Exp $ + + 04 Apr 2009; Michael Sterrett <mr_bones_@gentoo.org> + chromium-0.9.14.ebuild: + fix desktop entry with patch from Chris Mayo (bug #264902) *chromium-0.9.14 (30 Mar 2009) diff --git a/games-action/chromium/chromium-0.9.14.ebuild b/games-action/chromium/chromium-0.9.14.ebuild index b6a1008e9d20..734b1803a6ba 100644 --- a/games-action/chromium/chromium-0.9.14.ebuild +++ b/games-action/chromium/chromium-0.9.14.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-action/chromium/chromium-0.9.14.ebuild,v 1.1 2009/03/30 16:10:53 scarabeus Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-action/chromium/chromium-0.9.14.ebuild,v 1.2 2009/04/04 21:17:52 mr_bones_ Exp $ EAPI=2 inherit eutils games @@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/chromium-bsu/${MY_P}.tar.gz" LICENSE="Artistic" SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" +KEYWORDS="~amd64 ~ppc x86" IUSE="+mixer nls +sdl" RDEPEND="media-fonts/dejavu @@ -39,12 +39,12 @@ S="${WORKDIR}/${MY_P}" src_configure() { egamesconf \ --disable-dependency-tracking \ - --disable-ftgl - --enable-glc + --disable-ftgl \ + --enable-glc \ --with-font-path="/usr/share/fonts/dejavu/DejaVuSerif-Bold.ttf" \ $(use_enable mixer sdlmixer) \ $(use_enable !mixer openal) \ - $(use_enable nls) + $(use_enable nls) \ $(use_enable sdl) \ $(use_enable sdl sdlimage) \ $(use_enable !sdl glut) @@ -56,7 +56,7 @@ src_install() { # remove installed /usr/games/share stuff rm -rf "${D}"/"${GAMES_PREFIX}"/share/ newicon misc/${PN}-bsu.png ${PN}.png || die "doicon failed" - make_desktop_entry ${PN}-bsu ${PN} "Chromium B.S.U" + make_desktop_entry ${PN}-bsu "Chromium B.S.U" # install documentation dodoc AUTHORS README NEWS || die "dodoc failed" |