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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A03401382C5 for ; Thu, 13 May 2021 13:55:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 95B59E08EB; Thu, 13 May 2021 13:55:43 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 703AFE08E0 for ; Thu, 13 May 2021 13:55:43 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4442C340DE9 for ; Thu, 13 May 2021 13:55:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E1518797 for ; Thu, 13 May 2021 13:55:37 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1620914095.e88b2fecf689ff72077a6625224d8653470041f1.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/dosfstools/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/dosfstools/dosfstools-4.2.ebuild X-VCS-Directories: sys-fs/dosfstools/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: e88b2fecf689ff72077a6625224d8653470041f1 X-VCS-Branch: master Date: Thu, 13 May 2021 13:55:37 +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: 56da58b6-56d8-4682-a63f-65dbb2ffe608 X-Archives-Hash: 505673f1e002d37a17af0d34e44ebfa6 commit: e88b2fecf689ff72077a6625224d8653470041f1 Author: Sam James gentoo org> AuthorDate: Thu May 13 13:54:55 2021 +0000 Commit: David Seifert gentoo org> CommitDate: Thu May 13 13:54:55 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e88b2fec sys-fs/dosfstools: drop unused flag-o-matic, toolchain-funcs inherits Signed-off-by: Sam James gentoo.org> Signed-off-by: David Seifert gentoo.org> sys-fs/dosfstools/dosfstools-4.2.ebuild | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/sys-fs/dosfstools/dosfstools-4.2.ebuild b/sys-fs/dosfstools/dosfstools-4.2.ebuild index 6e824b3a73b..bfc1083c8d3 100644 --- a/sys-fs/dosfstools/dosfstools-4.2.ebuild +++ b/sys-fs/dosfstools/dosfstools-4.2.ebuild @@ -3,8 +3,6 @@ EAPI=7 -inherit toolchain-funcs flag-o-matic - DESCRIPTION="DOS filesystem tools - provides mkdosfs, mkfs.msdos, mkfs.vfat" HOMEPAGE="https://github.com/dosfstools/dosfstools" SRC_URI="https://github.com/dosfstools/dosfstools/releases/download/v${PV}/${P}.tar.gz" @@ -16,8 +14,8 @@ IUSE="compat +iconv test" RESTRICT="!test? ( test )" BDEPEND=" - test? ( app-editors/vim-core ) iconv? ( virtual/libiconv ) + test? ( app-editors/vim-core ) " src_configure() { @@ -25,13 +23,16 @@ src_configure() { $(use_enable compat compat-symlinks) $(use_with iconv) ) + econf "${myeconfargs[@]}" } src_install() { default + if ! use compat ; then - # Keep fsck -t vfat and mkfs -t vfat working, bug 584980. + # Keep fsck -t vfat and mkfs -t vfat working + # bug #584980 dosym fsck.fat /usr/sbin/fsck.vfat dosym mkfs.fat /usr/sbin/mkfs.vfat fi