Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-themes/numix-gtk-theme/
Date: Sun, 11 Aug 2019 14:02:02
Message-Id: 1565532082.ed70c050b5bea7befdd0630caca5a797ee0f8e80.juippis@gentoo
1 commit: ed70c050b5bea7befdd0630caca5a797ee0f8e80
2 Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
3 AuthorDate: Sun Aug 11 14:01:22 2019 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 11 14:01:22 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed70c050
7
8 x11-themes/numix-gtk-theme: correctly implement RUBY_TARGETS now
9
10 Package-Manager: Portage-2.3.71, Repoman-2.3.17
11 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
12
13 .../numix-gtk-theme-2.6.7-r1.ebuild | 44 ++++++++++++++++++++++
14 1 file changed, 44 insertions(+)
15
16 diff --git a/x11-themes/numix-gtk-theme/numix-gtk-theme-2.6.7-r1.ebuild b/x11-themes/numix-gtk-theme/numix-gtk-theme-2.6.7-r1.ebuild
17 new file mode 100644
18 index 00000000000..8d5caa1ce81
19 --- /dev/null
20 +++ b/x11-themes/numix-gtk-theme/numix-gtk-theme-2.6.7-r1.ebuild
21 @@ -0,0 +1,44 @@
22 +# Copyright 1999-2019 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=7
26 +
27 +USE_RUBY="ruby24 ruby25 ruby26"
28 +
29 +inherit ruby-ng
30 +
31 +DESCRIPTION="A modern flat theme with a combination of light and dark elements"
32 +HOMEPAGE="https://github.com/numixproject/numix-gtk-theme"
33 +SRC_URI="https://github.com/numixproject/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
34 +
35 +LICENSE="GPL-3"
36 +SLOT="0"
37 +KEYWORDS="~amd64 ~x86"
38 +
39 +RDEPEND="dev-libs/libxml2:2
40 + x11-libs/gtk+:3
41 + x11-themes/gtk-engines-murrine"
42 +
43 +DEPEND="${RDEPEND}
44 + dev-libs/glib:2
45 + x11-libs/gdk-pixbuf:2"
46 +
47 +ruby_add_depend ">=dev-ruby/sass-3.5"
48 +
49 +S="${WORKDIR}/${P}"
50 +
51 +src_unpack() {
52 + default
53 +}
54 +
55 +src_prepare() {
56 + default
57 +}
58 +
59 +src_compile() {
60 + default
61 +}
62 +
63 +src_install() {
64 + default
65 +}