blob: e32e3ebacb505141a390023ba684e5e48a97f382 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=3
inherit gnome2-utils git-2
DESCRIPTION="Mint-X icon theme"
HOMEPAGE="https://github.com/linuxmnt/mint-x-icons"
EGIT_REPO_URI="git://github.com/linuxmint/mint-x-icons.git"
LICENSE="GPL"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
DEPEND=""
RDEPEND="${DEPEND}"
RESTRICT="bnchecks strip"
src_install() {
doins -r usr
}
pkg_preinst() {
gnome2_icon_savelist
}
pkg_postinst() {
gnome2_icon_cache_update
}
pkg_postrm() {
gnome2_icon_cache_update
}
|