blob: 7939398070e6cb7f361a4c7866124c89ff2d92fe (
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
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit eutils gnome2-utils
DESCRIPTION="A massively improved variant of the well-known Gartoon theme"
HOMEPAGE="https://gnome-look.org/content/show.php/?content=74841"
SRC_URI="http://tweenk.artfx.pl/gartoon/source/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
DEPEND="
dev-lang/perl
dev-perl/Switch
gnome-base/librsvg
"
RESTRICT="binchecks strip"
src_prepare() {
epatch "${FILESDIR}"/${PN}-1.10-rsvg-convert.patch
}
src_configure() {
# perl script, not autotools based
./configure --prefix=/usr || die
}
src_compile() {
unset XDG_CACHE_HOME # bug 588708
emake prepare
emake
}
src_install() {
emake icondir="${D}"/usr/share/icons/GartoonRedux install
dodoc AUTHORS changelog README TODO
}
pkg_preinst() { gnome2_icon_savelist; }
pkg_postinst() { gnome2_icon_cache_update; }
pkg_postrm() { gnome2_icon_cache_update; }
|