diff --git a/app-misc/minder/Manifest b/app-misc/minder/Manifest index ff8a31da36..cca063aa7f 100644 --- a/app-misc/minder/Manifest +++ b/app-misc/minder/Manifest @@ -1 +1,2 @@ DIST minder-2.0.5.tar.gz 2176778 BLAKE2B cf122cfd181909b17ae55bbd78a39dd746227d9d12d4763a0f1ce33a22332dec578087d45add9bbf79d1c79a8f2a2df5f01b21666c185b8cbf2385eac8a9437c SHA512 1755ad2b7a01a7a393e4b72c91ba2e272678014703cb8d097df9566668467bcb31d12c5fe6938c8fec65a820d1fd027599e4366479f9cc4a022cb290dad170be +DIST minder-2.0.7.tar.gz 2206438 BLAKE2B f04e709ff68808ccf69db3c6c0751ecabd87105760b52290667903a5052e8ad4770d1ee500e0c91df2ed14dc5f1e2cf2a30ee1496dc048c4342d59f3bb88acd7 SHA512 931f6f1da8791dbbd56fd8b0865ba616503987c9753471523e5b1cf5313a0e1226bd7311f6e5a1437536ebbe0f1e301390c6eaba12e53b1dbdb23865ec806ef4 diff --git a/app-misc/minder/minder-2.0.7.ebuild b/app-misc/minder/minder-2.0.7.ebuild new file mode 100644 index 0000000000..e4781d298a --- /dev/null +++ b/app-misc/minder/minder-2.0.7.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 +}