blob: 16cf639ab094edf16d1cca017dd9bf2a21b19b0f (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/kdegames/kdegames-3.1.2.ebuild,v 1.1 2003/05/07 11:05:48 danarmak Exp $
inherit kde-dist eutils
DESCRIPTION="KDE games (solitaire :-)"
IUSE=""
KEYWORDS="x86 ~ppc ~sparc ~alpha"
src_unpack() {
kde_src_unpack
if [ ${ARCH} == "alpha" ] ; then
einfo "Not building kmines due to linking problems on alpha"
cd ${S}
cp subdirs subdirs.orig
grep -v kmines subdirs.orig > subdirs
fi
}
src_compile() {
kde_src_compile myconf configure
if [ ${ARCH} == "alpha" ] ; then
# ksirtet dies without kmines' libkdehighscores, so we have to build it
# manually if we want ksirtet. Which we do. Everyone loves tetris!
# But first, build libkdegames, since libkdehighscores depends on it.
cd ${S}/libkdegames
emake || die "died trying to build libkdegames"
cd ../kmines/generic
emake || die "died trying to build kmines/generic/libkdehighscores.la"
fi
kde_src_compile make
}
|