diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2010-12-17 18:21:02 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2010-12-17 18:21:02 +0000 |
commit | 31be84a447e6fa02d8212d2b7b957cdce4e5ab7f (patch) | |
tree | a72fa0b977fcc0983b6a9f2d09569cf6a147fd3b /games-sports | |
parent | Mask www-client/chromium dev channel release. (diff) | |
download | gentoo-2-31be84a447e6fa02d8212d2b7b957cdce4e5ab7f.tar.gz gentoo-2-31be84a447e6fa02d8212d2b7b957cdce4e5ab7f.tar.bz2 gentoo-2-31be84a447e6fa02d8212d2b7b957cdce4e5ab7f.zip |
version bump (bug #348941)
(Portage version: 2.1.9.24/cvs/Linux i686)
Diffstat (limited to 'games-sports')
-rw-r--r-- | games-sports/xmoto/ChangeLog | 7 | ||||
-rw-r--r-- | games-sports/xmoto/xmoto-0.5.4.ebuild | 93 |
2 files changed, 99 insertions, 1 deletions
diff --git a/games-sports/xmoto/ChangeLog b/games-sports/xmoto/ChangeLog index 4dc7787c8ab3..408364975b43 100644 --- a/games-sports/xmoto/ChangeLog +++ b/games-sports/xmoto/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for games-sports/xmoto # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-sports/xmoto/ChangeLog,v 1.50 2010/10/15 13:12:55 ranger Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-sports/xmoto/ChangeLog,v 1.51 2010/12/17 18:21:02 mr_bones_ Exp $ + +*xmoto-0.5.4 (17 Dec 2010) + + 17 Dec 2010; Michael Sterrett <mr_bones_@gentoo.org> +xmoto-0.5.4.ebuild: + version bump (bug #348941) 15 Oct 2010; Brent Baude <ranger@gentoo.org> xmoto-0.5.3-r1.ebuild: stable ppc, bug 329977 diff --git a/games-sports/xmoto/xmoto-0.5.4.ebuild b/games-sports/xmoto/xmoto-0.5.4.ebuild new file mode 100644 index 000000000000..edb071188ce0 --- /dev/null +++ b/games-sports/xmoto/xmoto-0.5.4.ebuild @@ -0,0 +1,93 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-sports/xmoto/xmoto-0.5.4.ebuild,v 1.1 2010/12/17 18:21:02 mr_bones_ Exp $ + +EAPI=2 +inherit eutils flag-o-matic games + +LVL_PV="0.7.0" #they unfortunately don't release both at the same time, why ~ as separator :( +LVL="inksmoto-${LVL_PV}" +DESCRIPTION="A challenging 2D motocross platform game" +HOMEPAGE="http://xmoto.tuxfamily.org" +SRC_URI="http://download.tuxfamily.org/${PN}/${PN}/${PV}/${P}-src.tar.gz + editor? ( http://download.tuxfamily.org/xmoto/svg2lvl/${LVL_PV}/${LVL}.tar.gz )" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="editor nls" + +RDEPEND=" + dev-libs/libxdg-basedir + dev-db/sqlite:3 + dev-games/ode + dev-lang/lua[deprecated] + virtual/jpeg + media-libs/libpng + media-libs/libsdl[joystick] + media-libs/sdl-mixer[vorbis] + media-libs/sdl-ttf + media-libs/sdl-net + net-misc/curl + app-arch/bzip2 + virtual/opengl + virtual/glu + media-fonts/dejavu + nls? ( virtual/libintl )" +DEPEND="${RDEPEND} + !=dev-db/sqlite-3.6.2 + nls? ( sys-devel/gettext )" +RDEPEND="${RDEPEND} + editor? ( media-gfx/inkscape )" + +src_prepare() { + use editor && rm -vf "${WORKDIR}"/extensions/{bezmisc,inkex}.py + sed -i \ + -e '/^gettextsrcdir/s:=.*:= @localedir@/gettext/po:' \ + po/Makefile.in.in || die + sed -i \ + -e 's:png_set_gray_1_2_4_to_8:png_set_expand_gray_1_2_4_to_8:' \ + src/image/tim_png.cpp || die +} + +src_configure() { + # bug #289792 + filter-flags -DdDOUBLE + has_version 'dev-games/ode[double-precision]' && append-flags -DdDOUBLE + + egamesconf \ + --disable-dependency-tracking \ + --enable-threads=posix \ + $(use_enable nls) \ + --localedir=/usr/share/locale \ + --with-localesdir=/usr/share/locale \ + --with-renderer-sdlGfx=0 \ + --with-renderer-openGl=1 +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + dodoc README TODO NEWS ChangeLog + + rm -f "${D}${GAMES_DATADIR}/${PN}"/Textures/Fonts/DejaVuSans.ttf + dosym /usr/share/fonts/dejavu/DejaVuSans.ttf "${GAMES_DATADIR}/${PN}"/Textures/Fonts/ + doicon extra/xmoto.xpm + make_desktop_entry ${PN} Xmoto + + prepgamesdirs + + if use editor; then + insinto /usr/share/inkscape/ + doins -r "${WORKDIR}"/extensions/ || die "doins failed" + fi +} + +pkg_postinst() { + games_pkg_postinst + if use editor; then + elog "If you want to know how to create Xmoto levels" + elog "have a look at this Tutorial:" + elog "http://wiki.xmoto.tuxfamily.org/index.php?title=Inksmoto-${LVL_PV}" + elog "You can share your levels on the Xmoto homepage." + fi +} |