Skip to content

Commit

Permalink
media-libs/raspberrypi-userland: temp. fix for missing libfdt.so, see r…
Browse files Browse the repository at this point in the history
  • Loading branch information
crabbedhaloablution committed Nov 8, 2020
1 parent 00bfbe2 commit f14375c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
4 changes: 2 additions & 2 deletions media-libs/raspberrypi-userland/Manifest
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ AUX 92-local-vchiq-permissions.rules 142 BLAKE2B 962d9eb744717cf7a685fb7ab8a0e68
AUX raspberrypi-userland-include.patch 1484 BLAKE2B 7563874b54b168bd4858ecb65112ef48a7e010feae7a68c22f6d3f47dc1b855222df124df808fd6be427fea5763a9afd4c55ae2e3223c7bd55aa95333e55fe88 SHA512 fe73bcd1182b36e8ccaf81f0d7717f299a482545f08b352af8ead80f134a7be0f5269adb6972a1979a390046b9b94cab55c7a50a493740c72c5084e0e4995baf
AUX raspberrypi-userland-libdir.patch 12348 BLAKE2B ed0dcc454b13589244204cf2cb26d9e38b75887c2d4d1ec4db02e7d4a206661f0ae4fc9d06467e353310a6b69f49a72a53b2882acab6a3959d57c7c0d34434b5 SHA512 213f04d859a0134143cf0e98650ed69096934c1600577d28bb24d62272f9da7ca12d0f3b59a19d3ff06a5fc67547f8e5a8684738b534bfa6e429722b320fee9f
DIST raspberrypi-userland-0_pre20201022.tar.gz 32957266 BLAKE2B b2f3b276db25f9185ac4c5db3ceb1e76b785e4692c724c4ec2442cb3dd7552ca612536f87852eb3b7561187bf6bb3552c46325f7dde90a0f82f68300ea67cc21 SHA512 12e66b2ba23a927ac09226c5f9a9300e83b0cf9935cccba95be1eaf7149b1ae55db0241a1fde95986af935478fba31e2021160daa1ed600d949e8c3f0452c50f
EBUILD raspberrypi-userland-0_pre20201022.ebuild 1364 BLAKE2B 2a664fc8417e9331acc977d9b69f8c43af7715ddc4c23178c3dc8e26963a9499a47a4a728666690e892f6714f5401b7ee42dea28ecdff9c823b8e16faa66ed69 SHA512 29c71e8f10b6ca93d3c0604b6b57f0f8c4cac1747096bf0d21d1596745906b8a2b5152da35091f4ac9b54e4502d7338dd631401225b5c0434086b3f64d7a6e10
EBUILD raspberrypi-userland-9999.ebuild 1364 BLAKE2B 22a09caf6a7731214890bdaaf3a794634e3825e4a7224df2ad20bae41b77763997066efe05233ffcc551e31e090fdda72cc937e5fddf98f5fb7370140077361f SHA512 1be6a39dad2d70b8dcab27f96ca40ec0cb7d9e301832ab397a01f846bde93a34bbce03c22392404ce91790498889f3d29b2f2aaf8a2a13f64b1bf49639888bc3
EBUILD raspberrypi-userland-0_pre20201022.ebuild 1728 BLAKE2B fd8f983eff9e2415fb311af04ee893335284987ce291dedc68057f91dc9c3d06798e47c5f9c1c56d208c2e9ddb86d06da4582d185c241f3851e8050c161b7095 SHA512 c0be9df9f15a0432b3c6ee25d21d054d448ce62cced2832eadbdb687023c6fb8f348a7a06bff71d516e10027e8281b1897d9800d9f51b59e9b7af4cf3cbfc9a9
EBUILD raspberrypi-userland-9999.ebuild 1728 BLAKE2B fd8f983eff9e2415fb311af04ee893335284987ce291dedc68057f91dc9c3d06798e47c5f9c1c56d208c2e9ddb86d06da4582d185c241f3851e8050c161b7095 SHA512 c0be9df9f15a0432b3c6ee25d21d054d448ce62cced2832eadbdb687023c6fb8f348a7a06bff71d516e10027e8281b1897d9800d9f51b59e9b7af4cf3cbfc9a9
MISC metadata.xml 351 BLAKE2B ba576d7f61b104574b6a6691584dd75e632a637ded0bce055a267822a86574e35a6d71f5bb3616939af1a964aa007cbe49fd5cf3b64939b387dc0d46d356fc82 SHA512 f0d9ddcb8e1e7df5ff767f33824c5f2b6ab5a9afc508e1d39864a046f2ffc05665011a1a08e2624dd41d6e1c150ed0d14ce888401cb5c52069eb4a8958d167e2
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=5
EAPI=7
inherit cmake-utils flag-o-matic udev

if [[ ${PV} == 9999* ]]; then
Expand Down Expand Up @@ -52,6 +52,9 @@ src_prepare() {
sed -i \
-e 's:DESTINATION ${VMCS_INSTALL_PREFIX}/src:DESTINATION ${VMCS_INSTALL_PREFIX}/'"share/doc/${PF}:" \
"${S}/makefiles/cmake/vmcs.cmake" || die "Failed sedding makefiles/cmake/vmcs.cmake"
sed -i \
-e 's:add_library(fdt:add_library(fdt STATIC:' \
"${S}/opensrc/helpers/libfdt/CMakeLists.txt" || die
}

src_install() {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=5
EAPI=7
inherit cmake-utils flag-o-matic udev

if [[ ${PV} == 9999* ]]; then
Expand Down Expand Up @@ -52,6 +52,9 @@ src_prepare() {
sed -i \
-e 's:DESTINATION ${VMCS_INSTALL_PREFIX}/src:DESTINATION ${VMCS_INSTALL_PREFIX}/'"share/doc/${PF}:" \
"${S}/makefiles/cmake/vmcs.cmake" || die "Failed sedding makefiles/cmake/vmcs.cmake"
sed -i \
-e 's:add_library(fdt:add_library(fdt STATIC:' \
"${S}/opensrc/helpers/libfdt/CMakeLists.txt" || die
}

src_install() {
Expand Down

0 comments on commit f14375c

Please sign in to comment.