blob: e91c477f6025591766374bf004688992af19e518 (
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 2004-2012 Sabayon
# Copyright 2012 Rogentos
# Distributed under the terms of the GNU General Public License v2
#
EAPI=3
DESCRIPTION="Rogentos Linux Artwork Extras"
HOMEPAGE="http://rogentos.ro/"
SRC_URI="http://pkg.rogentos.ro/~rogentos/distro/${CATEGORY}/${PN}/${PN}-${PVR}.tar.gz
http://pkg2.rogentos.ro/~noxis/distro/${CATEGORY}/${PN}/${PN}-${PVR}.tar.gz"
LICENSE="CCPL-Attribution-ShareAlike-3.0"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
IUSE=""
RDEPEND=""
S="${WORKDIR}/${PN}"
src_install () {
# Compiz cube theme
cd "${S}"/compiz
dodir /usr/share/compiz
insinto /usr/share/compiz/
doins *.png
# Emerald theme
cd "${S}"/emerald
dodir /usr/share/emerald/themes
insinto /usr/share/emerald/themes/
doins -r ./
}
|