blob: 3f4bbe47540e6a9899c1998a355cecc1c7cefd8d (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-themes/zukini/zukini-20120806.ebuild,v 1.3 2012/10/17 03:23:38 phajdan.jr Exp $
EAPI=4
DESCRIPTION="Unified look for GTK+ 2.x, GTK+ 3.x, gnome-shell, metacity and more"
HOMEPAGE="http://lassekongo83.deviantart.com/#/d4ic1u2"
SRC_URI="http://www.deviantart.com/download/272660042/${PN}_by_lassekongo83-d4ic1u2.zip -> ${P}.zip"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64 ~ppc ~ppc64 x86"
IUSE=""
RESTRICT="binchecks strip"
RDEPEND=">=x11-themes/gtk-engines-murrine-0.98.2
>=x11-themes/gtk-engines-unico-1.0.2"
DEPEND="app-arch/unzip"
S=${WORKDIR}
src_unpack() {
unpack ${A}
local x=${S}/Zukini-awn
mkdir -p "${x}"
tar -zxf Zukini-awn.tgz -C "${x}"
}
src_install() {
insinto /usr/share/themes
doins -r Zukini
dodoc -r INSTALL panelbg.png README Zukini-awn # Yes, we want INSTALL!
}
|