diff options
author | zackiloco <steffen.winter@proton.me> | 2023-04-14 12:58:14 +0200 |
---|---|---|
committer | Georgy Yakovlev <gyakovlev@gentoo.org> | 2023-06-07 15:20:19 -0700 |
commit | faf2696929734ea8376de1e13edffbeb282ffc10 (patch) | |
tree | 903793ddd7e3dfe9943bb31eccfb96c3765d9e69 /x11-themes/tela-icon-theme | |
parent | x11-themes/tela-icon-theme: Add 20230203 (diff) | |
download | gentoo-faf2696929734ea8376de1e13edffbeb282ffc10.tar.gz gentoo-faf2696929734ea8376de1e13edffbeb282ffc10.tar.bz2 gentoo-faf2696929734ea8376de1e13edffbeb282ffc10.zip |
x11-themes/tela-icon-theme: Remove 20220828-r2
Signed-off-by: Steffen Winter <steffen.winter@proton.me>
Signed-off-by: Georgy Yakovlev <gyakovlev@gentoo.org>
Diffstat (limited to 'x11-themes/tela-icon-theme')
-rw-r--r-- | x11-themes/tela-icon-theme/tela-icon-theme-20220828-r2.ebuild | 70 |
1 files changed, 0 insertions, 70 deletions
diff --git a/x11-themes/tela-icon-theme/tela-icon-theme-20220828-r2.ebuild b/x11-themes/tela-icon-theme/tela-icon-theme-20220828-r2.ebuild deleted file mode 100644 index 3dc74352a3e5..000000000000 --- a/x11-themes/tela-icon-theme/tela-icon-theme-20220828-r2.ebuild +++ /dev/null @@ -1,70 +0,0 @@ -# Copyright 2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit edo - -# eg. 20211225 -> 2021-12-25 -MY_PV="${PV:0:4}-${PV:4:2}-${PV:6:2}" -MY_PN="${PN^}" - -# standard comes first -MY_COLOR_VARIANTS=( standard black blue brown green grey orange pink purple red yellow manjaro ubuntu nord ) - -inherit xdg - -DESCRIPTION="A flat colorful Design icon theme" -HOMEPAGE="https://github.com/vinceliuice/Tela-icon-theme" - -if [[ ${PV} == 99999999 ]]; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/vinceliuice/${MY_PN}.git" -else - SRC_URI="https://github.com/vinceliuice/${MY_PN}/archive/refs/tags/${MY_PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~arm64 ~ppc64" - S="${WORKDIR}/${MY_PN}-${MY_PV}" -fi - -LICENSE="GPL-3+" -SLOT="0" -IUSE="+${MY_COLOR_VARIANTS[*]} +hardlink kde" # this is why standard comes first - -REQUIRED_USE="|| ( ${MY_COLOR_VARIANTS[*]} )" - -# not needed and slows us down, package installs 120 000 small files -RESTRICT="binchecks strip test" - -# technically we can use app-arch/harlink too, but it's deprecated -BDEPEND=" - app-shells/bash - sys-apps/util-linux[hardlink(-)?] -" - -src_prepare() { - default - # we use eclass for that - sed -i '/gtk-update-icon-cache/d' install.sh || die -} - -src_install() { - local v variants=( - $(usev kde '-c') - $(for v in ${MY_COLOR_VARIANTS[@]}; do - usev ${v} - done) - ) - - dodir /usr/share/icons - ./install.sh -d "${ED}/usr/share/icons" "${variants[@]}" || die - if use hardlink; then - einfo "Linking duplicate icons... (may take a long time)" - hardlink -pot "${ED}/usr/share/icons" || die "hardlink failed" - fi - - # installs broken symlink (by design, but we remove it due to QA warnings) - # https://bugs.gentoo.org/830467 - edob find "${ED}" -xtype l -print -delete - - einstalldocs -} |