blob: 4492657c8a9ea2d74528e69e33c960058a578de1 (
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-2011 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.6 2011/01/27 12:05:17 scarabeus Exp $
EAPI=3
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-4.6[semantic-desktop?]
<kde-base/libkworkspace-4.6
<kde-base/solid-4.6[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
}
|