blob: c6db46470c3e5224d1e6a4bf329fe62d4bae77d3 (
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
37
38
39
40
41
42
43
44
45
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-wireless/kbluetooth/kbluetooth-0.4.2.ebuild,v 1.5 2010/08/09 15:44:04 reavertm Exp $
EAPI=2
KDE_LINGUAS="cs da de en_GB eo es et fr ga gl it km lt nds nl pa pt pt_BR ro
ru sv tr uk zh_CN zh_TW"
inherit kde4-base
DESCRIPTION="Bluetooth utils for KDE4"
HOMEPAGE="http://techbase.kde.org/Kbluetooth"
SRC_URI="http://kde-apps.org/CONTENT/content-files/112110-${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="4"
KEYWORDS="amd64 x86"
IUSE="debug semantic-desktop"
COMMON_DEPEND="
>=kde-base/kdelibs-${KDE_MINIMAL}[semantic-desktop?]
>=kde-base/libkworkspace-${KDE_MINIMAL}
>=kde-base/solid-${KDE_MINIMAL}[bluetooth]
"
RDEPEND="${COMMON_DEPEND}
app-mobilephone/obex-data-server
app-mobilephone/obexftp
"
DEPEND="${COMMON_DEPEND}"
src_prepare() {
sed -i \
-e 's:${KDE4WORKSPACE_SOLIDCONTROL_LIBRARY}:solidcontrol:g' \
src/{,device-manager/,inputwizard/}CMakeLists.txt || die
kde4-base_src_prepare
}
src_configure() {
mycmakeargs=(
$(cmake-utils_use_with semantic-desktop Nepomuk)
)
kde4-base_src_configure
}
|