blob: c4a873ab682bec8db90a187f1dbeb8b64f461f23 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
FRAMEWORKS_DOXYGEN="true"
inherit kde-frameworks
DESCRIPTION="Framework for managing threads using job and queue-based interfaces"
LICENSE="LGPL-2+"
KEYWORDS=""
IUSE=""
src_prepare() {
sed -e "/add_subdirectory(benchmarks)/s/^/#DONOTCOMPILE /" \
-i CMakeLists.txt || die
kde-frameworks_src_prepare
}
|