blob: a0dd612372e864e80b6b4cba0436c839ce529c41 (
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
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
EGIT_REPO_URI="https://github.com/Chemrat/${PN}"
inherit qmake-utils git-r3
DESCRIPTION="Tray controls for redshift"
HOMEPAGE="https://github.com/Chemrat/redshift-qt/"
KEYWORDS="~amd64"
SLOT="0"
LICENSE="MIT"
IUSE=""
DEPEND="dev-qt/qtgui:5
dev-qt/qtcore:5
dev-qt/qtwidgets:5"
RDEPEND="${DEPEND}
x11-misc/redshift"
src_configure() {
eqmake5 redshift-qt.pro
}
src_install() {
dobin redshift-qt
}
|