diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2014-03-19 01:47:27 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2014-03-19 01:47:27 +0000 |
commit | aff04b9541794fed61a05ae4852f6825b6685443 (patch) | |
tree | 5ba2a947c7313f7348d476f49a483075fe9e184d /games-board | |
parent | old (diff) | |
download | gentoo-2-aff04b9541794fed61a05ae4852f6825b6685443.tar.gz gentoo-2-aff04b9541794fed61a05ae4852f6825b6685443.tar.bz2 gentoo-2-aff04b9541794fed61a05ae4852f6825b6685443.zip |
version bump
(Portage version: 2.2.8-r1/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'games-board')
-rw-r--r-- | games-board/tetzle/ChangeLog | 9 | ||||
-rw-r--r-- | games-board/tetzle/tetzle-2.0.3.ebuild | 53 |
2 files changed, 60 insertions, 2 deletions
diff --git a/games-board/tetzle/ChangeLog b/games-board/tetzle/ChangeLog index d1a51dea0e59..5582f6fd3496 100644 --- a/games-board/tetzle/ChangeLog +++ b/games-board/tetzle/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for games-board/tetzle -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-board/tetzle/ChangeLog,v 1.11 2013/12/24 12:44:52 ago Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-board/tetzle/ChangeLog,v 1.12 2014/03/19 01:47:27 mr_bones_ Exp $ + +*tetzle-2.0.3 (19 Mar 2014) + + 19 Mar 2014; Michael Sterrett <mr_bones_@gentoo.org> +tetzle-2.0.3.ebuild: + version bump 24 Dec 2013; Agostino Sarubbo <ago@gentoo.org> tetzle-2.0.1.ebuild: Stable for x86, wrt bug #490592 diff --git a/games-board/tetzle/tetzle-2.0.3.ebuild b/games-board/tetzle/tetzle-2.0.3.ebuild new file mode 100644 index 000000000000..3c235c074e64 --- /dev/null +++ b/games-board/tetzle/tetzle-2.0.3.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-board/tetzle/tetzle-2.0.3.ebuild,v 1.1 2014/03/19 01:47:27 mr_bones_ Exp $ + +EAPI=5 +inherit qt4-r2 gnome2-utils games + +DESCRIPTION="A jigsaw puzzle game that uses tetrominoes for the pieces" +HOMEPAGE="http://gottcode.org/tetzle/" +SRC_URI="http://gottcode.org/${PN}/${P}-src.tar.bz2" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND=">=dev-qt/qtgui-4.7:4 + >=dev-qt/qtopengl-4.7:4" +RDEPEND="${DEPEND}" + +DOCS="ChangeLog CREDITS" + +src_prepare() { + sed -i \ + -e "s:appdir + \"/../share/\":\"${GAMES_DATADIR}/\":" \ + src/locale_dialog.cpp || die + sed -i \ + -e "/qm.path/s:\$\$PREFIX/share:${GAMES_DATADIR}:" \ + ${PN}.pro || die +} + +src_configure() { + eqmake4 BINDIR="${GAMES_BINDIR/\/usr}" PREFIX="/usr" +} + +src_install() { + qt4-r2_src_install + prepgamesdirs +} + +pkg_preinst() { + games_pkg_preinst + gnome2_icon_savelist +} + +pkg_postinst() { + games_pkg_postinst + gnome2_icon_cache_update +} + +pkg_postrm() { + gnome2_icon_cache_update +} |