blob: d2f4618777f5c79e95258bea0e141a46dd9d58aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/kdeedu/kdeedu-3.0.5b.ebuild,v 1.3 2003/07/16 16:31:06 pvdabeel Exp $
inherit kde-dist
IUSE=""
DESCRIPTION="KDE $PV - educational apps"
KEYWORDS="x86 ppc ~alpha sparc"
src_unpack() {
kde_src_unpack
kde_sandbox_patch ${S}/klettres/klettres
}
src_compile() {
kde_src_compile myconf configure
# build fails with -fomit-frame-pointer optimization in kgeo
kde_remove_flag kgeo -fomit-frame-pointer
kde_remove_flag kgeo/kgeo -fomit-frame-pointer
kde_src_compile make
}
|