diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2011-07-19 17:04:17 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2011-07-19 17:04:17 +0000 |
commit | 12f2268e39218d41fb598aa077d236a8bc2c40ac (patch) | |
tree | ac2613896ba50bc3e21743538d8699c617716a8e /games-puzzle/colorcode | |
parent | Version bump for dev channel release. Fixes bug #375425 by Mike Gilbert. Remo... (diff) | |
download | gentoo-2-12f2268e39218d41fb598aa077d236a8bc2c40ac.tar.gz gentoo-2-12f2268e39218d41fb598aa077d236a8bc2c40ac.tar.bz2 gentoo-2-12f2268e39218d41fb598aa077d236a8bc2c40ac.zip |
Version bump.
(Portage version: 2.2.0_alpha45/cvs/Linux x86_64)
Diffstat (limited to 'games-puzzle/colorcode')
-rw-r--r-- | games-puzzle/colorcode/ChangeLog | 9 | ||||
-rw-r--r-- | games-puzzle/colorcode/colorcode-0.7.2.ebuild | 36 |
2 files changed, 43 insertions, 2 deletions
diff --git a/games-puzzle/colorcode/ChangeLog b/games-puzzle/colorcode/ChangeLog index 78fefaa719a6..d0685c019a23 100644 --- a/games-puzzle/colorcode/ChangeLog +++ b/games-puzzle/colorcode/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for games-puzzle/colorcode -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-puzzle/colorcode/ChangeLog,v 1.6 2010/05/20 19:47:45 ssuominen Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-puzzle/colorcode/ChangeLog,v 1.7 2011/07/19 17:04:17 ssuominen Exp $ + +*colorcode-0.7.2 (19 Jul 2011) + + 19 Jul 2011; Samuli Suominen <ssuominen@gentoo.org> +colorcode-0.7.2.ebuild: + Version bump. 20 May 2010; Samuli Suominen <ssuominen@gentoo.org> colorcode-0.6.1.ebuild: diff --git a/games-puzzle/colorcode/colorcode-0.7.2.ebuild b/games-puzzle/colorcode/colorcode-0.7.2.ebuild new file mode 100644 index 000000000000..e99be767f131 --- /dev/null +++ b/games-puzzle/colorcode/colorcode-0.7.2.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-puzzle/colorcode/colorcode-0.7.2.ebuild,v 1.1 2011/07/19 17:04:17 ssuominen Exp $ + +EAPI=2 +inherit eutils qt4-r2 games + +MY_PN=ColorCode +DESCRIPTION="A free advanced MasterMind clone" +HOMEPAGE="http://colorcode.laebisch.com/" +SRC_URI="http://${PN}.laebisch.com/download/${MY_PN}-${PV}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="x11-libs/qt-gui:4" + +S=${WORKDIR}/${MY_PN}-${PV} + +src_prepare() { + sed -i -e '/FLAGS/d' ${PN}.pro || die + qt4-r2_src_prepare +} + +src_configure() { + qt4-r2_src_configure +} + +src_install() { + dogamesbin ${PN} || die + newicon img/cc64.png ${PN}.png + make_desktop_entry ${PN} ${MY_PN} + prepgamesdirs +} |