diff options
author | Tomas Chvatal <scarabeus@gentoo.org> | 2009-01-07 17:59:07 +0000 |
---|---|---|
committer | Tomas Chvatal <scarabeus@gentoo.org> | 2009-01-07 17:59:07 +0000 |
commit | 286a261a247a07f111360162aaa0761d8915db44 (patch) | |
tree | 70f03afad50d2505888489c68265c5b92c77de1a /games-sports | |
parent | arm/sh stable (diff) | |
download | gentoo-2-286a261a247a07f111360162aaa0761d8915db44.tar.gz gentoo-2-286a261a247a07f111360162aaa0761d8915db44.tar.bz2 gentoo-2-286a261a247a07f111360162aaa0761d8915db44.zip |
Make xmoto work again with editor use flag.
(Portage version: 2.2_rc20/cvs/Linux 2.6.27-gentoo x86_64)
Diffstat (limited to 'games-sports')
-rw-r--r-- | games-sports/xmoto/ChangeLog | 10 | ||||
-rw-r--r-- | games-sports/xmoto/xmoto-0.5.0-r1.ebuild | 108 |
2 files changed, 116 insertions, 2 deletions
diff --git a/games-sports/xmoto/ChangeLog b/games-sports/xmoto/ChangeLog index 26102f90e2d5..f81a058a4ed3 100644 --- a/games-sports/xmoto/ChangeLog +++ b/games-sports/xmoto/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for games-sports/xmoto -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-sports/xmoto/ChangeLog,v 1.27 2008/12/03 19:16:47 scarabeus Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-sports/xmoto/ChangeLog,v 1.28 2009/01/07 17:59:07 scarabeus Exp $ + +*xmoto-0.5.0-r1 (07 Jan 2009) + + 07 Jan 2009; Tomas Chvatal <scarabeus@gentoo.org> +xmoto-0.5.0-r1.ebuild: + Update level editor with new one. This one works with our inkscape + correctly. *xmoto-0.5.0 (03 Dec 2008) diff --git a/games-sports/xmoto/xmoto-0.5.0-r1.ebuild b/games-sports/xmoto/xmoto-0.5.0-r1.ebuild new file mode 100644 index 000000000000..cca46d7296ed --- /dev/null +++ b/games-sports/xmoto/xmoto-0.5.0-r1.ebuild @@ -0,0 +1,108 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-sports/xmoto/xmoto-0.5.0-r1.ebuild,v 1.1 2009/01/07 17:59:07 scarabeus Exp $ + +EAPI="2" + +inherit eutils games + +LVL_PV="0.5.0~rc1" #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="X editor nls" # sdl" + +RDEPEND=" + dev-db/sqlite:3 + dev-games/ode + dev-lang/lua[deprecated] + media-libs/jpeg + media-libs/libpng + media-libs/libsdl + media-libs/sdl-mixer + media-libs/sdl-ttf + media-libs/sdl-net + net-misc/curl + virtual/opengl + virtual/glu + nls? ( virtual/libintl ) + editor? ( media-gfx/inkscape ) + " +DEPEND="${RDEPEND} + !=dev-db/sqlite-3.6.2 + nls? ( sys-devel/gettext ) + " + +src_prepare() { + use editor && rm -f "${WORKDIR}"/extensions/{bezmisc,inkex}.py +} + +src_configure() { + #if use sdl ; then + # ewarn "SDL is known to be broken, if you experience any troubles please" + # ewarn "try again without this useflag" + # RENDERER="--with-renderer-sdlGfx=1 --with-renderer-openGl=0" + #else + RENDERER="--with-renderer-sdlGfx=0 --with-renderer-openGl=1" + #fi + if ! use nls ; then + NLS="--disable-nls" + else + NLS="--with-gettext" + fi + # using some nice dejavu font, better than nothing + egamesconf \ + --disable-dependency-tracking \ + --with-enable-zoom=1 \ + --enable-threads=posix \ + --with-gnu-ld \ + $(use_with X) \ + --with-localesdir=/usr/share/locale \ + ${RENDERER} \ + ${NLS} +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + ## if it is not working nice way, we'll do it ugly way + if use nls ; then + dodir /usr/share/locale + + cd "${S}"/po + for i in `ls -c1 |grep "\.gmo$"` ; do + BASE=$(echo ${i} |sed 's/\.gmo$//g') + msgfmt -v -o ${BASE}.mo ${BASE}.po + + insinto /usr/share/locale/${BASE}/LC_MESSAGES + newins ${BASE}.gmo xmoto.mo + done; + fi + cd "${S}" + dodoc README TODO NEWS ChangeLog + + doicon extra/xmoto.xpm + domenu extra/xmoto.desktop + + 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=Inkscape-0.5.0" + elog "You can share your levels on the Xmoto homepage." + fi +} |