diff options
Diffstat (limited to 'games-action')
-rw-r--r-- | games-action/chromium/ChangeLog | 7 | ||||
-rw-r--r-- | games-action/chromium/chromium-0.9.14.ebuild | 69 |
2 files changed, 75 insertions, 1 deletions
diff --git a/games-action/chromium/ChangeLog b/games-action/chromium/ChangeLog index 247e0affdaef..bd0731cc9644 100644 --- a/games-action/chromium/ChangeLog +++ b/games-action/chromium/ChangeLog @@ -1,6 +1,11 @@ # 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.35 2009/03/22 20:51:44 darkside Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-action/chromium/ChangeLog,v 1.36 2009/03/30 16:10:53 scarabeus Exp $ + +*chromium-0.9.14 (30 Mar 2009) + + 30 Mar 2009; Tomas Chvatal <scarabeus@gentoo.org> +chromium-0.9.14.ebuild: + Version bump. New nls support, replace ftgl with quesoglc. 22 Mar 2009; Jeremy Olexa <darkside@gentoo.org> chromium-0.9.13.3.ebuild: amd64 stable, bug 245293 diff --git a/games-action/chromium/chromium-0.9.14.ebuild b/games-action/chromium/chromium-0.9.14.ebuild new file mode 100644 index 000000000000..b6a1008e9d20 --- /dev/null +++ b/games-action/chromium/chromium-0.9.14.ebuild @@ -0,0 +1,69 @@ +# 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 $ + +EAPI=2 +inherit eutils games + +MY_P="${PN}-bsu-${PV}" +DESCRIPTION="Chromium B.S.U. - an arcade game" +HOMEPAGE="http://chromium-bsu.sourceforge.net/" +SRC_URI="mirror://sourceforge/chromium-bsu/${MY_P}.tar.gz" + +LICENSE="Artistic" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="+mixer nls +sdl" + +RDEPEND="media-fonts/dejavu + media-libs/quesoglc + media-libs/glpng + virtual/opengl + virtual/glu + x11-libs/libXmu + mixer? ( media-libs/sdl-mixer ) + !mixer? ( + media-libs/freealut + media-libs/openal + ) + sdl? ( + media-libs/libsdl[X] + media-libs/sdl-image[png] + ) + !sdl? ( virtual/glut )" +DEPEND="${RDEPEND} + nls? ( sys-devel/gettext )" + +S="${WORKDIR}/${MY_P}" + +src_configure() { + egamesconf \ + --disable-dependency-tracking \ + --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 sdl) \ + $(use_enable sdl sdlimage) \ + $(use_enable !sdl glut) +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + + # 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" + + # install documentation + dodoc AUTHORS README NEWS || die "dodoc failed" + dohtml "${S}"/data/doc/*.htm || die "dohtml failed" + cd "${S}"/data/doc/images + insinto /usr/share/doc/${PF}/html/images + doins *.jpg || die "doins failed" + + prepgamesdirs +} |