blob: f16855277f84584cf341c2688d09f671e2a8a40d (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
inherit eutils
DESCRIPTION="Pacifica icon theme"
HOMEPAGE=""
SRC_URI="http://fc07.deviantart.net/fs71/f/2013/267/b/a/pacifica_by_bokehlicia-d6nn5lb.zip"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
IUSE=""
DEPEND=""
RDEPEND=""
S="${WORKDIR}"
src_install() {
dodir /usr/share/icons/ || die
insinto /usr/share/icons || die
doins -r "${S}"/Pacifica || die
}
|