diff --git a/app-misc/minder/Manifest b/app-misc/minder/Manifest index 4663cefaeb..062dee9056 100644 --- a/app-misc/minder/Manifest +++ b/app-misc/minder/Manifest @@ -1 +1,2 @@ DIST minder-2.0.8.tar.gz 2206920 BLAKE2B ac0aa7f86e62e5df0b745e3076a383a621d13b2a9bb46dea9dd3527d150ef0ee1b6bb887d248bac4852a232132006200bc0485659dcf79faee0446d0a72fb104 SHA512 673d414caedcd803065d643dba2cd5d91d4eb4db1b8e9d24df30d54f3770f63e0c85a91cd5dcc00c657b1d64ba7618cd743b7d42468a15fa1db0f348ecfbd5de +DIST minder-2.0.9.tar.gz 2218143 BLAKE2B 5d8423d81b7a9b7bfcea3a2f86018fa51cd99618f5f0f4f7ffe91b3441058b319b3c79f0d7d647775e5c6e68c01a1ac98392c56a6fd6e96d98f1d80b8bc4161c SHA512 273bb9257d3142219f627171cb7d9cc2e0c88289dadcfa4a50526705614fa6d5e1c76c1409f483dd7aa003bdc3acffbbd597252a34faa4cf2a9134096ad9e194 diff --git a/app-misc/minder/minder-2.0.9.ebuild b/app-misc/minder/minder-2.0.9.ebuild new file mode 100644 index 0000000000..e4781d298a --- /dev/null +++ b/app-misc/minder/minder-2.0.9.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit gnome2-utils meson vala xdg + +DESCRIPTION="Mind-mapping application for Elementary OS." +HOMEPAGE="https://github.com/phase1geo/Minder" +SRC_URI="https://github.com/phase1geo/Minder/archive/${PV}.tar.gz -> ${P}.tar.gz" + +S="${WORKDIR}/Minder-${PV}" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND=" + app-text/discount + dev-lang/vala + dev-libs/granite + dev-libs/json-glib + gui-libs/libhandy[vala] + gui-libs/gtksourceview:5[vala] +" + +DEPEND=" + ${RDEPEND} + app-text/discount +" + +src_prepare() { + default + vala_setup + + # Workaround for #871687 + sed -i "s/meson.add_install_script('meson\/post_install.py')//g" meson.build || die +} + +pkg_postinst() { + xdg_desktop_database_update + xdg_icon_cache_update + xdg_mimeinfo_database_update + gnome2_schemas_update +} + +pkg_postrm() { + xdg_desktop_database_update + xdg_icon_cache_update + xdg_mimeinfo_database_update + gnome2_schemas_update +}