diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2009-06-23 16:58:53 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2009-06-23 16:58:53 +0000 |
commit | 382de6541cf93ddadd1fd9f43c862d0a733628f0 (patch) | |
tree | e2024fd1acbc57fd2bb7bd93ca0772a652b85b3e /games-kids/cubetest | |
parent | Fix spelling error causing compile failure (bug #275205). (diff) | |
download | gentoo-2-382de6541cf93ddadd1fd9f43c862d0a733628f0.tar.gz gentoo-2-382de6541cf93ddadd1fd9f43c862d0a733628f0.tar.bz2 gentoo-2-382de6541cf93ddadd1fd9f43c862d0a733628f0.zip |
EAPI=2
(Portage version: 2.1.6.13/cvs/Linux i686)
Diffstat (limited to 'games-kids/cubetest')
-rw-r--r-- | games-kids/cubetest/ChangeLog | 8 | ||||
-rw-r--r-- | games-kids/cubetest/cubetest-0.9.4.ebuild | 21 |
2 files changed, 12 insertions, 17 deletions
diff --git a/games-kids/cubetest/ChangeLog b/games-kids/cubetest/ChangeLog index fdfbc4485b39..18f83a68e320 100644 --- a/games-kids/cubetest/ChangeLog +++ b/games-kids/cubetest/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for games-kids/cubetest -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-kids/cubetest/ChangeLog,v 1.12 2008/10/07 16:25:23 mr_bones_ Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-kids/cubetest/ChangeLog,v 1.13 2009/06/23 16:58:53 mr_bones_ Exp $ + + 23 Jun 2009; Michael Sterrett <mr_bones_@gentoo.org> + cubetest-0.9.4.ebuild: + EAPI=2 07 Oct 2008; Michael Sterrett <mr_bones_@gentoo.org> cubetest-0.9.4.ebuild: diff --git a/games-kids/cubetest/cubetest-0.9.4.ebuild b/games-kids/cubetest/cubetest-0.9.4.ebuild index 728bd49fb333..1702c9802a2f 100644 --- a/games-kids/cubetest/cubetest-0.9.4.ebuild +++ b/games-kids/cubetest/cubetest-0.9.4.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-kids/cubetest/cubetest-0.9.4.ebuild,v 1.7 2008/10/07 16:25:23 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-kids/cubetest/cubetest-0.9.4.ebuild,v 1.8 2009/06/23 16:58:53 mr_bones_ Exp $ -EAPI=1 +EAPI=2 inherit eutils qt4 games DESCRIPTION="A program to train your spatial insight" @@ -14,23 +14,14 @@ SLOT="0" KEYWORDS="amd64 ~ppc x86" IUSE="" -RDEPEND="|| ( - ( x11-libs/qt-gui:4 x11-libs/qt-qt3support:4 ) - x11-libs/qt:4 - )" +RDEPEND="x11-libs/qt-gui:4 + x11-libs/qt-core:4[qt3support]" DEPEND="${RDEPEND} dev-util/pkgconfig" -pkg_setup() { - games_pkg_setup - QT4_BUILT_WITH_USE_CHECK="qt3support" qt4_pkg_setup -} - -src_unpack() { +src_prepare() { local i - unpack ${A} - cd "${S}" epatch "${FILESDIR}"/${P}-build.patch for i in $(find src/ -iname *_moc.cpp) ; do moc ${i/_moc.cpp/.h} -o $i || die |