Gentoo Archives: gentoo-commits

From: Jeroen Roovers <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-themes/greybird/
Date: Wed, 03 Aug 2016 14:06:47
Message-Id: 1470233138.706ac99644277676a721893c6f10d5f772f1f4c7.jer@gentoo
1 commit: 706ac99644277676a721893c6f10d5f772f1f4c7
2 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 3 14:05:38 2016 +0000
4 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 3 14:05:38 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=706ac996
7
8 x11-themes/greybird: Add live ebuild.
9
10 Package-Manager: portage-2.3.0
11
12 x11-themes/greybird/greybird-9999.ebuild | 48 ++++++++++++++++++++++++++++++++
13 1 file changed, 48 insertions(+)
14
15 diff --git a/x11-themes/greybird/greybird-9999.ebuild b/x11-themes/greybird/greybird-9999.ebuild
16 new file mode 100644
17 index 0000000..db4294c
18 --- /dev/null
19 +++ b/x11-themes/greybird/greybird-9999.ebuild
20 @@ -0,0 +1,48 @@
21 +# Copyright 1999-2016 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +# $Id$
24 +
25 +EAPI=6
26 +inherit git-r3
27 +
28 +MY_PN=${PN/g/G}
29 +
30 +DESCRIPTION="The default theme from Xubuntu"
31 +HOMEPAGE="http://shimmerproject.org/project/greybird/ https://github.com/shimmerproject/Greybird"
32 +EGIT_REPO_URI="https://github.com/shimmerproject/${MY_PN}"
33 +
34 +# README says "dual-licensed as GPLv2 or later and CC-BY-SA 3.0 or later"
35 +LICENSE="CC-BY-SA-3.0 GPL-2+"
36 +SLOT="0"
37 +KEYWORDS=""
38 +# IUSE="ayatana gnome emerald"
39 +IUSE="ayatana gnome"
40 +
41 +RDEPEND="
42 + >=x11-themes/gtk-engines-murrine-0.90
43 +"
44 +
45 +RESTRICT="binchecks strip"
46 +
47 +src_install() {
48 + dodoc README
49 + rm -f README LICENSE*
50 +
51 + insinto /usr/share/themes/${MY_PN}-compact/xfwm4
52 + doins xfwm4-compact/*
53 + rm -rf xfwm4-compact
54 +
55 + insinto /usr/share/themes/${MY_PN}-a11y/xfwm4
56 + doins xfwm4-a11y/*
57 + rm -rf xfwm4-a11y
58 +
59 + insinto /usr/share/themes/${MY_PN}-bright/xfce-notify-4.0
60 + doins xfce-notify-4.0_bright/*
61 + rm -rf xfce-notify-4.0_bright
62 +
63 + use ayatana || rm -rf unity
64 + use gnome || rm -rf metacity-1
65 +
66 + insinto /usr/share/themes/${MY_PN}
67 + doins -r *
68 +}