blob: 1713f30b4c25a6f2d625bb8edb8de7a928a239be (
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
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="Themes for the Murrine GTK+2 Cairo Engine"
HOMEPAGE="https://tracker.debian.org/pkg/murrine-themes"
SRC_URI="mirror://debian/pool/main/${PN:0:1}/${PN}/${PN}_${PV}.tar.xz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ppc ~ppc64 ~riscv ~x86"
RDEPEND=">=x11-themes/gtk-engines-murrine-0.98.0"
S="${WORKDIR}"/${PN}
src_prepare() {
default
# Depends on unpackaged theme Bluebird
rm -r usr/share/themes/shearwater || die
}
src_install() {
insinto /usr/share/icons
doins -r usr/share/icons/*
insinto /usr/share/themes
doins -r usr/share/themes/*
}
|