diff options
author | Alfredo Tupone <tupone@gentoo.org> | 2010-07-08 07:43:44 +0000 |
---|---|---|
committer | Alfredo Tupone <tupone@gentoo.org> | 2010-07-08 07:43:44 +0000 |
commit | 5532e39b2cae330799ad2273b65320f4b3759c4a (patch) | |
tree | 507bf944effe6e53954bd90395ad4d011fabcb7e /games-puzzle/bubble-chains/bubble-chains-0.1.1.ebuild | |
parent | old (diff) | |
download | gentoo-2-5532e39b2cae330799ad2273b65320f4b3759c4a.tar.gz gentoo-2-5532e39b2cae330799ad2273b65320f4b3759c4a.tar.bz2 gentoo-2-5532e39b2cae330799ad2273b65320f4b3759c4a.zip |
Version bump to 0.1.1 Bug #327261
(Portage version: 2.1.8.3/cvs/Linux i686)
Diffstat (limited to 'games-puzzle/bubble-chains/bubble-chains-0.1.1.ebuild')
-rw-r--r-- | games-puzzle/bubble-chains/bubble-chains-0.1.1.ebuild | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/games-puzzle/bubble-chains/bubble-chains-0.1.1.ebuild b/games-puzzle/bubble-chains/bubble-chains-0.1.1.ebuild new file mode 100644 index 000000000000..96d62466370c --- /dev/null +++ b/games-puzzle/bubble-chains/bubble-chains-0.1.1.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-puzzle/bubble-chains/bubble-chains-0.1.1.ebuild,v 1.1 2010/07/08 07:43:44 tupone Exp $ + +EAPI=2 +inherit eutils qt4 games + +MY_P=${P/bubble-}-src + +DESCRIPTION="Arcade-puzzle game" +HOMEPAGE="http://bubble-chains.sintegrial.com/" +SRC_URI="http://${PN}.sintegrial.com/files/${MY_P}.7z" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="x11-libs/libXrandr + x11-libs/qt-gui:4 + x11-libs/qt-opengl:4 + media-libs/libsdl[audio,video] + media-libs/sdl-mixer" +DEPEND="${RDEPEND} + app-arch/p7zip" + +S=${WORKDIR}/${MY_P} + +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 gamewidget.cpp || die +} + +src_configure() { + eqmake4 Game.pro +} + +src_install() { + emake INSTALL_ROOT="${D}" install || die + dodoc README + newicon images/img64_base.png ${PN}.png + make_desktop_entry chains "Bubble Chains" + prepgamesdirs +} |