sys-fs/ntfs2btrfs - 20260810 (guru)

Search

Install

Install this version:

emerge -a =sys-fs/ntfs2btrfs-20260810

If this version is masked, you can unmask it using the autounmask tool or standard emerge options:

autounmask =sys-fs/ntfs2btrfs-20260810

Or alternatively:

emerge --autounmask-write -a =sys-fs/ntfs2btrfs-20260810

Package Information

Description:
Conversion tool from NTFS to Btrfs
Homepage:
https://github.com/maharmstone/ntfs2btrfs
License:
GPL-2

Ebuild Details

Version EAPI Keywords Slot
20260810 8 ~amd64 ~arm ~arm64 ~ppc64 ~x86 0
View Raw Ebuild
# Copyright 2023-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

inherit cmake

DESCRIPTION="Conversion tool from NTFS to Btrfs"
HOMEPAGE="https://github.com/maharmstone/ntfs2btrfs"

if [[ ${PV} = *9999 ]]; then
	inherit git-r3
	EGIT_REPO_URI="https://github.com/maharmstone/ntfs2btrfs.git"
else
	SRC_URI="https://codeload.github.com/maharmstone/ntfs2btrfs/tar.gz/refs/tags/${PV} -> ${P}.tar.gz"
	KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
fi

LICENSE="GPL-2"
SLOT="0"
IUSE="+zlib +lzo +zstd"

DEPEND="zlib? ( virtual/zlib:= )
	lzo? ( dev-libs/lzo )
	zstd? ( app-arch/zstd )"
RDEPEND="${DEPEND}"

src_prepare() {
	cmake_src_prepare
}

src_configure() {
	local mycmakeargs=(
		-DWITH_ZLIB=$(usex zlib)
		-DWITH_LZO=$(usex lzo)
		-DWITH_ZSTD=$(usex zstd)
	)

	cmake_src_configure
}

USE Flags

Manage flags for this package: euse -i <flag> -p sys-fs/ntfs2btrfs | euse -E <flag> -p sys-fs/ntfs2btrfs | euse -D <flag> -p sys-fs/ntfs2btrfs

Global/Standard Flags

zlib
Default: Enabled (+)
lzo
Default: Enabled (+)
zstd
Default: Enabled (+)

Inherited Eclasses

Dependencies

DEPEND

zlib? ( virtual/zlib:= )
	lzo? ( dev-libs/lzo )
	zstd? ( app-arch/zstd )

RDEPEND

zlib? ( virtual/zlib:= )
	lzo? ( dev-libs/lzo )
	zstd? ( app-arch/zstd )

Manifest for 20260810

Type File Size Source URLs
DIST ntfs2btrfs-20260810.tar.gz 98932 bytes https://codeload.github.com/maharmstone/ntfs2btrfs/tar.gz/refs/tags/20260810