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 9AAC213832E for ; Wed, 3 Aug 2016 14:06:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 00DE5E0B07; Wed, 3 Aug 2016 14:06:43 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 94190E0B07 for ; Wed, 3 Aug 2016 14:06:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 519C9340A51 for ; Wed, 3 Aug 2016 14:06:41 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6422A7D3 for ; Wed, 3 Aug 2016 14:06:39 +0000 (UTC) From: "Jeroen Roovers" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jeroen Roovers" Message-ID: <1470233138.706ac99644277676a721893c6f10d5f772f1f4c7.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-themes/greybird/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-themes/greybird/greybird-9999.ebuild X-VCS-Directories: x11-themes/greybird/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: 706ac99644277676a721893c6f10d5f772f1f4c7 X-VCS-Branch: master Date: Wed, 3 Aug 2016 14:06:39 +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-Archives-Salt: 02a35735-8eae-4b94-b618-963f766c72a4 X-Archives-Hash: 63dfa6b2cdbae544cb8c142ceca3921a commit: 706ac99644277676a721893c6f10d5f772f1f4c7 Author: Jeroen Roovers gentoo org> AuthorDate: Wed Aug 3 14:05:38 2016 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Wed Aug 3 14:05:38 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=706ac996 x11-themes/greybird: Add live ebuild. Package-Manager: portage-2.3.0 x11-themes/greybird/greybird-9999.ebuild | 48 ++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) diff --git a/x11-themes/greybird/greybird-9999.ebuild b/x11-themes/greybird/greybird-9999.ebuild new file mode 100644 index 0000000..db4294c --- /dev/null +++ b/x11-themes/greybird/greybird-9999.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +inherit git-r3 + +MY_PN=${PN/g/G} + +DESCRIPTION="The default theme from Xubuntu" +HOMEPAGE="http://shimmerproject.org/project/greybird/ https://github.com/shimmerproject/Greybird" +EGIT_REPO_URI="https://github.com/shimmerproject/${MY_PN}" + +# README says "dual-licensed as GPLv2 or later and CC-BY-SA 3.0 or later" +LICENSE="CC-BY-SA-3.0 GPL-2+" +SLOT="0" +KEYWORDS="" +# IUSE="ayatana gnome emerald" +IUSE="ayatana gnome" + +RDEPEND=" + >=x11-themes/gtk-engines-murrine-0.90 +" + +RESTRICT="binchecks strip" + +src_install() { + dodoc README + rm -f README LICENSE* + + insinto /usr/share/themes/${MY_PN}-compact/xfwm4 + doins xfwm4-compact/* + rm -rf xfwm4-compact + + insinto /usr/share/themes/${MY_PN}-a11y/xfwm4 + doins xfwm4-a11y/* + rm -rf xfwm4-a11y + + insinto /usr/share/themes/${MY_PN}-bright/xfce-notify-4.0 + doins xfce-notify-4.0_bright/* + rm -rf xfce-notify-4.0_bright + + use ayatana || rm -rf unity + use gnome || rm -rf metacity-1 + + insinto /usr/share/themes/${MY_PN} + doins -r * +}