From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 0EDBE13829C for ; Sat, 4 Jun 2016 20:23:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3EBA914218; Sat, 4 Jun 2016 20:23:31 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D5AB514218 for ; Sat, 4 Jun 2016 20:23:30 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 744E5340B6A for ; Sat, 4 Jun 2016 20:23:29 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3C854972 for ; Sat, 4 Jun 2016 20:23:25 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1465071801.bf5e3c4ff8f2e489197c03d0f57e3003489bad18.polynomial-c@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.0-r1.ebuild sys-fs/dosfstools/dosfstools-4.0.ebuild X-VCS-Directories: sys-fs/dosfstools/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: bf5e3c4ff8f2e489197c03d0f57e3003489bad18 X-VCS-Branch: master Date: Sat, 4 Jun 2016 20:23:25 +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-Archives-Salt: c922bd60-d054-433c-9b50-64515b423243 X-Archives-Hash: d525d332bbb90ad6bfa07bbf193ed2ea commit: bf5e3c4ff8f2e489197c03d0f57e3003489bad18 Author: Mike Gilbert gentoo org> AuthorDate: Sat Jun 4 19:12:32 2016 +0000 Commit: Lars Wendler gentoo org> CommitDate: Sat Jun 4 20:23:21 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf5e3c4f sys-fs/dosfstools: always install fsck.vfat and mkfs.vfat Bug: https://bugs.gentoo.org/584980 .../{dosfstools-4.0.ebuild => dosfstools-4.0-r1.ebuild} | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/sys-fs/dosfstools/dosfstools-4.0.ebuild b/sys-fs/dosfstools/dosfstools-4.0-r1.ebuild similarity index 83% rename from sys-fs/dosfstools/dosfstools-4.0.ebuild rename to sys-fs/dosfstools/dosfstools-4.0-r1.ebuild index 660994e..fce6ebf 100644 --- a/sys-fs/dosfstools/dosfstools-4.0.ebuild +++ b/sys-fs/dosfstools/dosfstools-4.0-r1.ebuild @@ -37,3 +37,12 @@ src_configure() { $(use_enable compat compat-symlinks) \ $(use_with udev) } + +src_install() { + default + if ! use compat; then + # 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 +}