blob: 1cba381bd5dac26285e09581a270c68e52560124 (
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
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="Mixes the elegance of a dark theme with the usability of a light theme"
HOMEPAGE="https://code.google.com/p/gnome-colors/"
SRC_URI="https://gnome-colors.googlecode.com/files/${P}.tar.gz
https://dev.gentoo.org/~pacho/Shiki-Gentoo-${PV}.tar.bz2"
S="${WORKDIR}"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64 x86"
RDEPEND="
|| ( x11-wm/muffin x11-wm/mutter xfce-base/xfwm4 )
x11-themes/gtk-engines:2
"
RESTRICT="binchecks strip"
src_install() {
insinto /usr/share/themes
doins -r "${WORKDIR}"/Shiki*
dodoc AUTHORS ChangeLog README
}
|