blob: c998228b2741dd61657fccae059e639685786cca (
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
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
KDE_REQUIRED="never"
inherit kde4-base
if [[ ${KDE_BUILD_TYPE} != live ]]; then
KEYWORDS="~amd64 ~x86"
SRC_URI="mirror://kde/unstable/modemmanager-qt/${PV}/src/${P}.tar.xz"
fi
DESCRIPTION="Modemmanager bindings for Qt"
HOMEPAGE="https://projects.kde.org/projects/extragear/libs/libmm-qt"
LICENSE="LGPL-2"
SLOT="0"
IUSE="debug"
RDEPEND="
dev-qt/qtcore:4
dev-qt/qtdbus:4
net-misc/mobile-broadband-provider-info
>=net-misc/networkmanager-0.9.8[modemmanager]
"
DEPEND="${RDEPEND}"
PATCHES=( "${FILESDIR}/${P}-cxxflags.patch" )
|