Gentoo Archives: gentoo-commits

From: Mike Gilbert <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/ntfs3g/
Date: Fri, 27 May 2022 21:22:03
Message-Id: 1653686510.f48a7b91b0f71dd394eae044f60844aa58da9a95.floppym@gentoo
1 commit: f48a7b91b0f71dd394eae044f60844aa58da9a95
2 Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 27 21:21:50 2022 +0000
4 Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
5 CommitDate: Fri May 27 21:21:50 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f48a7b91
7
8 sys-fs/ntfs3g: drop 2021.8.22-r4
9
10 Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
11
12 sys-fs/ntfs3g/Manifest | 1 -
13 sys-fs/ntfs3g/ntfs3g-2021.8.22-r4.ebuild | 83 --------------------------------
14 2 files changed, 84 deletions(-)
15
16 diff --git a/sys-fs/ntfs3g/Manifest b/sys-fs/ntfs3g/Manifest
17 index 0934b57fac7f..1cd869943436 100644
18 --- a/sys-fs/ntfs3g/Manifest
19 +++ b/sys-fs/ntfs3g/Manifest
20 @@ -1,2 +1 @@
21 -DIST ntfs-3g_ntfsprogs-2021.8.22.tgz 1317499 BLAKE2B 403036c68a37ba83873b5faadbb2088deb25e0ff31deb1958d4f869a198d830caa44edea879492a7894f5e7a5ad6205a6fda57bf8de722ce49bf3187239ad993 SHA512 e0544df78a6c352999e1206d7b5d71c56e39396b7a0936a261d728c2ac9d61c6b95ef297f8529ac2a5146f31c1c9e43066d3e281064d4f5d781a04eba51f536d
22 DIST ntfs-3g_ntfsprogs-2022.5.17.tgz 1318476 BLAKE2B 0f3d5b3ca6186886b1a4f1fc59242a1f4ccdc842cbe53b0869f707c1dbebdd58058d40b265dae663b71a2a611f7ce5392c63afa3053dc075155759c10499d529 SHA512 25e6d3412958576b0cd614f5d93201c0d7e8bbee78fbaf956718a3825c1435b3f0c3631ea1cc60b5b1be6e9ae7d58c0c03b0bebb69edee3bf181a966734336df
23
24 diff --git a/sys-fs/ntfs3g/ntfs3g-2021.8.22-r4.ebuild b/sys-fs/ntfs3g/ntfs3g-2021.8.22-r4.ebuild
25 deleted file mode 100644
26 index ed009c764089..000000000000
27 --- a/sys-fs/ntfs3g/ntfs3g-2021.8.22-r4.ebuild
28 +++ /dev/null
29 @@ -1,83 +0,0 @@
30 -# Copyright 2006-2022 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -inherit toolchain-funcs
36 -
37 -MY_P="ntfs-3g_ntfsprogs-${PV}"
38 -
39 -DESCRIPTION="Open source read-write NTFS driver that runs under FUSE"
40 -HOMEPAGE="http://www.tuxera.com/community/ntfs-3g-download/"
41 -HOMEPAGE="https://jp-andre.pagesperso-orange.fr/advanced-ntfs-3g.html"
42 -SRC_URI="http://tuxera.com/opensource/${MY_P}.tgz"
43 -
44 -LICENSE="GPL-2"
45 -# The subslot matches the SONAME major #.
46 -SLOT="0/89"
47 -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux"
48 -IUSE="acl debug +fuse +mount-ntfs ntfsdecrypt +ntfsprogs static-libs suid xattr"
49 -
50 -RDEPEND="
51 - sys-apps/util-linux:0=
52 - ntfsdecrypt? (
53 - >=dev-libs/libgcrypt-1.2.2:0
54 - >=net-libs/gnutls-1.4.4
55 - )
56 -"
57 -DEPEND="${RDEPEND}
58 - sys-apps/attr
59 -"
60 -BDEPEND="
61 - virtual/pkgconfig
62 -"
63 -
64 -S="${WORKDIR}/${MY_P}"
65 -
66 -src_configure() {
67 - tc-ld-disable-gold
68 -
69 - local myconf=(
70 - # passing --exec-prefix is needed as the build system is trying to be clever
71 - # and install itself into / instead of /usr in order to be compatible with
72 - # separate-/usr setups (which we don't support without an initrd).
73 - --exec-prefix="${EPREFIX}"/usr
74 -
75 - --disable-ldconfig
76 - --enable-extras
77 - $(use_enable debug)
78 - $(use_enable fuse ntfs-3g)
79 - $(use_enable acl posix-acls)
80 - $(use_enable xattr xattr-mappings)
81 - $(use_enable ntfsdecrypt crypto)
82 - $(use_enable ntfsprogs)
83 - $(use_enable static-libs static)
84 -
85 - --with-uuid
86 -
87 - # disable hd library until we have the right library in the tree and
88 - # don't links to hwinfo one causing issues like bug #602360
89 - --without-hd
90 -
91 - # Needed for suid
92 - # https://bugs.gentoo.org/822024
93 - --with-fuse=internal
94 - )
95 -
96 - econf "${myconf[@]}"
97 -}
98 -
99 -src_install() {
100 - default
101 - if use fuse; then
102 - # Plugins directory
103 - keepdir "/usr/$(get_libdir)/ntfs-3g"
104 - if use suid; then
105 - fperms u+s /usr/bin/ntfs-3g
106 - fi
107 - if use mount-ntfs; then
108 - dosym mount.ntfs-3g /sbin/mount.ntfs
109 - fi
110 - fi
111 - find "${ED}" -name '*.la' -type f -delete || die
112 -}