blob: 6adaad113b20782bab35e9392ae92cc7711267d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-puzzle/cuyo/cuyo-1.8.6.ebuild,v 1.6 2008/06/22 21:37:46 mr_bones_ Exp $
EAPI=1
inherit toolchain-funcs eutils qt3 games
DESCRIPTION="highly addictive and remotely related to tetris"
HOMEPAGE="http://www.karimmi.de/cuyo/"
SRC_URI="http://savannah.nongnu.org/download/cuyo/${P//_}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE=""
DEPEND=">=x11-libs/qt-3.3:3"
S=${WORKDIR}/${P/_}
src_unpack() {
unpack ${A}
cd "${S}"
sed -i \
-e '/^gamesdir.*=/ s:\$(prefix)/games:$(bindir):' \
-e 's:-O2:@CXXFLAGS@ -Wno-long-long:' src/Makefile.in \
|| die "sed src/Makefile.in failed"
epatch "${FILESDIR}"/${P}-gcc4.patch
}
src_compile() {
egamesconf \
--with-qtdir="${QTDIR}" \
--with-x \
|| die
emake CXX=$(tc-getCXX) MOC="${QTDIR}"/bin/moc || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc AUTHORS NEWS README TODO ChangeLog
prepgamesdirs
}
|