summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2012-07-02 20:33:34 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2012-07-02 20:33:34 +0000
commit1c8d423368d0d6826b2289dd6fcae004cd03509d (patch)
tree4be00af7883cbddca4eee7e353687203c9368f29 /games-puzzle
parentRemove useless pkg_postinst() ewarn for running revdep-rebuild. (diff)
downloadgentoo-2-1c8d423368d0d6826b2289dd6fcae004cd03509d.tar.gz
gentoo-2-1c8d423368d0d6826b2289dd6fcae004cd03509d.tar.bz2
gentoo-2-1c8d423368d0d6826b2289dd6fcae004cd03509d.zip
old
(Portage version: 2.1.10.65/cvs/Linux x86_64)
Diffstat (limited to 'games-puzzle')
-rw-r--r--games-puzzle/jag/ChangeLog5
-rw-r--r--games-puzzle/jag/jag-0.3.1.ebuild75
2 files changed, 4 insertions, 76 deletions
diff --git a/games-puzzle/jag/ChangeLog b/games-puzzle/jag/ChangeLog
index dc3b53470a16..c79ac11edff6 100644
--- a/games-puzzle/jag/ChangeLog
+++ b/games-puzzle/jag/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for games-puzzle/jag
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-puzzle/jag/ChangeLog,v 1.17 2012/06/03 10:06:55 xmw Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-puzzle/jag/ChangeLog,v 1.18 2012/07/02 20:33:34 mr_bones_ Exp $
+
+ 02 Jul 2012; Michael Sterrett <mr_bones_@gentoo.org> -jag-0.3.1.ebuild:
+ old
03 Jun 2012; Michael Weber <xmw@gentoo.org> jag-0.3.2.ebuild:
ppc stable (bug 412667)
diff --git a/games-puzzle/jag/jag-0.3.1.ebuild b/games-puzzle/jag/jag-0.3.1.ebuild
deleted file mode 100644
index 0624b3ba861c..000000000000
--- a/games-puzzle/jag/jag-0.3.1.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 1999-2011 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.3 2011/06/18 17:50:22 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 -lX11:" \
- 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
-}