sys-fs/ntfs3g: drop 2022.10.3

Bug: https://bugs.gentoo.org/973067
Signed-off-by: Brett A C Sheffield <bacs@librecast.net>
Part-of: https://codeberg.org/gentoo/gentoo/pulls/1270
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Brett A C Sheffield
2026-06-27 18:53:30 +00:00
committed by Sam James
parent 00ea5e4f9e
commit fd01792c74
2 changed files with 0 additions and 85 deletions

View File

@@ -1,2 +1 @@
DIST ntfs-3g_ntfsprogs-2022.10.3.tgz 1324320 BLAKE2B 36a64af0c050bb42af69e14834883324d6201f70d5e45c175e0703980c045b038bdbfca0375edd42db3a3827240f63cf73c9f17a51805799129257b95fef7676 SHA512 891589483954423b19bef6e8a174fb4311ad92b6397a0db80f77c72b746bf18c2fa12457a571947f92755637a6bc784188920d4f017ae12a420819ab0d74af59
DIST ntfs-3g_ntfsprogs-2026.2.25.tgz 1337883 BLAKE2B e7f7a47ef8178e26dae04a1b8943756629f562d6e98a3500402958b952d21f9f9306070eccf9940b4070454a60883c521f55932f4bccaebe723dafe11d189d8f SHA512 c4f537ea45a6ebb21ddf21fbf4d71ab336fdf9cb1d55a062a6376f90480cf6992b11ad93b4b2bbd8a96e26f97d7c15948d4f6cc71d713e9deb78e3a6cad7438c

View File

@@ -1,84 +0,0 @@
# Copyright 2006-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit toolchain-funcs
MY_P="ntfs-3g_ntfsprogs-${PV}"
DESCRIPTION="Open source read-write NTFS driver that runs under FUSE"
HOMEPAGE="https://github.com/tuxera/ntfs-3g"
SRC_URI="https://download.tuxera.com/opensource/${MY_P}.tgz"
LICENSE="GPL-2"
# The subslot matches the SONAME major #.
SLOT="0/89"
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv ~sparc x86"
IUSE="acl debug +fuse +mount-ntfs ntfsdecrypt +ntfsprogs static-libs suid xattr"
RDEPEND="
sys-apps/util-linux:0=
ntfsdecrypt? (
>=dev-libs/libgcrypt-1.2.2:0
>=net-libs/gnutls-1.4.4
)
"
DEPEND="${RDEPEND}
sys-apps/attr
"
BDEPEND="
virtual/pkgconfig
"
S="${WORKDIR}/${MY_P}"
src_configure() {
tc-ld-disable-gold
local myconf=(
# passing --exec-prefix is needed as the build system is trying to be clever
# and install itself into / instead of /usr in order to be compatible with
# separate-/usr setups (which we don't support without an initrd).
--exec-prefix="${EPREFIX}"/usr
--disable-ldconfig
--enable-extras
$(use_enable debug)
$(use_enable fuse ntfs-3g)
$(use_enable acl posix-acls)
$(use_enable xattr xattr-mappings)
$(use_enable ntfsdecrypt crypto)
$(use_enable ntfsprogs)
$(use_enable static-libs static)
--with-uuid
# disable hd library until we have the right library in the tree and
# don't links to hwinfo one causing issues like bug #602360
--without-hd
# Needed for suid
# https://bugs.gentoo.org/822024
--with-fuse=internal
)
# bash for bug #921018 - should be fixed in next release though
# see https://github.com/tuxera/ntfs-3g/pull/58
CONFIG_SHELL="${BROOT}"/bin/bash econf "${myconf[@]}"
}
src_install() {
default
if use fuse; then
# Plugins directory
keepdir "/usr/$(get_libdir)/ntfs-3g"
if use suid; then
fperms u+s /usr/bin/ntfs-3g
fi
if use mount-ntfs; then
dosym mount.ntfs-3g /sbin/mount.ntfs
fi
fi
find "${ED}" -name '*.la' -type f -delete || die
}