diff options
-rw-r--r-- | games-puzzle/jag/ChangeLog | 7 | ||||
-rw-r--r-- | games-puzzle/jag/jag-0.3.1.ebuild | 75 |
2 files changed, 81 insertions, 1 deletions
diff --git a/games-puzzle/jag/ChangeLog b/games-puzzle/jag/ChangeLog index e348bae9f930..5270cb59344b 100644 --- a/games-puzzle/jag/ChangeLog +++ b/games-puzzle/jag/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for games-puzzle/jag # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-puzzle/jag/ChangeLog,v 1.9 2010/02/23 11:28:04 fauli Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-puzzle/jag/ChangeLog,v 1.10 2010/11/21 14:34:25 tupone Exp $ + +*jag-0.3.1 (21 Nov 2010) + + 21 Nov 2010; Tupone Alfredo <tupone@gentoo.org> +jag-0.3.1.ebuild: + Version bump to 0.3.1 Bug #339376 by Ines Willenbrock 23 Feb 2010; Christian Faulhammer <fauli@gentoo.org> jag-0.3.0.ebuild: stable x86, bug 302846 diff --git a/games-puzzle/jag/jag-0.3.1.ebuild b/games-puzzle/jag/jag-0.3.1.ebuild new file mode 100644 index 000000000000..61f7a4ba5dd4 --- /dev/null +++ b/games-puzzle/jag/jag-0.3.1.ebuild @@ -0,0 +1,75 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-puzzle/jag/jag-0.3.1.ebuild,v 1.1 2010/11/21 14:34:25 tupone Exp $ + +EAPI=2 +inherit eutils qt4-r2 games + +DESCRIPTION="Arcade 2D Puzzle Game" +HOMEPAGE="http://jag.xlabsoft.com/" +SRC_URI="http://jag.xlabsoft.com/files/${P}-src.zip + http://jag.xlabsoft.com/files/jag_levels_sunzero.zip + extras? ( http://jag.xlabsoft.com/files/jag_seven_themes.zip )" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="editor extras" + +RDEPEND="x11-libs/qt-core:4 + x11-libs/qt-gui:4 + x11-libs/qt-opengl:4 + x11-libs/libXrandr + media-libs/libsdl[audio,video] + media-libs/sdl-mixer" +DEPEND="${RDEPEND} + app-arch/unzip" + +S=${WORKDIR}/${P}-src + +src_prepare() { + sed -i \ + -e "s:/usr/local/bin:${GAMES_BINDIR}:g" \ + -e "s:/usr/local/games:${GAMES_DATADIR}:g" \ + -e "s:LIBS += -lSDLmain:LIBS += -lSDL:" \ + Game.pro main.cpp editor/editor.pro \ + || die "sed failed" +} + +src_configure() { + qt4-r2_src_configure + if use editor; then + cd editor + eqmake4 editor.pro + fi +} + +src_compile() { + qt4-r2_src_compile + if use editor; then + cd editor + qt4-r2_src_compile + fi +} + +src_install() { + qt4-r2_src_install + newicon images/logo.png ${PN}.png + make_desktop_entry jag Jag + + if use editor; then + cd editor + qt4-r2_src_install + make_desktop_entry jag-editor "Jag Level editor" ${PN} + cd .. + fi + + insinto "${GAMES_DATADIR}/${PN}"/data/levels + doins -r "${WORKDIR}"/sunzero.lpk || die "doins failed" + + if use extras; then + insinto "${GAMES_DATADIR}/${PN}"/data/schemes + doins -r "${WORKDIR}"/{african,animals,chinese,creatures,futurama,kde-nuvola,toys} || die "doins failed" + fi + prepgamesdirs +} |