From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1040050-garchives=archives.gentoo.org@lists.gentoo.org> 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 A4E58138334 for <garchives@archives.gentoo.org>; Thu, 2 Aug 2018 13:11:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 67A6DE0843; Thu, 2 Aug 2018 13:11:23 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 33C0CE0843 for <gentoo-commits@lists.gentoo.org>; Thu, 2 Aug 2018 13:11:22 +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 19F66335CCC for <gentoo-commits@lists.gentoo.org>; Thu, 2 Aug 2018 13:11:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 21873366 for <gentoo-commits@lists.gentoo.org>; Thu, 2 Aug 2018 13:11:19 +0000 (UTC) From: "Kristian Fiskerstrand" <k_f@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Kristian Fiskerstrand" <k_f@gentoo.org> Message-ID: <1533215266.4714f7f11c5cbe2338213927773e4937a0d2b69c.k_f@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: gnome-extra/nemo/ X-VCS-Repository: repo/gentoo X-VCS-Files: gnome-extra/nemo/nemo-3.8.5-r1.ebuild gnome-extra/nemo/nemo-3.8.5.ebuild X-VCS-Directories: gnome-extra/nemo/ X-VCS-Committer: k_f X-VCS-Committer-Name: Kristian Fiskerstrand X-VCS-Revision: 4714f7f11c5cbe2338213927773e4937a0d2b69c X-VCS-Branch: master Date: Thu, 2 Aug 2018 13:11:19 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 7d18d07a-5564-46bf-be7e-7f3f36ebf1ce X-Archives-Hash: df898cf5563b34e8c69abef2612cd53d commit: 4714f7f11c5cbe2338213927773e4937a0d2b69c Author: Kristian Fiskerstrand <k_f <AT> gentoo <DOT> org> AuthorDate: Thu Aug 2 13:02:01 2018 +0000 Commit: Kristian Fiskerstrand <k_f <AT> gentoo <DOT> org> CommitDate: Thu Aug 2 13:07:46 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4714f7f1 gnome-extra/nemo: Make selinux optional Closes: https://bugs.gentoo.org/662550 Package-Manager: Portage-2.3.40, Repoman-2.3.9 gnome-extra/nemo/{nemo-3.8.5.ebuild => nemo-3.8.5-r1.ebuild} | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/gnome-extra/nemo/nemo-3.8.5.ebuild b/gnome-extra/nemo/nemo-3.8.5-r1.ebuild similarity index 89% rename from gnome-extra/nemo/nemo-3.8.5.ebuild rename to gnome-extra/nemo/nemo-3.8.5-r1.ebuild index 886c1c1d8e2..d22c0fb12ac 100644 --- a/gnome-extra/nemo/nemo-3.8.5.ebuild +++ b/gnome-extra/nemo/nemo-3.8.5-r1.ebuild @@ -14,7 +14,7 @@ SRC_URI="https://github.com/linuxmint/nemo/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-2+ LGPL-2+ FDL-1.1" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="exif +introspection +nls packagekit tracker xmp" +IUSE="exif +introspection +nls packagekit selinux tracker xmp" RESTRICT=test COMMON_DEPEND=" @@ -36,7 +36,7 @@ COMMON_DEPEND=" introspection? ( >=dev-libs/gobject-introspection-0.6.4:= ) tracker? ( >=app-misc/tracker-0.12:= ) xmp? ( >=media-libs/exempi-2.2.0:= ) - sys-libs/libselinux + selinux? ( sys-libs/libselinux ) " RDEPEND="${COMMON_DEPEND} x11-themes/adwaita-icon-theme @@ -72,8 +72,9 @@ src_prepare() { src_configure() { meson_src_configure \ -Dexif=$(usex exif true false) \ - -Denable-tracker=$(usex tracker true false) \ - -Dxmp=$(usex xmp true false) + -Dtracker=$(usex tracker true false) \ + -Dxmp=$(usex xmp true false) \ + -Dselinux=$(usex selinux true false) } src_install() {