blob: 16cc4e7d0d9718170a338f25e6bc0b718db06193 (
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/kdeaddons/kdeaddons-3.0.4.ebuild,v 1.5 2003/02/13 12:25:29 vapier Exp $
inherit kde-dist flag-o-matic
IUSE="sdl svga"
DESCRIPTION="KDE $PV: addons - applets, plugins..."
KEYWORDS="x86 ppc alpha"
newdepend "~kde-base/kdebase-${PV}
~kde-base/kdenetwork-${PV}
~kde-base/kdemultimedia-${PV}
sdl? ( >=media-libs/libsdl-1.2 )
svga? ( media-libs/svgalib )"
use sdl && myconf="$myconf --with-sdl --with-sdl-prefix=/usr" || myconf="$myconf --without-sdl --disable-sdltest"
# fix bug #7625
if [ "$COMPILER" == "gcc3" ]; then
if [ -n "`is-flag -march=pentium4`" -o -n "`is-flag -mcpu=pentium4`" ]; then
append-flags -mno-sse2
fi
fi
|