diff options
author | Sam James <sam@gentoo.org> | 2024-11-19 13:22:27 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-11-19 13:24:07 +0000 |
commit | 93377fb733e3d4953639d24e53b1851a3497376a (patch) | |
tree | 6c5c7f144fb065ff1b4edb3d03e77d55e2d9d97f /media-video | |
parent | sys-boot/uefi-mkconfig: add 3.3 (diff) | |
download | gentoo-93377fb733e3d4953639d24e53b1851a3497376a.tar.gz gentoo-93377fb733e3d4953639d24e53b1851a3497376a.tar.bz2 gentoo-93377fb733e3d4953639d24e53b1851a3497376a.zip |
media-video/xvid4conf: EAPI 8, fix modern C issues in configure
Closes: https://bugs.gentoo.org/899916
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'media-video')
-rw-r--r-- | media-video/xvid4conf/xvid4conf-1.12-r1.ebuild (renamed from media-video/xvid4conf/xvid4conf-1.12.ebuild) | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/media-video/xvid4conf/xvid4conf-1.12.ebuild b/media-video/xvid4conf/xvid4conf-1.12-r1.ebuild index 9132080a0b58..fae4889ee076 100644 --- a/media-video/xvid4conf/xvid4conf-1.12.ebuild +++ b/media-video/xvid4conf/xvid4conf-1.12-r1.ebuild @@ -1,7 +1,9 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 + +inherit autotools DESCRIPTION="GTK2-configuration dialog for xvid4" HOMEPAGE="http://cvs.exit1.org/cgi-bin/viewcvs.cgi/xvid4conf/" @@ -14,3 +16,12 @@ KEYWORDS="~alpha amd64 ~hppa ppc ppc64 sparc x86" RDEPEND=">=x11-libs/gtk+-2.2.4:2" DEPEND="${RDEPEND}" BDEPEND="virtual/pkgconfig" + +src_prepare() { + default + + sed -i -e "s:configure.in:configure.ac:" configure.in || die + + # bug #899916 + eautoreconf +} |