blob: 90b0c509ccfb7807641474b7d990628a12916406 (
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
|
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit cmake kde.org
DESCRIPTION="Qt library to query the movie database API (themoviedb.org)"
HOMEPAGE="https://cgit.kde.org/libtmdbqt.git"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS=""
IUSE="test"
DEPEND="
dev-qt/qtcore:5
dev-qt/qtnetwork:5
"
RDEPEND="${DEPEND}"
src_configure() {
local mycmakeargs=(
-DTMDBQT_ENABLE_TESTS=$(usex test)
)
cmake_src_configure
}
|