blob: ed44642a38789c5a5acbf246e00647578a00eb25 (
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
|
# Copyright 2016-2017 Redcore Linux Project
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit kde5
DESCRIPTION="Pure Qt NetworkManager front-end residing in panels"
HOMEPAGE="https://github.com/palinek/nm-tray"
SRC_URI="https://github.com/palinek/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
DEPEND="
$(add_frameworks_dep networkmanager-qt)
$(add_qt_dep qtdbus)
$(add_qt_dep qtgui)
$(add_qt_dep linguist-tools)
$(add_qt_dep qtnetwork)
$(add_qt_dep qtwidgets)"
RDEPEND="${DEPEND}
x11-terms/xterm"
src_install() {
cmake-utils_src_install
mv ${D}/usr/etc ${D}/etc
}
|