diff options
author | Matt Turner <mattst88@gentoo.org> | 2021-04-30 15:59:30 -0400 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2021-04-30 15:59:30 -0400 |
commit | c002efa88949c23634b69992207c432354d2ef71 (patch) | |
tree | 8ab384d9f977460e3233f41343bdace1389152f1 /app-misc/bijiben/bijiben-40.1.ebuild | |
parent | app-arch/gnome-autoar: Version bump to 0.3.2 (diff) | |
download | gentoo-c002efa88949c23634b69992207c432354d2ef71.tar.gz gentoo-c002efa88949c23634b69992207c432354d2ef71.tar.bz2 gentoo-c002efa88949c23634b69992207c432354d2ef71.zip |
app-misc/bijiben: Version bump to 40.1
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'app-misc/bijiben/bijiben-40.1.ebuild')
-rw-r--r-- | app-misc/bijiben/bijiben-40.1.ebuild | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/app-misc/bijiben/bijiben-40.1.ebuild b/app-misc/bijiben/bijiben-40.1.ebuild new file mode 100644 index 000000000000..6748c33e46a8 --- /dev/null +++ b/app-misc/bijiben/bijiben-40.1.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python3_{7..9} ) +inherit gnome.org gnome2-utils meson python-any-r1 xdg + +DESCRIPTION="Note editor designed to remain simple to use" +HOMEPAGE="https://wiki.gnome.org/Apps/Notes" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND=" + app-misc/tracker:3= + >=dev-libs/glib-2.53.4:2 + net-libs/gnome-online-accounts:= + >=x11-libs/gtk+-3.19.3:3 + dev-libs/json-glib + >=gnome-extra/evolution-data-server-3.33.2:= + >=gui-libs/libhandy-1.0.0:1= + dev-libs/libxml2:2 + sys-apps/util-linux + >=net-libs/webkit-gtk-2.26:4 +" +RDEPEND="${DEPEND}" +BDEPEND=" + ${PYTHON_DEPS} + dev-libs/appstream-glib + dev-util/gdbus-codegen + dev-util/glib-utils + dev-util/itstool + >=sys-devel/gettext-0.19.8 + virtual/pkgconfig +" + +src_configure() { + local emesonargs=( + -Dupdate_mimedb=false + -Dprivate_store=false # private store is mainly meant for flatpak builds + ) + meson_src_configure +} + +pkg_postinst() { + xdg_pkg_postinst + gnome2_schemas_update +} + +pkg_postrm() { + xdg_pkg_postrm + gnome2_schemas_update +} |