blob: 8abec2c845c92635365ad2bb1cfebd19c78f91f1 (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="3"
KMNAME="playground/multimedia"
inherit kde4-base
DESCRIPTION="kdetv is a KDE application to watch TV on the desktop."
HOMEPAGE="http://www.kde-apps.org/content/show.php?content=11602"
LICENSE="GPL-2"
KEYWORDS=""
SLOT="0"
IUSE="debug v4l2 zvbi"
RDEPEND="
zvbi? ( media-libs/zvbi )
"
DEPEND="${RDEPEND}
v4l2? ( >=sys-kernel/linux-headers-2.6.11 )
"
src_configure() {
mycmakeargs=(
$(cmake-utils_use_with v4l2)
$(cmake-utils_use_with zvbi)
)
kde4-base_src_configure
}
|