From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1D5D4158086 for ; Sun, 7 Nov 2021 00:29:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4E5B12BC0AB; Sun, 7 Nov 2021 00:29:22 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 368822BC0AB for ; Sun, 7 Nov 2021 00:29:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3CB4C343145 for ; Sun, 7 Nov 2021 00:29:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C0D3B175 for ; Sun, 7 Nov 2021 00:29:19 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1636244926.50541bc7785a3b7205373b977f1f0863d4ee31f6.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/ntfs3g/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/ntfs3g/ntfs3g-2021.8.22-r1.ebuild sys-fs/ntfs3g/ntfs3g-2021.8.22-r2.ebuild X-VCS-Directories: sys-fs/ntfs3g/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: 50541bc7785a3b7205373b977f1f0863d4ee31f6 X-VCS-Branch: master Date: Sun, 7 Nov 2021 00:29:19 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: a7ac2014-8869-4541-86b1-554d50aed686 X-Archives-Hash: c6884a2af6444dd68fcc424df0b4bddd commit: 50541bc7785a3b7205373b977f1f0863d4ee31f6 Author: Mike Gilbert gentoo org> AuthorDate: Sun Nov 7 00:11:43 2021 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Sun Nov 7 00:28:46 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50541bc7 sys-fs/ntfs3g: actually make USE=suid do something Bug: https://bugs.gentoo.org/822024 Signed-off-by: Mike Gilbert gentoo.org> .../{ntfs3g-2021.8.22-r1.ebuild => ntfs3g-2021.8.22-r2.ebuild} | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/sys-fs/ntfs3g/ntfs3g-2021.8.22-r1.ebuild b/sys-fs/ntfs3g/ntfs3g-2021.8.22-r2.ebuild similarity index 94% rename from sys-fs/ntfs3g/ntfs3g-2021.8.22-r1.ebuild rename to sys-fs/ntfs3g/ntfs3g-2021.8.22-r2.ebuild index 32829cd24d9..fa4b403451e 100644 --- a/sys-fs/ntfs3g/ntfs3g-2021.8.22-r1.ebuild +++ b/sys-fs/ntfs3g/ntfs3g-2021.8.22-r2.ebuild @@ -75,7 +75,12 @@ src_configure() { src_install() { default - use mount-ntfs && dosym mount.ntfs-3g /sbin/mount.ntfs + 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 find "${ED}" -name '*.la' -type f -delete || die # https://bugs.gentoo.org/760780 keepdir "/usr/$(get_libdir)/ntfs-3g"