blob: d1fc83c95ab46df9596dcdf220eb5fc1a2fbf02c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
inherit kde4-base
DESCRIPTION="Library for writing accessibility clients such as screen readers in KDE"
HOMEPAGE="https://projects.kde.org/projects/playground/accessibility/libkdeaccessibilityclient/repository"
LICENSE="LGPL-2.1"
SLOT="4"
KEYWORDS=""
IUSE=""
src_configure() {
local mycmakeargs=(
-DQT4_BUILD=true
)
kde4-base_src_configure
}
|