diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2012-04-12 23:13:44 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2012-04-12 23:13:44 +0000 |
commit | d2ec293da41011bcaf6adca682f1227918caaeda (patch) | |
tree | c893a5fbb46501c927a9e187431a99894102a6f0 /games-misc | |
parent | Added static-libs flag (diff) | |
download | gentoo-2-d2ec293da41011bcaf6adca682f1227918caaeda.tar.gz gentoo-2-d2ec293da41011bcaf6adca682f1227918caaeda.tar.bz2 gentoo-2-d2ec293da41011bcaf6adca682f1227918caaeda.zip |
EAPI=4; move to qt4-r2 (bug #410379)
(Portage version: 2.1.10.49/cvs/Linux x86_64)
Diffstat (limited to 'games-misc')
-rw-r--r-- | games-misc/ggencoder/ChangeLog | 7 | ||||
-rw-r--r-- | games-misc/ggencoder/ggencoder-0.91a.ebuild | 18 |
2 files changed, 12 insertions, 13 deletions
diff --git a/games-misc/ggencoder/ChangeLog b/games-misc/ggencoder/ChangeLog index 5533885fd83e..234d75cfd56f 100644 --- a/games-misc/ggencoder/ChangeLog +++ b/games-misc/ggencoder/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-misc/ggencoder -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-misc/ggencoder/ChangeLog,v 1.2 2009/09/19 12:37:15 maekke Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-misc/ggencoder/ChangeLog,v 1.3 2012/04/12 23:13:44 mr_bones_ Exp $ + + 12 Apr 2012; Michael Sterrett <mr_bones_@gentoo.org> ggencoder-0.91a.ebuild: + EAPI=4; move to qt4-r2 (bug #410379) 19 Sep 2009; Markus Meier <maekke@gentoo.org> ggencoder-0.91a.ebuild: amd64/x86 stable, bug #285400 diff --git a/games-misc/ggencoder/ggencoder-0.91a.ebuild b/games-misc/ggencoder/ggencoder-0.91a.ebuild index d23dd33d1899..d76b3be6373d 100644 --- a/games-misc/ggencoder/ggencoder-0.91a.ebuild +++ b/games-misc/ggencoder/ggencoder-0.91a.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-misc/ggencoder/ggencoder-0.91a.ebuild,v 1.2 2009/09/19 12:37:14 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-misc/ggencoder/ggencoder-0.91a.ebuild,v 1.3 2012/04/12 23:13:44 mr_bones_ Exp $ -EAPI=2 -inherit eutils qt4 +EAPI=4 +inherit eutils qt4-r2 DESCRIPTION="Utility to encode and decode Game Genie (tm) codes." HOMEPAGE="http://games.technoplaza.net/ggencoder/qt/" @@ -19,14 +19,10 @@ DEPEND="x11-libs/qt-core:4 S=${WORKDIR}/${P}/source -src_configure() { - eqmake4 -} - src_install() { - dobin ${PN} || die "dobin failed" - dodoc ../docs/ggencoder.txt || die "dodoc failed" + dobin ${PN} + dodoc ../docs/ggencoder.txt if use doc ; then - dohtml -r ../apidocs/html/* || die "dohtml failed" + dohtml -r ../apidocs/html/* fi } |