diff options
author | Michał Górny <mgorny@gentoo.org> | 2018-10-27 14:45:04 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2018-10-27 14:46:24 +0200 |
commit | 92d6e24cce5860cbe76c5126eeb0999a59af9812 (patch) | |
tree | 22129616108e2d137d27075aabf4280fb7cfad10 /x11-misc/gigolo | |
parent | dev-perl/Path-Tiny: added Prefix keywords, bug #665088 (diff) | |
download | gentoo-92d6e24cce5860cbe76c5126eeb0999a59af9812.tar.gz gentoo-92d6e24cce5860cbe76c5126eeb0999a59af9812.tar.bz2 gentoo-92d6e24cce5860cbe76c5126eeb0999a59af9812.zip |
x11-misc/gigolo: Bump to 0.4.90 (GTK+3 port)
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'x11-misc/gigolo')
-rw-r--r-- | x11-misc/gigolo/Manifest | 1 | ||||
-rw-r--r-- | x11-misc/gigolo/gigolo-0.4.90.ebuild | 34 |
2 files changed, 35 insertions, 0 deletions
diff --git a/x11-misc/gigolo/Manifest b/x11-misc/gigolo/Manifest index 18a794dc8317..ca153f960af8 100644 --- a/x11-misc/gigolo/Manifest +++ b/x11-misc/gigolo/Manifest @@ -1 +1,2 @@ DIST gigolo-0.4.2.tar.bz2 243877 BLAKE2B 7536d8fc1a10abb465b2150785f593c88b4d0a40fc76e1f88388a1631f874ccf0169dec9328b1051c39d6334257c765b409aefeb008a4dfd30bdd9e61d43d269 SHA512 d6d8c65674097fb3eae586e4c71b0f36ba64df00b2ac84c32bd83cfb0fd690ae998c22cea02194acd1f018cdfd01b42f840867425ed183fb0ad98c8d97859532 +DIST gigolo-0.4.90.tar.bz2 249532 BLAKE2B 87cd22db54434eb20dd6d3a1fd569cba8de00acb8b53a3dfa0c51b14d36644d1a92aa2863e93f11d219d7ee2412a426d24e9b1f59c7146eb60bd46362a8fcc28 SHA512 9517e1a31abdbfa15159912ed261c6981a6c207b0f74f5ed84ccd8dca18a3ab011cc97f423b67b7a21866b35a56a5c9494ec5ac4dd0d214cfe1eb5a2bc429711 diff --git a/x11-misc/gigolo/gigolo-0.4.90.ebuild b/x11-misc/gigolo/gigolo-0.4.90.ebuild new file mode 100644 index 000000000000..68700a0bbf9c --- /dev/null +++ b/x11-misc/gigolo/gigolo-0.4.90.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit xdg-utils + +DESCRIPTION="a frontend to easily manage connections to remote filesystems using GIO/GVfs" +HOMEPAGE="https://www.uvena.de/gigolo/ https://goodies.xfce.org/projects/applications/gigolo" +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.16 + >=x11-libs/gtk+-3.14:3" +DEPEND="${RDEPEND} + dev-util/intltool + virtual/pkgconfig" + +src_prepare() { + rm COPYING || die + default +} + +pkg_postinst() { + xdg_desktop_database_update +} + +pkg_postrm() { + xdg_desktop_database_update +} |