summaryrefslogtreecommitdiff
path: root/sys-firmware/raspberrypi-firmware/raspberrypi-firmware-9999.ebuild
diff options
context:
space:
mode:
authorCtibor <ctibor.brancik@seznam.cz>2014-08-06 22:32:35 +0200
committerCtibor <ctibor.brancik@seznam.cz>2014-08-06 22:32:35 +0200
commit63151699a5e6189d6c51495b8995c1bb888e3902 (patch)
tree9914af4b86575de68ca00feab592e7f19a51648e /sys-firmware/raspberrypi-firmware/raspberrypi-firmware-9999.ebuild
parent8ec2d68fff5a117d433043c69100e0e2db1284ac (diff)
downloadbrancik-overlay-63151699a5e6189d6c51495b8995c1bb888e3902.tar.gz
brancik-overlay-63151699a5e6189d6c51495b8995c1bb888e3902.tar.bz2
Fix portage category for sys-boot/raspberrypi-firmware.
Diffstat (limited to 'sys-firmware/raspberrypi-firmware/raspberrypi-firmware-9999.ebuild')
-rw-r--r--sys-firmware/raspberrypi-firmware/raspberrypi-firmware-9999.ebuild87
1 files changed, 0 insertions, 87 deletions
diff --git a/sys-firmware/raspberrypi-firmware/raspberrypi-firmware-9999.ebuild b/sys-firmware/raspberrypi-firmware/raspberrypi-firmware-9999.ebuild
deleted file mode 100644
index 2b88c9c..0000000
--- a/sys-firmware/raspberrypi-firmware/raspberrypi-firmware-9999.ebuild
+++ /dev/null
@@ -1,87 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI="4"
-
-DESCRIPTION="Proprietary libraries for the Broadcom BCM2835 SoC (including the Raspberry Pi computer)"
-HOMEPAGE="http://www.broadcom.com/ http://www.raspberrypi.org/"
-
-inherit git-2
-
-EGIT_REPO_URI="git://github.com/raspberrypi/firmware.git"
-EGIT_PROJECT="raspberrypi-firmware.git"
-
-SLOT="0"
-
-KEYWORDS="arm"
-
-# TODO: Make the samples actually optional
-IUSE="X +hardfp +samples"
-
-DEPEND="!media-libs/bcm2835-libs
- X? ( || ( <media-libs/mesa-8.0[-egl,-gles,-openvg] >=media-libs/mesa-8.0[-egl,-gles1,-gles2,-openvg] ) )"
-RDEPEND="${DEPEND}"
-
-RESTRICT="mirror strip test"
-
-# QA Silencing
-QA_TEXTRELS="
- opt/vc/lib/libbcm_host.so
- opt/vc/lib/libGLESv2.so
- opt/vc/lib/libluammal.so
- opt/vc/lib/libmmal.so
- opt/vc/lib/libEGL.so
- opt/vc/lib/libopenmaxil.so
-"
-
-QA_EXECSTACK="
- opt/vc/bin/vchiq_test
- opt/vc/bin/vcdbg
- opt/vc/bin/vcmemmap
- opt/vc/bin/tvservice
- opt/vc/bin/edidparser
- opt/vc/bin/vcgencmd
- opt/vc/sbin/vcfiled
-"
-
-src_install() {
- if use hardfp; then
- cd "${S}/hardfp/opt/vc"
- else
- cd "${S}/opt/vc"
- fi
- insinto /opt/vc
- doins -r include lib
- use samples && doins -r src
- exeinto /opt/vc/bin
- doexe bin/*
- exeinto /opt/vc/sbin
- doexe sbin/*
-
- dodoc "LICENCE"
-
- # Create symlinks for header files
- local vcos_include_dir
- vcos_include_dir="/opt/vc/include/interface/vcos"
- local vcos_includes
- vcos_includes="vcos_futex_mutex.h"
- vcos_includes+=" vcos_platform.h"
- vcos_includes+=" vcos_platform_types.h"
- for vcos_include in ${vcos_includes}; do
- dosym "${vcos_include_dir}/pthreads/${vcos_include}" \
- "${vcos_include_dir}/${vcos_include}"
- done
-
- local bcm_includes
- bcm_includes="bcm_host.h"
- bcm_includes+=" EGL GLES GLES2 IL"
- bcm_includes+=" interface KHR"
- bcm_includes+=" vcinclude VG"
- for bcm_include in ${bcm_includes}; do
- dosym /opt/vc/include/${bcm_include} /usr/include/${bcm_include}
- done
-
- insinto /etc/env.d
- newins "${FILESDIR}/${PN}.envd" "02${PN}"
-} \ No newline at end of file