diff options
author | Sam James <sam@gentoo.org> | 2021-08-28 03:42:59 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-08-28 03:44:30 +0100 |
commit | 662e98dacb0da927fec0f9e66961c73cf658988b (patch) | |
tree | cc0a32ee15c65559a294913234e6836486e3f1db /sys-fs/fuse/fuse-2.9.9-r1.ebuild | |
parent | media-libs/libvpx: add missing dev-lang/perl BDEPEND (diff) | |
download | gentoo-662e98dacb0da927fec0f9e66961c73cf658988b.tar.gz gentoo-662e98dacb0da927fec0f9e66961c73cf658988b.tar.bz2 gentoo-662e98dacb0da927fec0f9e66961c73cf658988b.zip |
sys-fs/fuse: add iconv/gettext macro to avoid dependency in :2
Closes: https://bugs.gentoo.org/809920
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'sys-fs/fuse/fuse-2.9.9-r1.ebuild')
-rw-r--r-- | sys-fs/fuse/fuse-2.9.9-r1.ebuild | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sys-fs/fuse/fuse-2.9.9-r1.ebuild b/sys-fs/fuse/fuse-2.9.9-r1.ebuild index d7a2b42e6113..c8d15352dff6 100644 --- a/sys-fs/fuse/fuse-2.9.9-r1.ebuild +++ b/sys-fs/fuse/fuse-2.9.9-r1.ebuild @@ -8,6 +8,9 @@ inherit autotools flag-o-matic linux-info udev DESCRIPTION="An interface for filesystems implemented in userspace" HOMEPAGE="https://github.com/libfuse/libfuse" SRC_URI="https://github.com/libfuse/libfuse/releases/download/${P}/${P}.tar.gz" +# For bug #809920 to avoid a gettext dependency +# extracted from sys-devel/gettext-0.21-r1 +SRC_URI+=" https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/iconv.m4.bz2" LICENSE="GPL-2" SLOT="0" @@ -38,6 +41,8 @@ pkg_setup() { src_prepare() { default + # Can be dropped along with additional SRC_URI if dropping eautoreconf + cp "${WORKDIR}"/iconv.m4 m4/ || die eautoreconf } |