diff options
author | Matt Turner <mattst88@gentoo.org> | 2022-07-16 13:59:21 -0700 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2022-07-16 14:27:03 -0700 |
commit | ec938a8cadae1238f8b41865854f0aed98a3e8cc (patch) | |
tree | cf83d3309c0306ebcaa0bc67dd3745a2a9881f87 /x11-libs/libnotify/libnotify-0.8.0.ebuild | |
parent | net-libs/gtk-vnc: Version bump to 1.3.1 (diff) | |
download | gentoo-ec938a8cadae1238f8b41865854f0aed98a3e8cc.tar.gz gentoo-ec938a8cadae1238f8b41865854f0aed98a3e8cc.tar.bz2 gentoo-ec938a8cadae1238f8b41865854f0aed98a3e8cc.zip |
x11-libs/libnotify: Version bump to 0.8.0
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'x11-libs/libnotify/libnotify-0.8.0.ebuild')
-rw-r--r-- | x11-libs/libnotify/libnotify-0.8.0.ebuild | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/x11-libs/libnotify/libnotify-0.8.0.ebuild b/x11-libs/libnotify/libnotify-0.8.0.ebuild new file mode 100644 index 000000000000..f91fcaa55488 --- /dev/null +++ b/x11-libs/libnotify/libnotify-0.8.0.ebuild @@ -0,0 +1,63 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit gnome.org meson-multilib xdg-utils + +DESCRIPTION="A library for sending desktop notifications" +HOMEPAGE="https://gitlab.gnome.org/GNOME/libnotify" + +LICENSE="LGPL-2.1+" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris" +IUSE="gtk-doc +introspection test" +RESTRICT="!test? ( test )" + +RDEPEND=" + >=dev-libs/glib-2.38:2[${MULTILIB_USEDEP}] + x11-libs/gdk-pixbuf:2[${MULTILIB_USEDEP}] + introspection? ( >=dev-libs/gobject-introspection-1.54:= ) +" +DEPEND="${RDEPEND}" +BDEPEND=" + >=dev-libs/gobject-introspection-common-1.32 + dev-util/glib-utils + virtual/pkgconfig + app-text/docbook-xsl-ns-stylesheets + dev-libs/libxslt + gtk-doc? ( dev-util/gtk-doc + app-text/docbook-xml-dtd:4.1.2 ) + test? ( x11-libs/gtk+:3[${MULTILIB_USEDEP}] ) +" +IDEPEND="app-eselect/eselect-notify-send" +PDEPEND="virtual/notification-daemon" + +src_prepare() { + default + xdg_environment_reset +} + +multilib_src_configure() { + local emesonargs=( + $(meson_use test tests) + $(meson_native_use_feature introspection) + $(meson_native_use_bool gtk-doc gtk_doc) + -Ddocbook_docs=disabled + ) + meson_src_configure +} + +multilib_src_install() { + meson_src_install + + mv "${ED}"/usr/bin/{,libnotify-}notify-send || die #379941 +} + +pkg_postinst() { + eselect notify-send update ifunset +} + +pkg_postrm() { + eselect notify-send update ifunset +} |