summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKristian Fiskerstrand <k_f@gentoo.org>2018-08-02 15:02:01 +0200
committerKristian Fiskerstrand <k_f@gentoo.org>2018-08-02 15:07:46 +0200
commit4714f7f11c5cbe2338213927773e4937a0d2b69c (patch)
treee850f466576c2ed80dec32fff894dcfb2a928d39
parentdev-python/fabric: bump to 2.2.2 (diff)
downloadgentoo-4714f7f1.tar.gz
gentoo-4714f7f1.tar.bz2
gentoo-4714f7f1.zip
gnome-extra/nemo: Make selinux optional
Closes: https://bugs.gentoo.org/662550 Package-Manager: Portage-2.3.40, Repoman-2.3.9
-rw-r--r--gnome-extra/nemo/nemo-3.8.5-r1.ebuild (renamed from gnome-extra/nemo/nemo-3.8.5.ebuild)9
1 files 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
index 886c1c1d8e2f..d22c0fb12ac9 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() {