aboutsummaryrefslogtreecommitdiff
blob: 4f8a65043b52b7a48cb199913412646270190f47 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7

inherit desktop eutils qmake-utils xdg

DESCRIPTION="Adaptive screen brightness/temperature"
HOMEPAGE="https://getgammy.com/"

if [[ "${PV}" == *9999* ]]; then
	inherit git-r3
	EGIT_REPO_URI="https://github.com/Fushko/${PN}.git"
else
	SRC_URI="https://github.com/Fushko/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
	KEYWORDS="~amd64"
fi

LICENSE="GPL-3"
SLOT="0"
IUSE=""

RDEPEND="
	dev-qt/qtcore:5
	x11-libs/libXxf86vm
"
DEPEND="
	${RDEPEND}
	media-gfx/imagemagick
"

src_configure() {
	eqmake5 PREFIX="${D}/usr"
}

src_install() {
	default

	local sizes="
	128
	16
	32
	64
	"
	cd ./icons || die
	for size in ${sizes}; do
		convert "${size}x${size}ball.ico" "${size}x${size}ball.png" || die
		newicon -s "${size}" "${size}x${size}ball.png" "${PN}.png"
	done

	make_desktop_entry "${PN}" "${PN^}" "${PN}" "Graphics;Settings"
}