diff options
author | Michał Górny <mgorny@gentoo.org> | 2023-09-29 14:39:48 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2023-09-29 14:39:48 +0200 |
commit | aa9a8321e613be5d537a250a69763f9234cef57a (patch) | |
tree | 411108173113fdedcbeb8cb5cf2da3c9deb325af /x11-misc | |
parent | gnome-extra/gnome-shell-extension-appindicator: unkeyword 57 for ~ppc64 (diff) | |
download | gentoo-aa9a8321e613be5d537a250a69763f9234cef57a.tar.gz gentoo-aa9a8321e613be5d537a250a69763f9234cef57a.tar.bz2 gentoo-aa9a8321e613be5d537a250a69763f9234cef57a.zip |
x11-misc/gigolo: Bump to 0.5.3
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/gigolo/Manifest | 1 | ||||
-rw-r--r-- | x11-misc/gigolo/gigolo-0.5.3.ebuild | 45 |
2 files changed, 46 insertions, 0 deletions
diff --git a/x11-misc/gigolo/Manifest b/x11-misc/gigolo/Manifest index 315c312f6e56..fefa3edeb7f9 100644 --- a/x11-misc/gigolo/Manifest +++ b/x11-misc/gigolo/Manifest @@ -1 +1,2 @@ DIST gigolo-0.5.2.tar.bz2 294210 BLAKE2B 67ac4f161ddac212b15456713b1abbcda83a0ceb744606b7050b185d7ebb286ec087d4a25dfd2adaf269f7b57b627232157a259c3cca8c22b84551ab17eac0ab SHA512 2277186495a5ae5f4b4a30ca738b6c35287d6fa51d0df11d31ac627811a67ad31202c3c78225e3035b92c3bf111e6ff098bc7ba83482e0bea0e5e2edcfaec0c7 +DIST gigolo-0.5.3.tar.bz2 304664 BLAKE2B 958e2cdbd043adf1e4f166ca6435462ee2621d7f7bc4918505715bc3240f5ee2a60fb5a27f23a607a1ffd862d41123dfd5977aa87f7c4fe1c7a085d05aac3b2a SHA512 46d93d4c2654a91724208f144098f0a870465823a516339c8455345b5d32be6efe2b7fb13d3e5c89daf2cd919e07e5fcbdc8c8e93bce03c78dbe1907ea5edfcd diff --git a/x11-misc/gigolo/gigolo-0.5.3.ebuild b/x11-misc/gigolo/gigolo-0.5.3.ebuild new file mode 100644 index 000000000000..1ac29bd0a0a1 --- /dev/null +++ b/x11-misc/gigolo/gigolo-0.5.3.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit xdg-utils + +DESCRIPTION="A frontend to easily manage connections to remote filesystems using GIO/GVfs" +HOMEPAGE=" + https://www.uvena.de/gigolo/ + https://docs.xfce.org/apps/gigolo/start + https://gitlab.xfce.org/apps/gigolo/ +" +SRC_URI="https://archive.xfce.org/src/apps/${PN}/${PV%.*}/${P}.tar.bz2" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND=" + >=dev-libs/glib-2.38.0 + >=x11-libs/gtk+-3.14.0:3 +" +RDEPEND=" + ${DEPEND} +" +BDEPEND=" + dev-util/intltool + virtual/pkgconfig +" + +src_prepare() { + rm COPYING || die + default +} + +pkg_postinst() { + xdg_desktop_database_update + xdg_icon_cache_update +} + +pkg_postrm() { + xdg_desktop_database_update + xdg_icon_cache_update +} |