diff options
author | Michał Górny <mgorny@gentoo.org> | 2020-12-23 11:05:42 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2020-12-23 11:14:21 +0100 |
commit | eb3688599050367fc39d0d46f2bc1e5e369568c9 (patch) | |
tree | 7451da95190c057577f0c34d8d38919716bf88f8 /xfce-extra/xfdashboard | |
parent | Revert "app-arch/tar: add patch for macOS Big Sur 11.1" (diff) | |
download | gentoo-eb3688599050367fc39d0d46f2bc1e5e369568c9.tar.gz gentoo-eb3688599050367fc39d0d46f2bc1e5e369568c9.tar.bz2 gentoo-eb3688599050367fc39d0d46f2bc1e5e369568c9.zip |
xfce-extra/xfdashboard: Bump to 0.8.0
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'xfce-extra/xfdashboard')
-rw-r--r-- | xfce-extra/xfdashboard/Manifest | 1 | ||||
-rw-r--r-- | xfce-extra/xfdashboard/xfdashboard-0.8.0.ebuild | 45 |
2 files changed, 46 insertions, 0 deletions
diff --git a/xfce-extra/xfdashboard/Manifest b/xfce-extra/xfdashboard/Manifest index cd11d7e5ace7..0b5ef85509a4 100644 --- a/xfce-extra/xfdashboard/Manifest +++ b/xfce-extra/xfdashboard/Manifest @@ -1,2 +1,3 @@ DIST xfdashboard-0.7.5.tar.bz2 3366413 BLAKE2B 4fb9c9bd298f5e9b0f3052e1f3d488386446d37e9130e750ee09756da856d232fdc4c18fc21e9883c3df46e7cba636c82f32942b17473a5710e30006baf6a54f SHA512 5d32aa3a49e02d85ca92bee6aa37a3b743e50ca5d992128decea5846e8c9008a9f5bdb98cc0ee3e980761a6538a4867ff28410e066ef22f0aa2c2bd4c5ce1523 DIST xfdashboard-0.7.90.tar.bz2 3394745 BLAKE2B 5550851a7a60802f079fb19ba32064cb43e09b0d36956ee87fbca3878ff6df20624e2c4262f9fcf81071a42aeb937f97954f0724faed70ffd0592472fa36cfc1 SHA512 8aea6127ffae2a7f0a241be04b2c518070688b56621f629798c9b8becd749577f2902e342ba0a99e14e3f38d0cb00f4887d04d2a418e619d97e413c2517faa9f +DIST xfdashboard-0.8.0.tar.bz2 3341109 BLAKE2B 8787bd5069d8c4781c1b728e051e344dab227c847faf0762595079556a206b61ba4e6e45cc967f0f7267b41125bee62ff5fdf05cbbc7b3663fa785ad1fdddc16 SHA512 3bbddf079f129c8f32b764f61c75cc4efac52dff752375bdafd5537ad9c9435a5b12ead51176a684fca8fdc24f5bf44d774d8d3d6eae6942b266e1d0e4e89d62 diff --git a/xfce-extra/xfdashboard/xfdashboard-0.8.0.ebuild b/xfce-extra/xfdashboard/xfdashboard-0.8.0.ebuild new file mode 100644 index 000000000000..994d8b9135bb --- /dev/null +++ b/xfce-extra/xfdashboard/xfdashboard-0.8.0.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit xdg-utils + +DESCRIPTION="Maybe a GNOME shell like dashboard for the Xfce desktop environment" +HOMEPAGE="https://goodies.xfce.org/projects/applications/xfdashboard/start" +SRC_URI="https://archive.xfce.org/src/apps/${PN}/${PV%.*}/${P}.tar.bz2" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=">=dev-libs/glib-2.38:2 + >=x11-libs/gtk+-3.2:3 + >=media-libs/clutter-1.12:1.0=[gtk] + >=x11-libs/libwnck-3:3= + x11-libs/libX11:= + x11-libs/libXcomposite:= + x11-libs/libXdamage:= + x11-libs/libXinerama:= + >=xfce-base/garcon-0.2.0:= + >=xfce-base/libxfce4ui-4.10:= + >=xfce-base/libxfce4util-4.10:= + >=xfce-base/xfconf-4.13:=" +DEPEND="${RDEPEND}" +BDEPEND=" + dev-util/intltool + virtual/pkgconfig" + +src_install() { + default + find "${D}" -name '*.la' -delete || die +} + +pkg_postinst() { + xdg_icon_cache_update +} + +pkg_postrm() { + xdg_icon_cache_update +} |