blob: 4a32321ee4fbfad5e397ea9186aa7b49e1b978f6 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/kdeaddons/kdeaddons-3.2.2.ebuild,v 1.8 2004/06/24 22:12:06 agriffis Exp $
inherit kde-dist flag-o-matic
DESCRIPTION="KDE addon modules: plugins for konqueror, noatun etc"
KEYWORDS="x86 ppc sparc ~alpha hppa amd64 ~ia64"
IUSE="sdl svga xmms esd"
DEPEND="~kde-base/kdepim-${PV}
~kde-base/kdemultimedia-${PV}
~kde-base/arts-${PV//3./1.}
esd? ( media-sound/esound )
sdl? ( >=media-libs/libsdl-1.2 )
svga? ( media-libs/svgalib )
xmms? ( media-sound/xmms )"
use sdl && myconf="$myconf --with-sdl --with-sdl-prefix=/usr" || myconf="$myconf --without-sdl --disable-sdltest"
use xmms || export ac_cv_have_xmms=no
# Make vimpart use /usr/bin/kvim -- fixes bug 33257.
# This should continue to apply to upcoming versions since it's
# Gentoo-specific and won't go upstream.
PATCHES="$FILESDIR/${PN}-3.2.0-kvim.diff"
# fix needed for compiling with gcc 3.4
PATCHES="${PATCHES} ${FILESDIR}/${P}-gcc34.patch"
|