diff options
author | Gilles Dartiguelongue <eva@gentoo.org> | 2016-09-08 00:18:11 +0200 |
---|---|---|
committer | Gilles Dartiguelongue <eva@gentoo.org> | 2016-09-08 00:31:59 +0200 |
commit | 4469e971664da6f89be3c46dedccb2334030df3e (patch) | |
tree | 58902eb2174ff4f750d94ceefabdfe42d2873c73 /x11-misc/notification-daemon | |
parent | dev-util/gtk-doc-am: version bump to 1.25-r1 (diff) | |
download | gentoo-4469e971664da6f89be3c46dedccb2334030df3e.tar.gz gentoo-4469e971664da6f89be3c46dedccb2334030df3e.tar.bz2 gentoo-4469e971664da6f89be3c46dedccb2334030df3e.zip |
x11-misc/notification-daemon: version bump from 3.18.2 to 3.20.0
Package-Manager: portage-2.3.0
Diffstat (limited to 'x11-misc/notification-daemon')
-rw-r--r-- | x11-misc/notification-daemon/Manifest | 1 | ||||
-rw-r--r-- | x11-misc/notification-daemon/notification-daemon-3.20.0.ebuild | 44 |
2 files changed, 45 insertions, 0 deletions
diff --git a/x11-misc/notification-daemon/Manifest b/x11-misc/notification-daemon/Manifest index c9cf8dc28344..00e3b19857b9 100644 --- a/x11-misc/notification-daemon/Manifest +++ b/x11-misc/notification-daemon/Manifest @@ -4,3 +4,4 @@ DIST notification-daemon-3.14.1.tar.xz 280344 SHA256 3cd9af77708fb1ab95ed6c8c660 DIST notification-daemon-3.16.1.tar.xz 280404 SHA256 256b322f5d18d438c3f1b0d1d10b6b1fbcff80f82f785e3fc69680e4e498fd81 SHA512 02971b68c5f16d5cf7760915040ac6336a540cda4fd85766e4597a9df3fc4971d7f12f8023a84e55c5cc90c79ea5c685b440411854d2113a719474347c8c4979 WHIRLPOOL 21f06857caf115cd4d53de14e9531a09ade102d378c1a80ba779f4c4cf7b392ae31c50cf7c148aa21800e882a3cd4bd10ba64ae197fd56e560ce050d2875d307 DIST notification-daemon-3.18.1.tar.xz 327140 SHA256 5c3c86d677884b648bff58985fd3f5eb67d1fc92b78161f1e2e1dc5be91f5d05 SHA512 f21fe99e9c12debd05212e45c4887371ea985182bdf5d3559aef6a912ff87f717a3856976bf4bba0c49c4d188a7ef7503893389c7ca193f02ec7aa4bbcb38717 WHIRLPOOL 8489d91eeec979237c338f5ae82a191fe25b214506d7aca2245c32124ac044f0f2147549b59d29a1412d146e05bd6005b866e918660a472c59ea52c8b6122c5d DIST notification-daemon-3.18.2.tar.xz 329196 SHA256 0aac24764b62f34eca94f37a97e7473b6d557138440ae80b77099171ca6d67b4 SHA512 962d84eb1970451d12d07027d4ee6843a96dc42c7d954dcb79bac55cd9918dcc84a2903b4ee032a0fd8f25d269e5e965a1deaab3da34b4181ea304df2adbae3c WHIRLPOOL 6ee853a2f44cd7b3b194a8b4030c290620b2d9a2a09f309c119f7bb372ebc41bcf50ece2561055a7b96037457e73254bf8ead80bb1f3494cdde13000334ef2b7 +DIST notification-daemon-3.20.0.tar.xz 340752 SHA256 dd13768f35fd8bba9c4920b0f8269f39270e5a3cfed1a34c3b940a492286ece5 SHA512 d9311c71a2915cb6e55bd1408e60b4d7b7fc24114410b8bd8cb358fe86c100198567099843b967f7e01ca03c91afe3f3980fb30b7f2c138bdab949e0e196a0f8 WHIRLPOOL 130c008a3d2bfdfe30aa79fe227bc182de75fd6a08f6faf196f8b2db48cc5d7df23c64b60015820a42667e622c49016a471147e935c5d36f3bd4ce50970ba801 diff --git a/x11-misc/notification-daemon/notification-daemon-3.20.0.ebuild b/x11-misc/notification-daemon/notification-daemon-3.20.0.ebuild new file mode 100644 index 000000000000..92f703b5ecef --- /dev/null +++ b/x11-misc/notification-daemon/notification-daemon-3.20.0.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit gnome.org + +DESCRIPTION="Notification daemon" +HOMEPAGE="https://git.gnome.org/browse/notification-daemon/" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris" +IUSE="" + +RDEPEND=" + >=dev-libs/glib-2.28:2 + >=x11-libs/gtk+-3.19.5:3 + sys-apps/dbus + x11-libs/libX11 + !x11-misc/notify-osd + !x11-misc/qtnotifydaemon +" +DEPEND="${RDEPEND} + dev-util/gdbus-codegen + >=sys-devel/gettext-0.19.4 + virtual/pkgconfig +" + +DOCS=( AUTHORS ChangeLog NEWS ) + +src_install() { + default + + cat <<-EOF > "${T}"/org.freedesktop.Notifications.service + [D-BUS Service] + Name=org.freedesktop.Notifications + Exec=/usr/libexec/notification-daemon + EOF + + insinto /usr/share/dbus-1/services + doins "${T}"/org.freedesktop.Notifications.service +} |