diff options
author | Michał Górny <mgorny@gentoo.org> | 2020-06-22 15:50:12 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2020-06-22 17:35:37 +0200 |
commit | 47d7ca0cf621595fcf9bbc7d3b025a1cda4b740a (patch) | |
tree | 95976a9214c1cec7c06699d5e142cbf1ab3ea0d1 /x11-themes | |
parent | sci-libs/scipy: Bump to 1.5.0 (diff) | |
download | gentoo-47d7ca0cf621595fcf9bbc7d3b025a1cda4b740a.tar.gz gentoo-47d7ca0cf621595fcf9bbc7d3b025a1cda4b740a.tar.bz2 gentoo-47d7ca0cf621595fcf9bbc7d3b025a1cda4b740a.zip |
x11-themes/elementary-xfce-icon-theme: Bump to 0.15.1
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'x11-themes')
-rw-r--r-- | x11-themes/elementary-xfce-icon-theme/Manifest | 1 | ||||
-rw-r--r-- | x11-themes/elementary-xfce-icon-theme/elementary-xfce-icon-theme-0.15.1.ebuild | 46 |
2 files changed, 47 insertions, 0 deletions
diff --git a/x11-themes/elementary-xfce-icon-theme/Manifest b/x11-themes/elementary-xfce-icon-theme/Manifest index f2d840a61f36..ce96097f1835 100644 --- a/x11-themes/elementary-xfce-icon-theme/Manifest +++ b/x11-themes/elementary-xfce-icon-theme/Manifest @@ -1 +1,2 @@ +DIST elementary-xfce-0.15.1.tar.gz 6198394 BLAKE2B 18638aa2c55a01a48fc342a836c9271aeb09524ee1032bc8237fc864e92fa09f8784439ab793f474311465ef40710ac7665217496ce98444ae146c7c526d43da SHA512 e28524c0a1f3b2b35a43428ab4de58e0e7635b5ca4e57f88d44de356965dd978d34aeb514440d7413dd8cdaf1b869bd5024e63cb3bd668fe9b47b52872de9445 DIST elementary-xfce-0.15.tar.gz 6178898 BLAKE2B 9b15a850a91c6d2fc598efe463c66dfeaecd70c45131c387e303ad471076b26f95c151cc3534e34e3d00c05334cfb601a2683492bcde64d326b4a2efa94fde68 SHA512 35434671d81ef5ad61562360faa54752da7351c1d885efc5dd3dffd5af86bb3ba91aa9f20433e237ccd6eb9ffadf1342a7c77a4a83154c8655fd076eca9107b3 diff --git a/x11-themes/elementary-xfce-icon-theme/elementary-xfce-icon-theme-0.15.1.ebuild b/x11-themes/elementary-xfce-icon-theme/elementary-xfce-icon-theme-0.15.1.ebuild new file mode 100644 index 000000000000..9d36aba20360 --- /dev/null +++ b/x11-themes/elementary-xfce-icon-theme/elementary-xfce-icon-theme-0.15.1.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit xdg-utils toolchain-funcs + +MY_P="${PN%-icon-theme}-${PV}" +DESCRIPTION="Elementary icons forked from upstream, extended and maintained for Xfce" +HOMEPAGE="https://github.com/shimmerproject/elementary-xfce" +SRC_URI="https://github.com/shimmerproject/elementary-xfce/archive/v${PV}.tar.gz -> ${MY_P}.tar.gz" + +LICENSE="public-domain GPL-1 GPL-2 GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="" +DEPEND="media-gfx/optipng + sys-apps/findutils + x11-libs/gdk-pixbuf:2 + x11-libs/gtk+:3" + +S="${WORKDIR}/${MY_P}" + +src_configure() { + # custom script + ./configure --prefix="${EPREFIX}/usr" || die +} + +src_compile() { + emake CC="$(tc-getCC)" +} + +src_install() { + default + # delete dangling doc links + find -L "${D}" -type l -delete || die +} + +pkg_postinst() { + xdg_icon_cache_update +} + +pkg_postrm() { + xdg_icon_cache_update +} |