blob: af9f7316a4cfd78a52b20606e3ac7f20bdf0001d (
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
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: Exp $
EAPI=5
inherit kde4-base
DESCRIPTION="Faenza Cupertino"
HOMEPAGE="http://tiheum.deviantart.com/"
MY_PN="Faenza"
SRC_URI="http://pkg.rogentos.ro/distfiles/x11-themes/${PN}/${MY_PN}.tar.gz"
LICENSE="LGPL-3"
KEYWORDS="~amd64 ~x86 ~arm"
IUSE=""
SLOT="0"
DEPEND="${RDEPEND}"
RDEPEND="${DEPEND}"
S="${WORKDIR}/Faenza"
src_prepare() {
insinto /usr/share/icons
}
src_install() {
doins -r "${S}" || die
}
|