From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 78B1A138E74 for ; Mon, 3 Nov 2014 23:24:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 59566E0879; Mon, 3 Nov 2014 23:24:31 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 732DFE087A for ; Mon, 3 Nov 2014 23:24:30 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 61E3B33F7E0 for ; Mon, 3 Nov 2014 23:24:29 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 44CF39602 for ; Mon, 3 Nov 2014 23:24:25 +0000 (UTC) From: "Gilles Dartiguelongue" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Gilles Dartiguelongue" Message-ID: <1414945453.09f3f83a7f012a4a4799df12f514241761ee7469.eva@gentoo> Subject: [gentoo-commits] proj/gnome:master commit in: x11-misc/notification-daemon/ X-VCS-Repository: proj/gnome X-VCS-Files: x11-misc/notification-daemon/metadata.xml x11-misc/notification-daemon/notification-daemon-3.14.0.ebuild X-VCS-Directories: x11-misc/notification-daemon/ X-VCS-Committer: eva X-VCS-Committer-Name: Gilles Dartiguelongue X-VCS-Revision: 09f3f83a7f012a4a4799df12f514241761ee7469 X-VCS-Branch: master Date: Mon, 3 Nov 2014 23:24:25 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 968beed8-c5d4-44b9-8f39-246b503149b3 X-Archives-Hash: 6d128f8242e761237a898492d99697f0 commit: 09f3f83a7f012a4a4799df12f514241761ee7469 Author: Gilles Dartiguelongue gentoo org> AuthorDate: Sun Nov 2 16:22:33 2014 +0000 Commit: Gilles Dartiguelongue gentoo org> CommitDate: Sun Nov 2 16:24:13 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=09f3f83a x11-misc/notification-daemon: 0.7.6 → 3.14.0 --- x11-misc/notification-daemon/metadata.xml | 5 +++ .../notification-daemon-3.14.0.ebuild | 46 ++++++++++++++++++++++ 2 files changed, 51 insertions(+) diff --git a/x11-misc/notification-daemon/metadata.xml b/x11-misc/notification-daemon/metadata.xml new file mode 100644 index 0000000..8542880 --- /dev/null +++ b/x11-misc/notification-daemon/metadata.xml @@ -0,0 +1,5 @@ + + + + freedesktop + diff --git a/x11-misc/notification-daemon/notification-daemon-3.14.0.ebuild b/x11-misc/notification-daemon/notification-daemon-3.14.0.ebuild new file mode 100644 index 0000000..b99028b --- /dev/null +++ b/x11-misc/notification-daemon/notification-daemon-3.14.0.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +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 +}