logo

overlay

My (experimental) gentoo overlay
commit: 175083ff62990bdccb439b40e944d8691feb565b
parent: 92b8e9a2f9d0f3df5fd691d9cb208df91d0ccba1
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date:   Thu,  7 Jun 2018 01:34:13 +0200

net-im/tootle: New Package

Diffstat:

Anet-im/tootle/Manifest1+
Anet-im/tootle/tootle-0.1.3.ebuild38++++++++++++++++++++++++++++++++++++++
2 files changed, 39 insertions(+), 0 deletions(-)

diff --git a/net-im/tootle/Manifest b/net-im/tootle/Manifest @@ -0,0 +1 @@ +DIST tootle-0.1.3.tar.gz 922538 BLAKE2B 4544a6ee024aa29cbec10b232081496d46ce1eefd009fcd4ecc9f7f77ad2c935ca475dd29899e405e0636980104048654bec10c249f1bf3366e102e923288543 SHA512 9ed4c3151b9dfacc75233d3d809e4a786f3cca7061c4c1d00660e1b450f1d742be0dc03682c91631594939d709fc49f2d2e49f11e7cddd9293779b5b2e24f2a7 diff --git a/net-im/tootle/tootle-0.1.3.ebuild b/net-im/tootle/tootle-0.1.3.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit meson vala gnome2-utils + +DESCRIPTION="GTK3 client for Mastodon" +HOMEPAGE="https://github.com/bleakgrey/tootle" +SRC_URI="https://github.com/bleakgrey/tootle/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="" +RDEPEND="${DEPEND}" + +src_prepare() { + vala_src_prepare + default +} + +pkg_preinst() { + gnome2_gconf_savelist + gnome2_schemas_savelist +} + +pkg_postinst() { + gnome2_icon_cache_update + gnome2_gconf_install + gnome2_schemas_update +} + +pkg_postrm() { + gnome2_icon_cache_update +}