diff options
Diffstat (limited to 'sys-fs/exfatprogs/exfatprogs-9999.ebuild')
-rw-r--r-- | sys-fs/exfatprogs/exfatprogs-9999.ebuild | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys-fs/exfatprogs/exfatprogs-9999.ebuild b/sys-fs/exfatprogs/exfatprogs-9999.ebuild index e9fc0d2e9745..6d2c947cbb32 100644 --- a/sys-fs/exfatprogs/exfatprogs-9999.ebuild +++ b/sys-fs/exfatprogs/exfatprogs-9999.ebuild @@ -1,11 +1,12 @@ # Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 DESCRIPTION="Userspace utilities for new exfat filesystem (kernel 5.7+)" HOMEPAGE="https://github.com/exfatprogs/exfatprogs" -if [[ "${PV}" == *9999 ]] ; then + +if [[ ${PV} == *9999 ]] ; then inherit autotools git-r3 EGIT_REPO_URI="https://github.com/exfatprogs/exfatprogs.git" else @@ -15,11 +16,10 @@ fi LICENSE="GPL-2" SLOT="0" -IUSE="" - RDEPEND="!sys-fs/exfat-utils" src_prepare() { default - [[ "${PV}" == *9999 ]] && eautoreconf + + [[ ${PV} == *9999 ]] && eautoreconf } |