From b2d02aa7dc126ea6b899ba60b8f5a6cbb050f44e Mon Sep 17 00:00:00 2001 From: Alexe-Cristia Moldovan Date: Thu, 18 Jun 2015 15:29:47 +0300 Subject: add Arc theme --- x11-themes/arc-theme/Manifest | 1 + x11-themes/arc-theme/arc-theme-9999.ebuild | 55 ++++++++++++++++++++++++++++++ 2 files changed, 56 insertions(+) create mode 100644 x11-themes/arc-theme/Manifest create mode 100644 x11-themes/arc-theme/arc-theme-9999.ebuild (limited to 'x11-themes/arc-theme') diff --git a/x11-themes/arc-theme/Manifest b/x11-themes/arc-theme/Manifest new file mode 100644 index 00000000..77316728 --- /dev/null +++ b/x11-themes/arc-theme/Manifest @@ -0,0 +1 @@ +EBUILD arc-theme-9999.ebuild 1174 SHA256 309bec1e530a0a052b05f88d3cea5aa8512d72ea432242b159921343f2cd9728 SHA512 852fa92e197240a9ae9d354b655061dc4350969cf93bfe9056854c5dfc8fa5e612a9675cade9ecec604189201127e0ce11850260ed91feb2888baf6b75066fc3 WHIRLPOOL 791951be9430a11cee1e9944e7497349b32fc736234b89042a0e83c1a6271484246a18683cf8a735c7dcaaf2eee0ea1f95ede465fef92e8b44d30d65a0370a97 diff --git a/x11-themes/arc-theme/arc-theme-9999.ebuild b/x11-themes/arc-theme/arc-theme-9999.ebuild new file mode 100644 index 00000000..02a3ced3 --- /dev/null +++ b/x11-themes/arc-theme/arc-theme-9999.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 + +inherit eutils git-r3 autotools + +DESCRIPTION="A flat theme with transparent elements for GTK 3, GTK2 and GNOME Shell" +HOMEPAGE="https://github.com/horst3180/Arc-theme" +SRC_URI="" +EGIT_REPO_URI="${HOMEPAGE}" + +LICENSE="LGPL-3.0" +SLOT="0" +KEYWORDS="" +IUSE="gnome-shell +gtk2 gtk3 metacity unity xfwm" +REQUIRED_USE="|| ( gtk2 gtk3 )" + +DEPEND="x11-themes/gtk-engines-murrine + x11-libs/gdk-pixbuf" +RDEPEND="${DEPEND} + gnome-shell? ( gnome-base/gnome-shell ) + xfwm? ( xfce-base/xfwm4 ) + gtk2? ( x11-libs/gtk+:2 ) + gtk3? ( x11-libs/gtk+:3 ) + metacity? ( + || ( + x11-wm/metacity + x11-wm/marco + ) + )" + +src_prepare(){ + eautoreconf +} + +src_configure(){ + local myconf='' + use !gtk2 && myconf+="--disable-gtk2 " + use !gtk3 && myconf+="--disable-gtk3 " + use !gnome-shell && myconf+="--disable-gnome-shell " + use !unity && myconf+="--disable-unity " + use !metacity && myconf+="--disable-metacity " + use !xfwm && myconf+="--disable-xfwm " + econf ${myconf} +} + +src_compile(){ + emake DESTDIR="${D}" +} + +src_install(){ + emake DESTDIR="${D}" install +} -- cgit v1.2.3