| 1 |
# Copyright 1999-2008 Gentoo Foundation |
| 2 |
# Distributed under the terms of the GNU General Public License v2 |
| 3 |
# $Header: /var/cvsroot/gentoo-x86/games-kids/cubetest/cubetest-0.9.4.ebuild,v 1.4 2007/02/05 21:24:17 mr_bones_ Exp $ |
| 4 |
|
| 5 |
EAPI=1 |
| 6 |
inherit eutils games |
| 7 |
|
| 8 |
DESCRIPTION="A program to train your spatial insight" |
| 9 |
HOMEPAGE="http://www.vandenoever.info/software/cubetest/" |
| 10 |
SRC_URI="http://www.vandenoever.info/software/cubetest/${P}.tar.bz2" |
| 11 |
|
| 12 |
LICENSE="GPL-2" |
| 13 |
SLOT="0" |
| 14 |
KEYWORDS="amd64 ~ppc x86" |
| 15 |
IUSE="" |
| 16 |
|
| 17 |
DEPEND="x11-libs/qt:4" |
| 18 |
|
| 19 |
pkg_setup() { |
| 20 |
games_pkg_setup |
| 21 |
if ! built_with_use --missing true "x11-libs/qt:4" qt3support ; then |
| 22 |
eerror "${PN} requires qt3support" |
| 23 |
die "rebuild x11-libs/qt:4 with the qt3support USE flag" |
| 24 |
fi |
| 25 |
} |
| 26 |
|
| 27 |
src_unpack() { |
| 28 |
local i |
| 29 |
|
| 30 |
unpack ${A} |
| 31 |
cd "${S}" |
| 32 |
epatch "${FILESDIR}"/${P}-build.patch |
| 33 |
for i in $(find src/ -iname *_moc.cpp) ; do |
| 34 |
moc ${i/_moc.cpp/.h} -o $i || die |
| 35 |
done |
| 36 |
} |
| 37 |
|
| 38 |
src_install() { |
| 39 |
emake DESTDIR="${D}" install || die "emake install failed" |
| 40 |
prepgamesdirs |
| 41 |
} |