blob: 2b7f3a8dccdad45b0f73228cfa49006eba3ffbd1 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-logger-qt/telepathy-logger-qt-0.5.0-r1.ebuild,v 1.1 2012/08/30 15:44:53 kensington Exp $
EAPI=4
inherit kde4-base python
DESCRIPTION="Qt4 bindings for the Telepathy logger"
HOMEPAGE="https://projects.kde.org/projects/extragear/network/telepathy/telepathy-logger-qt"
if [[ ${PV} != *9999* ]]; then
SRC_URI="mirror://kde/unstable/kde-telepathy/${PV}/src/${P}.tar.bz2"
KEYWORDS="~amd64 ~x86"
else
KEYWORDS=""
fi
LICENSE="LGPL-2.1"
SLOT="0"
IUSE="debug"
RDEPEND="
media-libs/qt-gstreamer
>=net-im/telepathy-logger-0.2.12-r1
>=net-libs/telepathy-qt-0.9.1
"
DEPEND="${RDEPEND}
sys-devel/bison
sys-devel/flex
"
pkg_setup() {
python_set_active_version 2
python_pkg_setup
}
src_configure() {
local mycmakeargs=(
-DBUILD_SHARED_LIBS=ON
)
kde4-base_src_configure
}
|