forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
x11-themes/zuki-themes: bump to 3.28.3
Package-Manager: Portage-2.3.52, Repoman-2.3.12 Signed-off-by: Mart Raudsepp <[email protected]>
- Loading branch information
Showing
2 changed files
with
50 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
DIST zuki-themes-3.24.3.tar.gz 906469 BLAKE2B 443e99711fe9908fef976f0609401413f90e54f0bc0aa1bf8ddd65085ad755457402618336884be354030c6548e39a8cc0c5a5079b7b64d17760fadb0792319f SHA512 79ce43816db11dcd4be383bf4e0512aac0863214aa3fd3a545f06b922d441d3d1ddaf63ace166736b7598bf6f4ebdd1568092622eea3ef48b2ce37fbefd312ba | ||
DIST zuki-themes-3.26.1.tar.gz 909306 BLAKE2B 5bf673dce90992caf1b5d10d145f90bb26dc4f0f2939cb40cf22c9beef4f6b6ccad71a42d8f165141bf6e1029522a8c16e4dce820247b7a7887f3ad7fb987d2a SHA512 10ed25e6e6394f248ac69e9808f2223aff2cfdd35a98cd6b4547f5cdb5d7b8d353f224b1b582b175bd74c10a9231bec913b7645bb303ce2ab576b10537bc39e7 | ||
DIST zuki-themes-3.28.3.tar.gz 903971 BLAKE2B d300a9733c1578a4f69d10fa2efc965eb58fe098e4a35e6864db9e11749a194cfa1575458f2e24761a2bb0ee103fc5a2c0a2fde1a6b55cf8115b1a965adeb852 SHA512 efc0a362bcd4d579621913cf6511c34f474a10460db49f8d59d61526ebb669000567c75e4ef91aeec9254c5afcc5d5cd46bbfa5a571b8d3f9cbf603e72aa8cb3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
# Copyright 1999-2019 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=6 | ||
|
||
inherit eapi7-ver | ||
|
||
MY_PV="$(ver_rs 2 -)" | ||
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${MY_PV}.tar.gz -> ${P}.tar.gz" | ||
|
||
LICENSE="GPL-3" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~x86" | ||
IUSE="gnome-shell mate xfce" | ||
|
||
RDEPEND=" | ||
>=x11-themes/gnome-themes-standard-3.6 | ||
>=x11-themes/gtk-engines-murrine-0.98.1.1 | ||
gnome-shell? ( media-fonts/roboto ) | ||
!<x11-themes/zukitwo-2016.08.08 | ||
!<x11-themes/zukitwo-shell-2016.08.08 | ||
" | ||
DEPEND="" | ||
|
||
S="${WORKDIR}/${PN}-${MY_PV}" | ||
|
||
src_configure() { :; } | ||
|
||
src_compile() { :; } | ||
|
||
src_install() { | ||
insinto /usr/share/themes/Zukitre | ||
doins -r Zukitre/{index.theme,gtk-2.0,gtk-3.0} | ||
use xfce && doins -r Zukitre/xfwm4 | ||
|
||
insinto /usr/share/themes/Zukitwo | ||
doins -r Zukitwo/{index.theme,gtk-2.0,gtk-3.0} | ||
use mate && doins -r Zukitwo/metacity-1 | ||
use xfce && doins -r Zukitwo/xfwm4 | ||
|
||
if use gnome-shell ; then | ||
insinto /usr/share/themes | ||
doins -r Zuki-shell | ||
fi | ||
|
||
default | ||
} |