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 B4CB01382C5 for ; Fri, 11 May 2018 06:12:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A6B7DE0997; Fri, 11 May 2018 06:12:41 +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 81C23E0997 for ; Fri, 11 May 2018 06:12:41 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 63F1C335C7A for ; Fri, 11 May 2018 06:12:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 900DD2AA for ; Fri, 11 May 2018 06:12:38 +0000 (UTC) From: "Sobhan Mohammadpour" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sobhan Mohammadpour" Message-ID: <1526019152.d76e1dd947b02b31e4370a7557904007f9eeb082.sobhan@gentoo> Subject: [gentoo-commits] proj/gnome:master commit in: gnome-extra/gnome-system-monitor/ X-VCS-Repository: proj/gnome X-VCS-Files: gnome-extra/gnome-system-monitor/gnome-system-monitor-3.26.0.ebuild X-VCS-Directories: gnome-extra/gnome-system-monitor/ X-VCS-Committer: sobhan X-VCS-Committer-Name: Sobhan Mohammadpour X-VCS-Revision: d76e1dd947b02b31e4370a7557904007f9eeb082 X-VCS-Branch: master Date: Fri, 11 May 2018 06:12:38 +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: 2b1a1a2f-3f2b-4b51-8366-34cd559a167d X-Archives-Hash: 74c9f27881bc5281acca439c4e2266ab commit: d76e1dd947b02b31e4370a7557904007f9eeb082 Author: Sobhan Mohammadpour gentoo org> AuthorDate: Fri May 11 06:12:32 2018 +0000 Commit: Sobhan Mohammadpour gentoo org> CommitDate: Fri May 11 06:12:32 2018 +0000 URL: https://gitweb.gentoo.org/proj/gnome.git/commit/?id=d76e1dd9 gnome-extra/gnome-system-monitor: bump Package-Manager: Portage-2.3.36, Repoman-2.3.9 Manifest-Sign-Key: 0x7DF238CF0AA182E1 .../gnome-system-monitor-3.26.0.ebuild | 39 ++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/gnome-extra/gnome-system-monitor/gnome-system-monitor-3.26.0.ebuild b/gnome-extra/gnome-system-monitor/gnome-system-monitor-3.26.0.ebuild new file mode 100644 index 00000000..d4296000 --- /dev/null +++ b/gnome-extra/gnome-system-monitor/gnome-system-monitor-3.26.0.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit gnome2 + +DESCRIPTION="The Gnome System Monitor" +HOMEPAGE="https://help.gnome.org/users/gnome-system-monitor/" + +LICENSE="GPL-2" +SLOT="0" +IUSE="systemd X" +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" + +RDEPEND=" + >=dev-libs/glib-2.37.3:2 + >=gnome-base/libgtop-2.37.2:2= + >=x11-libs/gtk+-3.22:3[X(+)] + >=dev-cpp/gtkmm-3.3.18:3.0 + >=dev-cpp/glibmm-2.46:2 + >=dev-libs/libxml2-2.0:2 + >=gnome-base/librsvg-2.35:2 + systemd? ( >=sys-apps/systemd-44:0= ) + X? ( >=x11-libs/libwnck-2.91.0:3 ) +" +# eautoreconf requires gnome-base/gnome-common +DEPEND="${RDEPEND} + app-text/yelp-tools + >=dev-util/intltool-0.41.0 + virtual/pkgconfig +" + +src_configure() { + # XXX: appdata is deprecated by appstream-glib, upstream must upgrade + gnome2_src_configure \ + $(use_enable systemd) \ + $(use_enable X broken-wnck) \ + APPDATA_VALIDATE="$(type -P true)" +}