blob: c5c1f860132a91c68b78589b82bdb9e8bcff2ad9 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
DESCRIPTION="Gartoon SVG icon theme"
HOMEPAGE="https://www.gentoo.org"
SRC_URI="mirror://gentoo/${P}.tar.gz"
LICENSE="GPL-2"
KEYWORDS="amd64 ~ppc sparc ~x86"
SLOT="0"
RESTRICT="binchecks strip"
S=${WORKDIR}/${PN}
pkg_setup() {
mydest="/usr/share/icons/${PN}"
}
src_prepare() {
sed -i \
-e "s:\(^pixmap_path\) \(\".*\"$\):\1 \"${mydest}/scalable/stock\":" \
scalable/stock/iconrc || die
}
src_install() {
insinto ${mydest}
doins index.theme scalable/stock/iconrc
dodoc AUTHORS README scalable/stock/changelog_mula.txt
for dir in apps devices emblems filesystems mimetypes stock; do
cd "${S}"/scalable/${dir}
insinto ${mydest}/scalable/${dir}
for svg in *svg; do
doins ${svg}
done
done
dosym gnome-lockscreen.svg ${mydest}/scalable/apps/xfce-system-lock.svg
dosym control-center2.svg ${mydest}/scalable/apps/xfce-system-settings.svg
dosym gnome-logout.svg ${mydest}/scalable/apps/xfce-system-exit.svg
dosym mozilla-firefox.svg ${mydest}/scalable/apps/firefox-icon.svg
dosym gnome-globe.svg ${mydest}/scalable/apps/firefox-icon-unbranded.svg
}
|