From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B7515138334 for ; Sun, 11 Aug 2019 14:02:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BDA60E0895; Sun, 11 Aug 2019 14:02:01 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A49BBE0895 for ; Sun, 11 Aug 2019 14:02:01 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 58DA73498E8 for ; Sun, 11 Aug 2019 14:02:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A104E734 for ; Sun, 11 Aug 2019 14:01:57 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1565532082.ed70c050b5bea7befdd0630caca5a797ee0f8e80.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-themes/numix-gtk-theme/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-themes/numix-gtk-theme/numix-gtk-theme-2.6.7-r1.ebuild X-VCS-Directories: x11-themes/numix-gtk-theme/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: ed70c050b5bea7befdd0630caca5a797ee0f8e80 X-VCS-Branch: master Date: Sun, 11 Aug 2019 14:01:57 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 7264f99d-dbad-4593-97a9-1d5a3a7fe511 X-Archives-Hash: 9551c39460000fa69330790c32c81b50 commit: ed70c050b5bea7befdd0630caca5a797ee0f8e80 Author: Joonas Niilola gentoo org> AuthorDate: Sun Aug 11 14:01:22 2019 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Sun Aug 11 14:01:22 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed70c050 x11-themes/numix-gtk-theme: correctly implement RUBY_TARGETS now Package-Manager: Portage-2.3.71, Repoman-2.3.17 Signed-off-by: Joonas Niilola gentoo.org> .../numix-gtk-theme-2.6.7-r1.ebuild | 44 ++++++++++++++++++++++ 1 file changed, 44 insertions(+) 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 new file mode 100644 index 00000000000..8d5caa1ce81 --- /dev/null +++ b/x11-themes/numix-gtk-theme/numix-gtk-theme-2.6.7-r1.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +USE_RUBY="ruby24 ruby25 ruby26" + +inherit ruby-ng + +DESCRIPTION="A modern flat theme with a combination of light and dark elements" +HOMEPAGE="https://github.com/numixproject/numix-gtk-theme" +SRC_URI="https://github.com/numixproject/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND="dev-libs/libxml2:2 + x11-libs/gtk+:3 + x11-themes/gtk-engines-murrine" + +DEPEND="${RDEPEND} + dev-libs/glib:2 + x11-libs/gdk-pixbuf:2" + +ruby_add_depend ">=dev-ruby/sass-3.5" + +S="${WORKDIR}/${P}" + +src_unpack() { + default +} + +src_prepare() { + default +} + +src_compile() { + default +} + +src_install() { + default +}