diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2010-02-14 18:33:55 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2010-02-14 18:33:55 +0000 |
commit | 27cab673165df9457f3f47a80e553737f1444a72 (patch) | |
tree | b20720996d42d4a2930874afaedcae386ce41631 /games-puzzle | |
parent | Fix garbage in symbol matching output. (diff) | |
download | gentoo-2-27cab673165df9457f3f47a80e553737f1444a72.tar.gz gentoo-2-27cab673165df9457f3f47a80e553737f1444a72.tar.bz2 gentoo-2-27cab673165df9457f3f47a80e553737f1444a72.zip |
Version bump.
(Portage version: 2.2_rc62/cvs/Linux x86_64)
Diffstat (limited to 'games-puzzle')
-rw-r--r-- | games-puzzle/colorcode/ChangeLog | 10 | ||||
-rw-r--r-- | games-puzzle/colorcode/colorcode-0.6.0.ebuild | 39 |
2 files changed, 47 insertions, 2 deletions
diff --git a/games-puzzle/colorcode/ChangeLog b/games-puzzle/colorcode/ChangeLog index ba9851184ac4..c5ffb84bd262 100644 --- a/games-puzzle/colorcode/ChangeLog +++ b/games-puzzle/colorcode/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for games-puzzle/colorcode -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-puzzle/colorcode/ChangeLog,v 1.2 2009/12/02 10:54:42 maekke Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-puzzle/colorcode/ChangeLog,v 1.3 2010/02/14 18:33:55 ssuominen Exp $ + +*colorcode-0.6.0 (14 Feb 2010) + + 14 Feb 2010; Samuli Suominen <ssuominen@gentoo.org> + +colorcode-0.6.0.ebuild: + Version bump. 02 Dec 2009; Markus Meier <maekke@gentoo.org> colorcode-0.5.5.ebuild: amd64/x86 stable, bug #295281 diff --git a/games-puzzle/colorcode/colorcode-0.6.0.ebuild b/games-puzzle/colorcode/colorcode-0.6.0.ebuild new file mode 100644 index 000000000000..4a35f111f603 --- /dev/null +++ b/games-puzzle/colorcode/colorcode-0.6.0.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-puzzle/colorcode/colorcode-0.6.0.ebuild,v 1.1 2010/02/14 18:33:55 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} + +src_prepare() { + sed -i \ + -e '/FLAGS/d' \ + ColorCode.pro || die + qt4-r2_src_prepare +} + +src_configure() { + eqmake4 ${MY_PN}.pro +} + +src_install() { + dogamesbin ${PN} || die + newicon img/cc64.png ${PN}.png + make_desktop_entry ${PN} ${MY_PN} + prepgamesdirs +} |