blob: 4adec1bfc07956c2aa1392c1f4a3a2905ecce0ff (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-puzzle/quadros/quadros-0.1.ebuild,v 1.7 2009/11/10 21:06:43 ssuominen Exp $
ARTS_REQUIRED=never
inherit eutils kde games
need-qt 3
DESCRIPTION="An implementation of the Tetris game with team multiplayer ability"
HOMEPAGE="http://quadros.sourceforge.net/"
SRC_URI="mirror://sourceforge/quadros/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~ppc x86"
IUSE=""
src_unpack() {
kde_src_unpack
epatch "${FILESDIR}/${P}"-gcc41.patch
}
src_compile() {
kde_src_compile nothing
${QTDIR}/bin/qmake -project -o quadros.pro
# Need generating .pro file from scratch
# because shipped src/quadros.pro is corrupted
# and shipped configure scripts requires pre-installed kde-libs
# and other stuff like dcopidl,...
# which are not required by game
echo "QMAKE_CXXFLAGS += ${CXXFLAGS}" >> quadros.pro
echo "CONFIG += qt thread warn_on release" >> quadros.pro
${QTDIR}/bin/qmake -o Makefile quadros.pro
emake || die "emake failed"
}
src_install() {
dogamesbin quadros || die "dogamesbin failed"
dodoc AUTHORS ChangeLog TODO NEWS README
prepgamesdirs
}
|