blob: 04a1feda16a4ffff0248b724a3f49920acec8470 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/kcontrol/kcontrol-3.4.0_beta1.ebuild,v 1.1 2005/01/15 02:24:28 danarmak Exp $
KMNAME=kdebase
MAXKDEVER=$PV
KM_DEPRANGE="$PV $MAXKDEVER"
inherit kde-meta eutils
DESCRIPTION="The KDE Control Center"
KEYWORDS="~x86"
IUSE="ssl arts opengl"
PATCHES="$FILESDIR/configure.in.in-kdm-settings.diff"
DEPEND="ssl? ( dev-libs/openssl )
arts? ( $(deprange $PV $MAXKDEVER kde-base/arts) )
opengl? ( virtual/opengl )
dev-libs/libusb" # to support some logitech mice - should get a local useflag
# (this isn't a separate kcm but a part of the input module)
RDEPEND="${DEPEND}
$(deprange-dual $PV $MAXKDEVER kde-base/kcminit)
$(deprange-dual $PV $MAXKDEVER kde-base/kdebase-applnk)"
KMEXTRACTONLY="kicker/core/kicker.h
kwin/kwinbindings.cpp
kicker/core/kickerbindings.cpp
kicker/taskbar/taskbarbindings.cpp
kdesktop/kdesktopbindings.cpp
klipper/klipperbindings.cpp
kxkb/kxkbbindings.cpp
libkonq/"
src_compile() {
myconf="$myconf `use_with ssl` `use_with arts` `use_with opengl gl`"
kde-meta_src_compile
}
|