x11-themes/sweet-folders-icon-theme - 9999 (wayland-desktop)

Search

Install

Install this version:

emerge -a =x11-themes/sweet-folders-icon-theme-9999

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

autounmask =x11-themes/sweet-folders-icon-theme-9999

Or alternatively:

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

Package Information

Description:
sweet gradient icons
Homepage:
https://github.com/EliverLara/Sweet-folders
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="sweet gradient icons"
HOMEPAGE="https://github.com/EliverLara/Sweet-folders"

if [[ "${PV}" == "9999" ]]; then
	inherit git-r3
	EGIT_REPO_URI="https://github.com/EliverLara/Sweet-folders.git"
else
	COMMIT="d50fbe3d93df4c494958c773b681ab36049935a1"
	SRC_URI="https://github.com/EliverLara/Sweet-folders/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
	KEYWORDS="~amd64"
	S="${WORKDIR}/Sweet-folders-${COMMIT}"
fi

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

src_prepare() {
	default
	find . -xtype l -delete || die
	if use no-inherit; then
		local ifile
		for ifile in Sweet-*/index.theme; do
			sed -e "/^Inherits/d" -i "${ifile}" || die
		done
	fi
}

src_install() {
	insinto /usr/share/icons/
	doins -r Sweet-*
}

USE Flags

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

Global/Standard Flags

Inherited Eclasses

xdg