commit: 25f95fecc86619ac99f193ea5f385b043a705073 Author: Ben Kohler <bkohler <AT> gmail <DOT> com> AuthorDate: Thu Mar 8 13:20:25 2018 +0000 Commit: Jason Zaman <perfinion <AT> gentoo <DOT> org> CommitDate: Thu Mar 8 13:27:42 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25f95fec
media-libs/webrtc-audio-processing: fix missing aclocal-1.15 Add a call to eautoreconf to fix missing/hardcoded aclocal-1.15 Closes: https://bugs.gentoo.org/649244 .../webrtc-audio-processing/webrtc-audio-processing-0.3.ebuild | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/media-libs/webrtc-audio-processing/webrtc-audio-processing-0.3.ebuild b/media-libs/webrtc-audio-processing/webrtc-audio-processing-0.3.ebuild index b48c1061479..a7d2d6aaa46 100644 --- a/media-libs/webrtc-audio-processing/webrtc-audio-processing-0.3.ebuild +++ b/media-libs/webrtc-audio-processing/webrtc-audio-processing-0.3.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 -inherit eutils multilib-minimal +inherit autotools eutils multilib-minimal DESCRIPTION="AudioProcessing library from the webrtc.org code base" HOMEPAGE="https://www.freedesktop.org/software/pulseaudio/webrtc-audio-processing/" @@ -20,6 +20,11 @@ PATCHES=( "${FILESDIR}"/${PN}-0.3-proper_detection_cxxabi_execinfo.patch ) +src_prepare() { + eautoreconf + default +} + multilib_src_configure() { ECONF_SOURCE="${S}" \ econf
