We have moved to Git. This repository is only provided for compatibility with old installations. Learn how to migrate your installation here.

changeset 60:c87f8ad0fc1e

adding ebuild for Blackmagic Desktop Video 9.8
author Daniel Neugebauer <dneuge@energiequant.de>
date Tue, 20 May 2014 23:26:32 +0200
parents c8a52cf20ef3
children b62af5515f5f
files media-libs/blackmagic-desktop-video/Manifest media-libs/blackmagic-desktop-video/blackmagic-desktop-video-9.8.ebuild
diffstat 2 files changed, 132 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/media-libs/blackmagic-desktop-video/Manifest	Tue May 20 23:26:32 2014 +0200
@@ -0,0 +1,2 @@
+DIST Blackmagic_Desktop_Video_Linux_9.8.tar.gz 141900528 SHA256 6977360490c806f9952028d50bc10782d5878e5d42bd7c0f5eb070b3b6e1116c SHA512 af4ccd5f9732633c4b3756766cd54c3329bf9edeb640462bb316e9c2b782550399806973a51e51c52fa47eaa018a11889b343cc3c1531282cc6524c6f630fce1 WHIRLPOOL 6497d43c147db98e433edb3639a666b1f39036c44fe317f835407458924969ca0ae1741c577bb7b92853cc720eb0fd6cda09aca820c8222adcbfe66bd9540fb9
+EBUILD blackmagic-desktop-video-9.8.ebuild 4123 SHA256 a7fc2c6539e7c4979f05500e15124755b2eb61ffd1d4896be00284ea50cfb330 SHA512 7842ea6c8a26c0cf0f1281e412eece5ace31ca9fd097f34354258c1a422d5f5499d91466851e2a7c3f2fd86ef775ee3ee7432351ad97abc3d83265818bd6d683 WHIRLPOOL 98b26e805ee6f8259dcfaba8bc3dfef1c818b3d7a4545448f83bc53c33aeae1d489a1a7d3000b51c06a2d4df72ce83ea856cbb173fdc4f08b918d4f9469dc4a3
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/media-libs/blackmagic-desktop-video/blackmagic-desktop-video-9.8.ebuild	Tue May 20 23:26:32 2014 +0200
@@ -0,0 +1,130 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+inherit linux-mod
+
+DESCRIPTION="Desktop Video - drivers and tools for products by Blackmagic Design including DeckLink and Intensity"
+HOMEPAGE="http://www.blackmagicdesign.com/"
+
+SRC_URI="Blackmagic_Desktop_Video_Linux_${PV}.tar.gz"
+UNPACKED_DIR="desktopvideo-9.8a2-x86_64"
+
+#LICENSE="BlackmagicDesktopVideo"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="autostart"
+RESTRICT="fetch"
+
+DEPEND=""
+RDEPEND="${DEPEND}"
+
+# supress QA warnings about stripping etc., i.e. stuff we cannot change since we install prebuilt binaries
+QA_PREBUILT="opt/blackmagic-desktop-video/usr/bin/* opt/blackmagic-desktop-video/usr/lib/*"
+
+# for kernel module compilation
+MODULE_NAMES="blackmagic(misc:${S}/usr/src/desktopvideo-9.8a2:${S}/usr/src/desktopvideo-9.8a2)"
+BUILD_TARGETS="clean all"
+
+pkg_nofetch() {
+	einfo "Please visit ${HOMEPAGE} and download \"Desktop Video ${PV} for Linux\""
+	einfo "for your product from the support section and move it to ${DISTDIR}"
+	einfo ""
+	einfo "  expected filename: ${SRC_URI}"
+	einfo ""
+	einfo "The license should be shown and has to be accepted before the download"
+	einfo "starts."
+}
+
+src_unpack() {
+	unpack ${A}
+	
+	cd ${WORKDIR}
+	tar xfz desktopvideo-${PV}-x86_64.tar.gz
+	
+	# symlink to what is supposed to have been prepared
+	ln -s ${UNPACKED_DIR} ${P}
+}
+
+src_prepare() {
+	return
+}
+
+src_compile() {
+	# library/tools are binary but kernel module requires compilation
+	linux-mod_src_compile
+}
+
+src_install() {
+	# all pre-built binaries should go into /opt and be symlinked to usr/bin etc.
+	installdir="${D}/opt/blackmagic-desktop-video"
+	
+	mkdir -p ${installdir}
+	cp -a ${WORKDIR}/${UNPACKED_DIR}/* ${installdir}/
+	
+	symlinks=(
+			'usr/bin/BlackmagicControlPanel'
+			'usr/bin/BlackmagicFirmwareUpdater'
+			'usr/lib/libDeckLinkAPI.so'
+			'usr/lib/libDeckLinkPreviewAPI.so'
+			'usr/lib/blackmagic'
+			'usr/share/applications/BlackmagicControlPanel.desktop'
+			'usr/share/doc/desktopvideo'
+			'usr/share/icons/hicolor/16x16/apps/BlackmagicControlPanel.png'
+			'usr/share/icons/hicolor/32x32/apps/BlackmagicControlPanel.png'
+			'usr/share/icons/hicolor/48x48/apps/BlackmagicControlPanel.png'
+			'usr/share/icons/hicolor/128x128/apps/BlackmagicControlPanel.png'
+			'usr/share/icons/hicolor/256x256/apps/BlackmagicControlPanel.png'
+                 )
+	
+	for path in "${symlinks[@]}"; do
+		dosym /opt/blackmagic-desktop-video/${path} ${path}
+	done
+	
+	# udev rule should be placed in /lib/udev/rules.d instead
+	dosym /opt/blackmagic-desktop-video/etc/udev/rules.d/20-blackmagic.rules /lib/udev/rules.d/20-blackmagic.rules
+	
+	# add firmware check to autostart?
+	if use autostart; then
+		dosym /opt/blackmagic-desktop-video/etc/xdg/autostart/blackmagic-firmware-notify.desktop /etc/xdg/autostart/blackmagic-firmware-notify.desktop
+	fi
+	
+	# kernel module
+	linux-mod_src_install
+}
+
+pkg_postinst() {
+	# kernel module
+	linux-mod_pkg_postinst
+	
+	#      12345678901234567890123456789012345678901234567890123456789012345678901234567890
+	einfo ""
+	einfo "Please do *NOT* report any QA errors to Gentoo or Blackmagic!"
+	einfo ""
+	einfo "The kernel module is simply called blackmagic. You may want to modprobe it now"
+	einfo "to see if it works (it should print your devices to kernel log)."
+	einfo ""
+	einfo "Installed tools are BlackmagicFirmwareUpdater and BlackmagicControlPanel."
+	einfo ""
+	if use autostart; then
+		einfo "Automated update check has been installed."
+	else
+		einfo "Automated update check has *not* been installed this time. (set USE flag"
+		einfo "autostart if you want that)"
+	fi
+	einfo ""
+	einfo "If your product is not being recognized, you may need to increase the vmalloc"
+	einfo "limit in your kernel. You can do that by adding e.g. vmalloc=256M to your kernel"
+	einfo "boot line. You can see current usage by running"
+	einfo ""
+	einfo " # grep VmallocUsed /proc/meminfo"
+	einfo ""
+	einfo "We are reloading udev rules now..."
+	/sbin/udevadm control --reload-rules || einfo " ... failed, you may want to check this before rebooting!"
+}
+
+pkg_postrm() {
+	# kernel module
+	linux-mod_pkg_postrm
+}