blob: 4377563eb3fe8d3ee0f8d5b2fb8ca9ee2525f2a8 (
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
|
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
KDE_TEST="true"
KMNAME="kdev-css"
inherit kde5
DESCRIPTION="CSS Language Support plugin for KDevelop"
HOMEPAGE="https://www.kdevelop.org/"
LICENSE="GPL-2"
KEYWORDS=""
IUSE=""
BDEPEND="
sys-devel/flex
test? ( >=dev-util/kdevelop-5.1.80:5[test] )
"
DEPEND="
$(add_frameworks_dep kcoreaddons)
$(add_frameworks_dep ki18n)
$(add_frameworks_dep ktexteditor)
$(add_frameworks_dep kxmlgui)
$(add_frameworks_dep threadweaver)
$(add_qt_dep qtgui)
$(add_qt_dep qtwidgets)
dev-util/kdevelop-pg-qt:5
>=dev-util/kdevelop-5.1.80:5
"
RDEPEND="${DEPEND}"
PATCHES=( "${FILESDIR}/${PN}-tests.patch" ) # TODO: upstream
|