blob: 5e5b2f55258848f7babe9e3409d170c81da6ad8a (
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
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit versionator
MY_PV="$(replace_version_separator 2 '-' ${PV})"
DESCRIPTION="Zuki themes for GTK, gnome-shell and more"
HOMEPAGE="https://github.com/lassekongo83/zuki-themes"
SRC_URI="https://github.com/lassekongo83/${PN}/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="gnome-shell mate xfce"
RDEPEND="
>=x11-themes/gnome-themes-standard-3.6
>=x11-themes/gtk-engines-murrine-0.98.1.1
gnome-shell? ( media-fonts/roboto )
!<x11-themes/zukitwo-2016.08.08
!<x11-themes/zukitwo-shell-2016.08.08
"
DEPEND=""
S="${WORKDIR}/${PN}-${MY_PV}"
src_configure() { :; }
src_compile() { :; }
src_install() {
insinto /usr/share/themes/Zukitre
doins -r Zukitre/{index.theme,gtk-2.0,gtk-3.0}
use xfce && doins -r Zukitre/xfwm4
insinto /usr/share/themes/Zukitwo
doins -r Zukitwo/{index.theme,gtk-2.0,gtk-3.0}
use mate && doins -r Zukitwo/metacity-1
use xfce && doins -r Zukitwo/xfwm4
if use gnome-shell ; then
insinto /usr/share/themes
doins -r Zuki-shell
fi
default
}
|