Gentoo Archives: gentoo-commits

From: Kristian Fiskerstrand <k_f@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: gnome-extra/nemo/
Date: Thu, 02 Aug 2018 13:11:24
Message-Id: 1533215266.4714f7f11c5cbe2338213927773e4937a0d2b69c.k_f@gentoo
1 commit: 4714f7f11c5cbe2338213927773e4937a0d2b69c
2 Author: Kristian Fiskerstrand <k_f <AT> gentoo <DOT> org>
3 AuthorDate: Thu Aug 2 13:02:01 2018 +0000
4 Commit: Kristian Fiskerstrand <k_f <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 2 13:07:46 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4714f7f1
7
8 gnome-extra/nemo: Make selinux optional
9
10 Closes: https://bugs.gentoo.org/662550
11 Package-Manager: Portage-2.3.40, Repoman-2.3.9
12
13 gnome-extra/nemo/{nemo-3.8.5.ebuild => nemo-3.8.5-r1.ebuild} | 9 +++++----
14 1 file changed, 5 insertions(+), 4 deletions(-)
15
16 diff --git a/gnome-extra/nemo/nemo-3.8.5.ebuild b/gnome-extra/nemo/nemo-3.8.5-r1.ebuild
17 similarity index 89%
18 rename from gnome-extra/nemo/nemo-3.8.5.ebuild
19 rename to gnome-extra/nemo/nemo-3.8.5-r1.ebuild
20 index 886c1c1d8e2..d22c0fb12ac 100644
21 --- a/gnome-extra/nemo/nemo-3.8.5.ebuild
22 +++ b/gnome-extra/nemo/nemo-3.8.5-r1.ebuild
23 @@ -14,7 +14,7 @@ SRC_URI="https://github.com/linuxmint/nemo/archive/${PV}.tar.gz -> ${P}.tar.gz"
24 LICENSE="GPL-2+ LGPL-2+ FDL-1.1"
25 SLOT="0"
26 KEYWORDS="~amd64 ~x86"
27 -IUSE="exif +introspection +nls packagekit tracker xmp"
28 +IUSE="exif +introspection +nls packagekit selinux tracker xmp"
29 RESTRICT=test
30
31 COMMON_DEPEND="
32 @@ -36,7 +36,7 @@ COMMON_DEPEND="
33 introspection? ( >=dev-libs/gobject-introspection-0.6.4:= )
34 tracker? ( >=app-misc/tracker-0.12:= )
35 xmp? ( >=media-libs/exempi-2.2.0:= )
36 - sys-libs/libselinux
37 + selinux? ( sys-libs/libselinux )
38 "
39 RDEPEND="${COMMON_DEPEND}
40 x11-themes/adwaita-icon-theme
41 @@ -72,8 +72,9 @@ src_prepare() {
42 src_configure() {
43 meson_src_configure \
44 -Dexif=$(usex exif true false) \
45 - -Denable-tracker=$(usex tracker true false) \
46 - -Dxmp=$(usex xmp true false)
47 + -Dtracker=$(usex tracker true false) \
48 + -Dxmp=$(usex xmp true false) \
49 + -Dselinux=$(usex selinux true false)
50 }
51
52 src_install() {