blob: 2b186b966a2b4663d8f0d8dadefbed6fbf0db8de (
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
44
45
46
47
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-puzzle/cuyo/cuyo-1.8.1.ebuild,v 1.6 2004/06/24 23:03:19 agriffis Exp $
inherit 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="x86 ppc"
IUSE=""
DEPEND="virtual/glibc
virtual/x11
x11-libs/qt"
S="${WORKDIR}/${P/_}"
src_unpack() {
unpack ${A}
cd ${S}
sed -i \
-e 's:-O2:@CXXFLAGS@ -Wno-long-long:' src/Makefile.in \
|| die "sed src/Makefile.in failed"
}
src_compile() {
egamesconf \
--with-qt \
--with-x \
|| die
emake || die
}
src_install() {
sed -i \
-e 's: $(pkgdatadir: $(DESTDIR)$(pkgdatadir:' data/Makefile \
|| die "sed data/Makefile failed"
make install DESTDIR=${D} || die "make install failed"
dogamesbin "${D}/${GAMES_PREFIX}/games/cuyo"
rm -rf "${D}/${GAMES_PREFIX}/games"
dodoc AUTHORS INSTALL NEWS README TODO ChangeLog
prepgamesdirs
}
|