megacoffee.net Gentoo overlay - legacy mirror
We have moved to Git. This repository is only provided for compatibility with old installations. Learn how to migrate your installation here.
view media-video/blackmagic-media-express/blackmagic-media-express-3.5.3.ebuild @ 236:151d84363e64
[sync] imported 8c3bfd0..b15ca8c from upstream
commit b15ca8c5239daf75d74e03ce0e88be2722c8a8b5
Author: Daniel Neugebauer <dneuge@energiequant.de>
Date: Sun Feb 28 13:03:05 2021 +0100
media-video/qt-faststart-python removed due to Python 2.7
qt-faststart-python requires Python 2.7 which is being removed from
Gentoo. Even if 2.7 may remain available we seem to be unable to
keep such packages on a registered overlay using the utility classes
provided by Gentoo.
In general, "faststart" is today also easily and quickly achieved
through FFMPEG (without recoding), so this tool may really no longer
be needed.
commit dd2b6cb6314909e9253e5dc82cdd99f944f14733
Author: Daniel Neugebauer <dneuge@energiequant.de>
Date: Sun Feb 28 12:58:23 2021 +0100
media-gfx/trimage removed 1.0.5 due to outdated Python version
commit a5de53e6780d5321372f2dcdabdd9eae83b7b1bb
Author: Daniel Neugebauer <dneuge@energiequant.de>
Date: Sun Feb 28 12:56:56 2021 +0100
dev-python/sexpdata removed
Same version is available from official Gentoo repository.
commit 9009aaca44d0baf1c654f4b39ca1887b8395c2e8
Author: Daniel Neugebauer <dneuge@energiequant.de>
Date: Sun Feb 28 12:26:51 2021 +0100
dev-python/epc removed; upstream seems dead
Officially only compatible with Python 2.7 up to 3.3.
Not sure if still needed - was introduced for emacs JEDI but that
appears to now ship its own version through MELPA. Not needed on
local installation.
author | Migration Sync <gentoo-overlay@megacoffee.net> |
---|---|
date | Sun, 28 Feb 2021 12:30:02 +0000 |
parents | 3c0316b4ca58 |
children |
line wrap: on
line source
# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # TODOs: # - fix QA notice about installing symlinks in /usr/lib EAPI=5 DESKTOP_VIDEO_SHORT_VERSION="10.9" DESKTOP_VIDEO_VERSION="10.9a7" MEDIA_EXPRESS_VERSION="3.5.3a1" DESCRIPTION="Media Express - Blackmagic Design's tool for media capture, organization and playback" HOMEPAGE="http://www.blackmagicdesign.com/" HOMEPAGE_DOWNLOAD_NAME="Desktop Video ${DESKTOP_VIDEO_SHORT_VERSION}" SRC_URI="Blackmagic_Desktop_Video_Linux_${DESKTOP_VIDEO_SHORT_VERSION}.tar.gz" UNPACKED_DIR="mediaexpress-${MEDIA_EXPRESS_VERSION}-x86_64" LICENSE="BlackmagicDesktopVideo" SLOT="0" KEYWORDS="~amd64" #IUSE="autostart" RESTRICT="fetch" # dependencies for binaries found by commands: (ldd lists transitive dependencies as well which isn't what we want) # for file in /usr/lib/blackmagic/me/*; do objdump -p $file | grep NEEDED; done 2>/dev/null | cut -b24- | sort | uniq | grep -vE 'lib(Qt|MXF|DNxHDCodec)' # equery belongs $(for file in /usr/lib/blackmagic/me/*; do objdump -p $file | grep NEEDED; done 2>/dev/null | cut -b24- | sort | uniq | grep -vE 'lib(Qt|MXF|DNxHDCodec)') DEPEND="" RDEPEND="${DEPEND} >=media-libs/blackmagic-desktop-video-10.8.4 dev-libs/glib:2 media-libs/alsa-lib media-libs/libpng:0/16 sys-devel/gcc sys-libs/glibc sys-libs/zlib virtual/glu x11-libs/libX11 x11-libs/libXext " # supress QA warnings about stripping etc., i.e. stuff we cannot change since we install prebuilt binaries QA_PREBUILT="opt/blackmagic-media-express/usr/lib/*" pkg_nofetch() { # 1 2 3 4 5 6 7 # 123456789012345678901234567890123456789012345678901234567890123456789012 einfo "Media Express is bundled with Desktop Video downloads." einfo "" einfo "Please visit ${HOMEPAGE} and download \"${HOMEPAGE_DOWNLOAD_NAME}\"" einfo "for your product from the support section and move it to your DISTDIR" einfo "(/var/cache/distfiles or /usr/portage/distfiles unless you changed it)." einfo "" einfo " expected filename: ${SRC_URI}" einfo "" einfo "If your browser downloads a .tar file you will need to rename it to .tar.gz" } src_unpack() { unpack ${A} cd ${WORKDIR} tar xfz Blackmagic_Desktop_Video_Linux_${DESKTOP_VIDEO_VERSION}/other/x86_64/mediaexpress-${MEDIA_EXPRESS_VERSION}-x86_64.tar.gz # symlink to what is supposed to have been prepared ln -s ${UNPACKED_DIR} ${P} } src_install() { # all pre-built binaries should go into /opt and be symlinked to usr/bin etc. finalinstalldir="/opt/blackmagic-media-express" installdir="${D}${finalinstalldir}" mkdir -p ${installdir} cp -a ${WORKDIR}/${UNPACKED_DIR}/* ${installdir}/ # NOTE: Not linking usr/lib/systemd as I don't use that and thus can't test it... symlinks=( 'usr/bin/MediaExpress' 'usr/lib/blackmagic/me' 'usr/share/applications/MediaExpress.desktop' 'usr/share/doc/mediaexpress' 'usr/share/icons/hicolor/32x32/apps/MediaExpress.png' 'usr/share/icons/hicolor/48x48/apps/MediaExpress.png' 'usr/share/icons/hicolor/256x256/apps/MediaExpress.png' ) for path in "${symlinks[@]}"; do dosym ${finalinstalldir}/${path} ${path} done # dneuge: no clue on how to use this... ## QA notice says we should generate a linker script if we don't place libraries in /usr/lib ## see: https://devmanual.gentoo.org/eclass-reference/toolchain-funcs.eclass/index.html #gen_usr_ldscript usr/lib/libDeckLinkAPI.so usr/lib/libDeckLinkPreviewAPI.so # don't symlink man-pages, install a copy instead doman usr/share/man/man1/*.1 } pkg_postinst() { # 12345678901234567890123456789012345678901234567890123456789012345678901234567890 einfo "Please do *NOT* report any QA errors to Gentoo or Blackmagic!" einfo "" einfo "License can be found in: ${finalinstalldir}/usr/share/doc/mediaexpress/License.txt" }