Diff ntfs3g-2022.10.3 with a ntfs3g-2026.2.25

/usr/portage/sys-fs/ntfs3g/ntfs3g-2026.2.25.ebuild 2026-04-24 12:17:44.280071926 +0300
1
# Copyright 2006-2025 Gentoo Authors
1
# Copyright 2006-2026 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=8
5 5

  
6
inherit toolchain-funcs
7

  
8 6
MY_P="ntfs-3g_ntfsprogs-${PV}"
9 7

  
10 8
DESCRIPTION="Open source read-write NTFS driver that runs under FUSE"
11 9
HOMEPAGE="https://github.com/tuxera/ntfs-3g"
12 10
SRC_URI="https://download.tuxera.com/opensource/${MY_P}.tgz"
13 11

  
12
S="${WORKDIR}/ntfs-3g-${PV}"
14 13
LICENSE="GPL-2"
15 14
# The subslot matches the SONAME major #.
16 15
SLOT="0/89"
17
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv ~sparc x86"
16
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86"
18 17
IUSE="acl debug +fuse +mount-ntfs ntfsdecrypt +ntfsprogs static-libs suid xattr"
19 18

  
20 19
RDEPEND="
......
31 30
	virtual/pkgconfig
32 31
"
33 32

  
34
S="${WORKDIR}/${MY_P}"
35

  
36 33
src_configure() {
37
	tc-ld-disable-gold
38

  
39 34
	local myconf=(
40 35
		# passing --exec-prefix is needed as the build system is trying to be clever
41 36
		# and install itself into / instead of /usr in order to be compatible with
......
63 58
		--with-fuse=internal
64 59
	)
65 60

  
66
	# bash for bug #921018 - should be fixed in next release though
67
	# see https://github.com/tuxera/ntfs-3g/pull/58
68
	CONFIG_SHELL="${BROOT}"/bin/bash econf "${myconf[@]}"
61
	econf "${myconf[@]}"
69 62
}
70 63

  
71 64
src_install() {
Thank you!