diff options
author | Matt Turner <mattst88@gentoo.org> | 2022-05-09 17:51:01 -0400 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2022-05-09 18:08:36 -0400 |
commit | a89a78c22555f08ea08502800447bbfb6c80573c (patch) | |
tree | b23da8e33ea965aa1bb098872245d43abf3e1276 /x11-themes/zuki-themes/zuki-themes-4.0.ebuild | |
parent | net-ftp/gftp: Version bump to 2.9.1b (diff) | |
download | gentoo-a89a78c22555f08ea08502800447bbfb6c80573c.tar.gz gentoo-a89a78c22555f08ea08502800447bbfb6c80573c.tar.bz2 gentoo-a89a78c22555f08ea08502800447bbfb6c80573c.zip |
x11-themes/zuki-themes: Version bump to 4.0
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'x11-themes/zuki-themes/zuki-themes-4.0.ebuild')
-rw-r--r-- | x11-themes/zuki-themes/zuki-themes-4.0.ebuild | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/x11-themes/zuki-themes/zuki-themes-4.0.ebuild b/x11-themes/zuki-themes/zuki-themes-4.0.ebuild new file mode 100644 index 000000000000..452d268f083e --- /dev/null +++ b/x11-themes/zuki-themes/zuki-themes-4.0.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit meson + +DESCRIPTION="Zuki themes for GTK, gnome-shell and more" +HOMEPAGE="https://github.com/lassekongo83/zuki-themes" +SRC_URI="https://github.com/lassekongo83/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="gnome-shell gtk2 xfce" + +DEPEND="" +RDEPEND=" + >=x11-themes/gnome-themes-standard-3.6 + gtk2? ( >=x11-themes/gtk-engines-murrine-0.98.1.1 ) +" +BDEPEND="dev-lang/sassc" + +src_install() { + meson_src_install + + if ! use gnome-shell; then + rm -r "${ED}"/usr/share/themes/Zuki-shell || die + fi + + if ! use gtk2; then + rm -r "${ED}"/usr/share/themes/*/gtk-2.0 || die + fi + + if ! use xfce; then + rm -r "${ED}"/usr/share/themes/*/xfwm4 || die + fi +} |