diff options
-rw-r--r-- | media-libs/libiec61883/libiec61883-1.2.0-r2.ebuild | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/media-libs/libiec61883/libiec61883-1.2.0-r2.ebuild b/media-libs/libiec61883/libiec61883-1.2.0-r2.ebuild index 5ca93b155253..4e9d17172773 100644 --- a/media-libs/libiec61883/libiec61883-1.2.0-r2.ebuild +++ b/media-libs/libiec61883/libiec61883-1.2.0-r2.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -inherit multilib-minimal +inherit flag-o-matic multilib-minimal DESCRIPTION="Library for capturing video (dv or mpeg2) over the IEEE 1394 bus" HOMEPAGE="https://ieee1394.wiki.kernel.org/index.php/Libraries#libiec61883" @@ -23,6 +23,14 @@ src_prepare() { use examples && eapply "${FILESDIR}/${P}-examples.patch" } +src_configure() { + # bug #859916 + append-flags -fno-strict-aliasing + filter-lto + + multilib-minimal_src_configure +} + multilib_src_configure() { ECONF_SOURCE=${S} econf --disable-static } |