diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2024-01-25 20:08:28 +0100 |
---|---|---|
committer | Arthur Zamarin <arthurzam@gentoo.org> | 2024-03-10 11:16:06 +0200 |
commit | 25678977f2739e4f105e50799fe9f946e164b5d0 (patch) | |
tree | 3e4bbce26acee49fab3912767a839a01e841aee2 /dev-util/open-vcdiff | |
parent | dev-vcs/git: Stabilize 2.43.2 sparc, #926618 (diff) | |
download | gentoo-25678977f2739e4f105e50799fe9f946e164b5d0.tar.gz gentoo-25678977f2739e4f105e50799fe9f946e164b5d0.tar.bz2 gentoo-25678977f2739e4f105e50799fe9f946e164b5d0.zip |
dev-util/open-vcdiff: EAPI8 bump, fix bug 804447
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Closes: https://bugs.gentoo.org/804447
Closes: https://github.com/gentoo/gentoo/pull/35018
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'dev-util/open-vcdiff')
-rw-r--r-- | dev-util/open-vcdiff/open-vcdiff-0.8.4-r2.ebuild (renamed from dev-util/open-vcdiff/open-vcdiff-0.8.4-r1.ebuild) | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/dev-util/open-vcdiff/open-vcdiff-0.8.4-r1.ebuild b/dev-util/open-vcdiff/open-vcdiff-0.8.4-r2.ebuild index 18324677305e..2458630842fc 100644 --- a/dev-util/open-vcdiff/open-vcdiff-0.8.4-r1.ebuild +++ b/dev-util/open-vcdiff/open-vcdiff-0.8.4-r2.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=8 DESCRIPTION="An encoder/decoder for the VCDIFF (RFC3284) format" HOMEPAGE="https://github.com/google/open-vcdiff" @@ -10,12 +10,13 @@ SRC_URI="https://dev.gentoo.org/~floppym/dist/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0/0" KEYWORDS="~amd64 ~x86" -IUSE="" PATCHES=( "${FILESDIR}"/${P}-gcc6.patch ) -src_configure() { - econf --disable-static +src_prepare() { + sed -i -e "s|^docdir =.*|docdir = \"${EPREFIX}/usr/share/doc/${PF}\"|g" \ + Makefile.in || die + default } src_install() { |