x11-themes/lyra-icon-theme - 9999 (wayland-desktop)

Search

Install

Install this version:

emerge -a =x11-themes/lyra-icon-theme-9999

If this version is masked, you can unmask it using the autounmask tool or standard emerge options:

autounmask =x11-themes/lyra-icon-theme-9999

Or alternatively:

emerge --autounmask-write -a =x11-themes/lyra-icon-theme-9999

Package Information

Description:
colorful design icon theme
Homepage:
https://www.gnome-look.org/s/Gnome/p/1460991 https://github.com/yeyushengfan258/Lyra-icon-theme
License:
GPL-3

Ebuild Details

Version EAPI Keywords Slot
9999 8 ~amd64 0
View Raw Ebuild
# Copyright 2021 Aisha Tammy
# Distributed under the terms of the ISC License

EAPI=8

inherit xdg

DESCRIPTION="colorful design icon theme"
HOMEPAGE="https://www.gnome-look.org/s/Gnome/p/1460991
	https://github.com/yeyushengfan258/Lyra-icon-theme
"

if [[ "${PV}" == "9999" ]]; then
	inherit git-r3
	EGIT_REPO_URI="https://github.com/yeyushengfan258/Lyra-icon-theme"
else
	COMMIT="62ffd49ee40b5651ffb1fedcc4e97f6b0d0382c5"
	SRC_URI="https://github.com/yeyushengfan258/Lyra-icon-theme/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
	S="${WORKDIR}/Lyra-icon-theme-${COMMIT}"
	KEYWORDS="~amd64"
fi

LICENSE="GPL-3"
SLOT="0"
IUSE="no-inherit"

src_compile() {
	find . -xtype l -delete || die
	mkdir "${T}"/generated || die
	./install.sh -a -d "${T}"/generated || die
}

src_install() {
	insinto /usr/share/icons/
	for themev in "${T}"/generated/*; do
		if use no-inherit ; then
			sed -e "/^Inherits/d" -i "${themev}"/index.theme || die
		fi
		doins -r "${themev}"
	done
}

USE Flags

Manage flags for this package: euse -i <flag> -p x11-themes/lyra-icon-theme | euse -E <flag> -p x11-themes/lyra-icon-theme | euse -D <flag> -p x11-themes/lyra-icon-theme

Global/Standard Flags

Inherited Eclasses

xdg