blob: 58a713703525b2eaad1c0bb93bba7bcf8bc5beb6 (
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 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="A pack of ~200 themes for GKrellM"
HOMEPAGE="http://www.muhri.net/gkrellm/"
SRC_URI="http://www.muhri.net/gkrellm/GKrellM-Skins.tar.gz"
S="${WORKDIR}"
# "keramik" says GPL, without version,
# "prime_23" contains a GPL-2 COPYING,
# all other themes have no license
LICENSE="all-rights-reserved GPL-1+ GPL-2"
SLOT="0"
KEYWORDS="amd64 ~mips ppc ppc64 sparc x86"
RESTRICT="mirror bindist"
RDEPEND=">=app-admin/gkrellm-2.1"
src_unpack() {
unpack ${A}
unpack GKrellM-skins/*
rm -r GKrellM-skins || die
}
src_install() {
insinto /usr/share/gkrellm2/themes
doins -r *
}
|