commit: 288e434138c3cd33b61dd5abf57eac7ff3120983 Author: Andrey Utkin <andrey_utkin <AT> gentoo <DOT> org> AuthorDate: Mon Jul 29 19:29:09 2019 +0000 Commit: Andrey Utkin <andrey_utkin <AT> gentoo <DOT> org> CommitDate: Mon Jul 29 21:00:21 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=288e4341
media-libs/raspberrypi-userland-bin: drop inherit multilib Apparenly multilib.eclass was used only for get_libdir function, and the usage was wrong, because it was appended to the package-specific "/opt/vc/" path which does not need to match system library directory name. More than that, the path "/opt/vc/lib" is actually hardcoded in env.d file installed by this package, so even if get_libdir ever returned something different than "lib", that would break dynamic linkage of the installed executables. Package-Manager: Portage-2.3.66, Repoman-2.3.16 Signed-off-by: Andrey Utkin <andrey_utkin <AT> gentoo.org> .../raspberrypi-userland-bin-1.20190709.ebuild | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/media-libs/raspberrypi-userland-bin/raspberrypi-userland-bin-1.20190709.ebuild b/media-libs/raspberrypi-userland-bin/raspberrypi-userland-bin-1.20190709.ebuild index 88cc1e30552..67de53f9fa0 100644 --- a/media-libs/raspberrypi-userland-bin/raspberrypi-userland-bin-1.20190709.ebuild +++ b/media-libs/raspberrypi-userland-bin/raspberrypi-userland-bin-1.20190709.ebuild @@ -3,8 +3,6 @@ EAPI=5 -inherit multilib - DESCRIPTION="Raspberry Pi userspace tools and libraries" HOMEPAGE="https://github.com/raspberrypi/firmware" MY_P="raspberrypi-firmware-${PV}" @@ -30,7 +28,7 @@ src_install() { into /opt dobin bin/* insopts -m 0755 - insinto "/opt/vc/$(get_libdir)" + insinto "/opt/vc/lib" doins -r lib/* doenvd "${FILESDIR}"/04${PN}
