From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2A614138334 for ; Sat, 22 Jun 2019 04:06:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0E7ABE093B; Sat, 22 Jun 2019 04:06:35 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 82655E094E for ; Sat, 22 Jun 2019 04:06:34 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D39D1346760 for ; Sat, 22 Jun 2019 04:06:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 84CC3449 for ; Sat, 22 Jun 2019 04:06:30 +0000 (UTC) From: "Göktürk Yüksek" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Göktürk Yüksek" Message-ID: <1561176326.0a32e5ac9d072ec0a3c84c4f0a7f05f85ffd3c51.gokturk@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/mate-notification-daemon/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-misc/mate-notification-daemon/mate-notification-daemon-1.22.0-r1.ebuild X-VCS-Directories: x11-misc/mate-notification-daemon/ X-VCS-Committer: gokturk X-VCS-Committer-Name: Göktürk Yüksek X-VCS-Revision: 0a32e5ac9d072ec0a3c84c4f0a7f05f85ffd3c51 X-VCS-Branch: master Date: Sat, 22 Jun 2019 04:06:30 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 01e6247e-44e1-4596-9f5e-b4f7d534d2d2 X-Archives-Hash: 74ec6f8ebb65bb5921a911af05595099 commit: 0a32e5ac9d072ec0a3c84c4f0a7f05f85ffd3c51 Author: NP-Hardass gentoo org> AuthorDate: Fri Jun 21 16:19:38 2019 +0000 Commit: Göktürk Yüksek gentoo org> CommitDate: Sat Jun 22 04:05:26 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a32e5ac x11-misc/mate-notification-daemon: Fix deps Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: NP-Hardass gentoo.org> Signed-off-by: Göktürk Yüksek gentoo.org> .../mate-notification-daemon-1.22.0-r1.ebuild | 54 ++++++++++++++++++++++ 1 file changed, 54 insertions(+) diff --git a/x11-misc/mate-notification-daemon/mate-notification-daemon-1.22.0-r1.ebuild b/x11-misc/mate-notification-daemon/mate-notification-daemon-1.22.0-r1.ebuild new file mode 100644 index 00000000000..b7b3b1ddb73 --- /dev/null +++ b/x11-misc/mate-notification-daemon/mate-notification-daemon-1.22.0-r1.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +MATE_LA_PUNT="yes" + +inherit mate + +if [[ ${PV} != 9999 ]]; then + KEYWORDS="~amd64 ~arm ~arm64 ~x86" +fi + +DESCRIPTION="MATE Notification daemon" +LICENSE="GPL-2" +SLOT="0" + +IUSE="" + +COMMON_DEPEND="dev-libs/atk + >=dev-libs/glib-2.50:2 + >=sys-apps/dbus-1 + x11-libs/cairo + >=x11-libs/gdk-pixbuf-2.22:2 + >=x11-libs/libnotify-0.7 + x11-libs/libX11 + virtual/libintl + >=x11-libs/gtk+-3.22:3 + >=x11-libs/libwnck-3:3 + >=media-libs/libcanberra-0.4:0[gtk3] + !x11-misc/notify-osd + !x11-misc/qtnotifydaemon + !x11-misc/notification-daemon" + +RDEPEND="${COMMON_DEPEND}" + +DEPEND="${COMMON_DEPEND} + app-arch/xz-utils + dev-util/gdbus-codegen + >=dev-util/intltool-0.50.1 + sys-devel/gettext:* + >=sys-devel/libtool-2.2.6:2 + virtual/pkgconfig:*" + +src_configure() { + mate_src_configure +} + +src_install() { + mate_src_install + + insinto /usr/share/dbus-1/services + doins "${FILESDIR}/org.freedesktop.Notifications.service" +}