diff options
author | 2024-04-08 21:40:31 -0400 | |
---|---|---|
committer | 2024-04-09 15:43:18 +0100 | |
commit | 6ab5d8b87dab45ce9a8bc6986b5bee3dc438470b (patch) | |
tree | 12cfcd2ed3884efab2e4aab162576f50b7b6cdfc /sys-fs | |
parent | sys-fs/f2fs-tools: drop old (diff) | |
download | gentoo-6ab5d8b87dab45ce9a8bc6986b5bee3dc438470b.tar.gz gentoo-6ab5d8b87dab45ce9a8bc6986b5bee3dc438470b.tar.bz2 gentoo-6ab5d8b87dab45ce9a8bc6986b5bee3dc438470b.zip |
sys-fs/f2fs-tools: sync live
Followup to commit 6b6835d6628c39fa13ae6183ee9a0fb69ca77a1f.
Signed-off-by: Eli Schwartz <eschwartz93@gmail.com>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'sys-fs')
-rw-r--r-- | sys-fs/f2fs-tools/f2fs-tools-9999.ebuild | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/sys-fs/f2fs-tools/f2fs-tools-9999.ebuild b/sys-fs/f2fs-tools/f2fs-tools-9999.ebuild index 3224cc7ec9ff..456f9f133dfb 100644 --- a/sys-fs/f2fs-tools/f2fs-tools-9999.ebuild +++ b/sys-fs/f2fs-tools/f2fs-tools-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -18,11 +18,11 @@ fi LICENSE="GPL-2" SLOT="0/10" -IUSE="selinux" +IUSE="lz4 lzo selinux" RDEPEND=" - app-arch/lz4:= - dev-libs/lzo:2 + lz4? ( app-arch/lz4:= ) + lzo? ( dev-libs/lzo:2 ) sys-apps/util-linux selinux? ( sys-libs/libselinux ) elibc_musl? ( sys-libs/queue-standalone ) @@ -38,6 +38,8 @@ src_configure() { local myconf=( # This is required to install to /sbin, bug #481110 --bindir="${EPREFIX}"/sbin + $(use_with lz4) + $(use_with lzo lzo2) $(use_with selinux) ) |