diff options
author | Sam James <sam@gentoo.org> | 2021-05-28 17:37:07 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2021-05-28 17:37:07 +0200 |
commit | 72a8f02430736c23ef9b60a47dd83ee945578d9b (patch) | |
tree | 83cccc92f97c5545fef70ac9e2abbc2f961e091e /media-libs/opus | |
parent | media-libs/opus: disable intrinsics automagic (diff) | |
download | gentoo-72a8f02430736c23ef9b60a47dd83ee945578d9b.tar.gz gentoo-72a8f02430736c23ef9b60a47dd83ee945578d9b.tar.bz2 gentoo-72a8f02430736c23ef9b60a47dd83ee945578d9b.zip |
media-libs/opus: fix libdir in installed M4 macro
Most consumers seem to work around this fine nowdays,
but we should still fix the macro.
Signed-off-by: Sam James <sam@gentoo.org>
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'media-libs/opus')
-rw-r--r-- | media-libs/opus/files/opus-1.3.1-libdir-macro.patch | 11 | ||||
-rw-r--r-- | media-libs/opus/opus-1.3.1-r2.ebuild | 6 |
2 files changed, 16 insertions, 1 deletions
diff --git a/media-libs/opus/files/opus-1.3.1-libdir-macro.patch b/media-libs/opus/files/opus-1.3.1-libdir-macro.patch new file mode 100644 index 000000000000..4f57e54ddf00 --- /dev/null +++ b/media-libs/opus/files/opus-1.3.1-libdir-macro.patch @@ -0,0 +1,11 @@ +--- a/opus.m4 ++++ b/opus.m4 +@@ -22,7 +22,7 @@ AC_ARG_ENABLE(opustest,AC_HELP_STRING([--disable-opustest],[Do not try to compil + elif test "x$opus_prefix" != "x" ; then + OPUS_LIBS="-L$opus_prefix/lib" + elif test "x$prefix" != "xNONE" ; then +- OPUS_LIBS="-L$prefix/lib" ++ OPUS_LIBS="-L${libdir}" + fi + + if test "x$opus_prefix" != "xno" ; then diff --git a/media-libs/opus/opus-1.3.1-r2.ebuild b/media-libs/opus/opus-1.3.1-r2.ebuild index 08cffd6f0a36..ce65edada363 100644 --- a/media-libs/opus/opus-1.3.1-r2.ebuild +++ b/media-libs/opus/opus-1.3.1-r2.ebuild @@ -20,6 +20,10 @@ BDEPEND="doc? ( media-gfx/graphviz )" +PATCHES=( + "${FILESDIR}"/${PN}-1.3.1-libdir-macro.patch +) + multilib_src_configure() { local myeconfargs=( $(use_enable custom-modes) @@ -33,7 +37,7 @@ multilib_src_configure() { # bug #752069 for i in "${INTRINSIC_FLAGS}" ; do use ${i} && myeconfargs+=( --enable-intrinsics ) && break - done || myeconfargs+=( --disable-intrinsics ) + done || myeconfargs+=( --disable-intrinsics ) if is-flagq -ffast-math || is-flagq -Ofast; then myeconfargs+=( "--enable-float-approx" ) |