diff options
author | Michał Górny <mgorny@gentoo.org> | 2023-02-28 17:54:11 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2023-02-28 17:54:28 +0100 |
commit | 6d7bd083f223ad321f6ba35184e6e45e5e36ffcc (patch) | |
tree | 11668424487f2fb5ff3fa251e3ff7dc2cb0dab0c /sys-block | |
parent | dev-python/jupyter_console: Remove old (diff) | |
download | gentoo-6d7bd083f223ad321f6ba35184e6e45e5e36ffcc.tar.gz gentoo-6d7bd083f223ad321f6ba35184e6e45e5e36ffcc.tar.bz2 gentoo-6d7bd083f223ad321f6ba35184e6e45e5e36ffcc.zip |
sys-block/parted: eautoconf to fix implicit func decls in configure
Bug: https://bugs.gentoo.org/898434
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'sys-block')
-rw-r--r-- | sys-block/parted/parted-3.5.ebuild | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/sys-block/parted/parted-3.5.ebuild b/sys-block/parted/parted-3.5.ebuild index 73ef2c77cd67..1c430e303e73 100644 --- a/sys-block/parted/parted-3.5.ebuild +++ b/sys-block/parted/parted-3.5.ebuild @@ -1,15 +1,18 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 VERIFY_SIG_OPENPGP_KEY_PATH="${BROOT}"/usr/share/openpgp-keys/bcl.asc -inherit verify-sig + +inherit autotools verify-sig DESCRIPTION="Create, destroy, resize, check, copy partitions and file systems" HOMEPAGE="https://www.gnu.org/software/parted/" -SRC_URI="mirror://gnu/${PN}/${P}.tar.xz - verify-sig? ( mirror://gnu/${PN}/${P}.tar.xz.sig )" +SRC_URI=" + mirror://gnu/${PN}/${P}.tar.xz + verify-sig? ( mirror://gnu/${PN}/${P}.tar.xz.sig ) +" LICENSE="GPL-3+" SLOT="0" @@ -46,6 +49,7 @@ PATCHES=( src_prepare() { default + eautoconf touch doc/pt_BR/Makefile.in || die } |