diff options
author | Gilles Dartiguelongue <eva@gentoo.org> | 2014-12-23 23:30:22 +0000 |
---|---|---|
committer | Gilles Dartiguelongue <eva@gentoo.org> | 2014-12-23 23:30:22 +0000 |
commit | dab7affbfcf140a408bcaa684f2caa98b079cbb1 (patch) | |
tree | adf26c4a09466719decaca45f359f28aeed32ff9 /x11-misc | |
parent | Version bump for Gnome 3.14. (diff) | |
download | gentoo-2-dab7affbfcf140a408bcaa684f2caa98b079cbb1.tar.gz gentoo-2-dab7affbfcf140a408bcaa684f2caa98b079cbb1.tar.bz2 gentoo-2-dab7affbfcf140a408bcaa684f2caa98b079cbb1.zip |
Version bump for Gnome 3.14.
(Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key C6085806)
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/notification-daemon/ChangeLog | 8 | ||||
-rw-r--r-- | x11-misc/notification-daemon/notification-daemon-3.14.1.ebuild | 46 |
2 files changed, 53 insertions, 1 deletions
diff --git a/x11-misc/notification-daemon/ChangeLog b/x11-misc/notification-daemon/ChangeLog index 9f0a6f2c5996..2650d7a3497f 100644 --- a/x11-misc/notification-daemon/ChangeLog +++ b/x11-misc/notification-daemon/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for x11-misc/notification-daemon # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/notification-daemon/ChangeLog,v 1.98 2014/06/02 18:11:06 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/notification-daemon/ChangeLog,v 1.99 2014/12/23 23:30:22 eva Exp $ + +*notification-daemon-3.14.1 (23 Dec 2014) + + 23 Dec 2014; Gilles Dartiguelongue <eva@gentoo.org> + +notification-daemon-3.14.1.ebuild: + Version bump for Gnome 3.14. 02 Jun 2014; Samuli Suominen <ssuominen@gentoo.org> notification-daemon-0.7.6.ebuild: diff --git a/x11-misc/notification-daemon/notification-daemon-3.14.1.ebuild b/x11-misc/notification-daemon/notification-daemon-3.14.1.ebuild new file mode 100644 index 000000000000..cfaf58f94ab2 --- /dev/null +++ b/x11-misc/notification-daemon/notification-daemon-3.14.1.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/notification-daemon/notification-daemon-3.14.1.ebuild,v 1.1 2014/12/23 23:30:22 eva Exp $ + +EAPI=5 + +inherit gnome.org + +DESCRIPTION="Notification daemon" +HOMEPAGE="http://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 + >=x11-libs/gtk+-3.8:3 + sys-apps/dbus + media-libs/libcanberra[gtk3] + >=x11-libs/libnotify-0.7 + x11-libs/libX11 + !x11-misc/notify-osd + !x11-misc/qtnotifydaemon +" +DEPEND="${RDEPEND} + dev-util/intltool + sys-devel/gettext + 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 +} |