summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlya Tumaykin <itumaykin@gmail.com>2016-04-12 13:10:05 +0300
committerPatrice Clement <monsieurp@gentoo.org>2016-04-12 18:33:38 +0000
commitd942872359ff883adac37a80b1d5c8ad8f53347a (patch)
treea991caa5c4cc1a5f9b8f2d2ff6fce81d3518fef8 /media-video
parentmedia-video/mpv: verbump to 0.17.0 (diff)
downloadgentoo-d942872359ff883adac37a80b1d5c8ad8f53347a.tar.gz
gentoo-d942872359ff883adac37a80b1d5c8ad8f53347a.tar.bz2
gentoo-d942872359ff883adac37a80b1d5c8ad8f53347a.zip
media-video/mpv: remove old
Closes: https://github.com/gentoo/gentoo/pull/1249 Package-Manager: portage-2.2.28 Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
Diffstat (limited to 'media-video')
-rw-r--r--media-video/mpv/Manifest1
-rw-r--r--media-video/mpv/files/mpv-0.16.0-add-missing-audio-reconfig-events.patch33
-rw-r--r--media-video/mpv/files/mpv-0.16.0-avoid-NULL-dereference-on-wayland.patch23
-rw-r--r--media-video/mpv/files/mpv-0.16.0-fix-bitrate-calculation.patch31
-rw-r--r--media-video/mpv/files/mpv-0.16.0-fix-coverart-decoding.patch39
-rw-r--r--media-video/mpv/files/mpv-0.16.0-fix-srt-subtitles-on-libav.patch29
-rw-r--r--media-video/mpv/files/mpv-0.16.0-set-correct-seekable-flags.patch36
-rw-r--r--media-video/mpv/mpv-0.16.0-r2.ebuild282
8 files changed, 0 insertions, 474 deletions
diff --git a/media-video/mpv/Manifest b/media-video/mpv/Manifest
index 2ad073890262..a3873c806add 100644
--- a/media-video/mpv/Manifest
+++ b/media-video/mpv/Manifest
@@ -1,4 +1,3 @@
-DIST mpv-0.16.0.tar.gz 2877026 SHA256 fc3619de0ede16fbb023ac72589090e8e77fd9d9e03a81adc728105d50ef38ba SHA512 d328dba2cc68bd3ae2e14bfcf2b4f69f076691bb40db77036e716f783d7683fde668b652829106661dfeea46d66b4a7ad61b58610411b69bd5265adea4f20bd6 WHIRLPOOL 09af632453788c9251a595f7ea18a15876c2bab2e393d32e8cc9eebf7e2ecc459873022234a98f97840223c7cb613e05039dbc987f13839d3210f284300ce312
DIST mpv-0.17.0.tar.gz 2882629 SHA256 602cd2b0f5fc7e43473234fbb96e3f7bbb6418f15eb8fa720d9433cce31eba6e SHA512 fb79738a16dbc12b60199a68836aca121a800958af4eaf6c2bdf1114bde36c156bafc232e814045a16fd738d2de1e2d8392bc98507961e5a73fa692e270dc7a2 WHIRLPOOL 704133b4033a5a2be8db92a4f1e52397d5b261a99a035d38e33b91d2c478e0e9bfcb2ba0e24ee03d37fffe693b275f50f7f1e453263a5afe61e8944f51eefa61
DIST mpv-0.9.2.tar.gz 2701306 SHA256 c0148f55dbd17705f49bb496d0ce374419de62e1b17195d91409d7727cbd4751 SHA512 4f652a8e78d65b0ef44a06287b05250dfdfbce4cf5a6e21d3b446eedec268d83cf98afcc687272e2da2cfac9e9f69a303847dffdfd45cecdd4273b943ce50967 WHIRLPOOL 1512bacc2ce50e875770c76106a1bb2bc1d0cc5f6e2bdce91ff8c5cfc8bf13ffb48519858a5fa2a7d57880820dc12e5eb20f34ab71eca5d76ec303618da8f3fe
DIST waf-1.8.12 97567 SHA256 01bf2beab2106d1558800c8709bc2c8e496d3da4a2ca343fe091f22fca60c98b SHA512 8e47112abb134f965f15a27a600b4453cad3075afb5dadc17f2f6dac33d80ec68b679ac0ebc5f8a0245cbd07ae9fc7b899e69afc1bd021cce74e7af2ab457939 WHIRLPOOL c36d37c2d8c08e4048b4800f511611af5cf534304fcb58388ca491ff308bfcbcdd959d153edfd6ff8c118404e7293d8b786e43b07486139bf915a82aa75d792b
diff --git a/media-video/mpv/files/mpv-0.16.0-add-missing-audio-reconfig-events.patch b/media-video/mpv/files/mpv-0.16.0-add-missing-audio-reconfig-events.patch
deleted file mode 100644
index b01e12616c5a..000000000000
--- a/media-video/mpv/files/mpv-0.16.0-add-missing-audio-reconfig-events.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-commit c13c9945bf84817ee1dd2d65e58660fb38e23a7f
-Author: wm4 <wm4@nowhere>
-Date: Sun Mar 13 15:52:17 2016 +0100
-
- player: add missing audio reconfig events
-
- This also takes care of sending the required property change
- notifications.
-
- Fixes #2929 and maybe fixes #2920.
-
-diff --git a/player/audio.c b/player/audio.c
-index f17587a..3a2c60b 100644
---- a/player/audio.c
-+++ b/player/audio.c
-@@ -134,6 +134,8 @@ static int recreate_audio_filters(struct MPContext *mpctx)
-
- mixer_reinit_audio(mpctx->mixer, mpctx->ao, afs);
-
-+ mp_notify(mpctx, MPV_EVENT_AUDIO_RECONFIG, NULL);
-+
- return 0;
-
- fail:
-@@ -368,6 +370,8 @@ static void reinit_audio_filters_and_output(struct MPContext *mpctx)
-
- update_playback_speed(mpctx);
-
-+ mp_notify(mpctx, MPV_EVENT_AUDIO_RECONFIG, NULL);
-+
- return;
-
- init_error:
diff --git a/media-video/mpv/files/mpv-0.16.0-avoid-NULL-dereference-on-wayland.patch b/media-video/mpv/files/mpv-0.16.0-avoid-NULL-dereference-on-wayland.patch
deleted file mode 100644
index 9af5e246ac2e..000000000000
--- a/media-video/mpv/files/mpv-0.16.0-avoid-NULL-dereference-on-wayland.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-commit 5c2026336419805202fbf7a817b2960b0584ce5d
-Author: wm4 <wm4@nowhere>
-Date: Thu Mar 3 15:30:28 2016 +0100
-
- vo_opengl: wayland: don't destroy NULL wl_egl_window
-
- The wayland client API crashes intentionally when trying to free NULL
- objects. (Thanks.)
-
-diff --git a/video/out/opengl/context_wayland.c b/video/out/opengl/context_wayland.c
-index 63a1453..a100073 100644
---- a/video/out/opengl/context_wayland.c
-+++ b/video/out/opengl/context_wayland.c
-@@ -183,7 +183,8 @@ static void waylandgl_uninit(MPGLContext *ctx)
-
- if (wl->egl_context.egl.ctx) {
- eglReleaseThread();
-- wl_egl_window_destroy(wl->egl_context.egl_window);
-+ if (wl->egl_context.egl_window)
-+ wl_egl_window_destroy(wl->egl_context.egl_window);
- eglDestroySurface(wl->egl_context.egl.dpy, wl->egl_context.egl_surface);
- eglMakeCurrent(wl->egl_context.egl.dpy, NULL, NULL, EGL_NO_CONTEXT);
- eglDestroyContext(wl->egl_context.egl.dpy, wl->egl_context.egl.ctx);
diff --git a/media-video/mpv/files/mpv-0.16.0-fix-bitrate-calculation.patch b/media-video/mpv/files/mpv-0.16.0-fix-bitrate-calculation.patch
deleted file mode 100644
index 2515b3ae7ee9..000000000000
--- a/media-video/mpv/files/mpv-0.16.0-fix-bitrate-calculation.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-commit 5c1fe2a4f3e559a0c6a010e48b0c225d01c1cd0a
-Author: wm4 <wm4@nowhere>
-Date: Sat Mar 5 12:48:58 2016 +0100
-
- demux: delay bitrate calculation on packets with unknown timestamps
-
- Commit 503c6f7f essentially removed timestamps from "laces" (Block sub-
- divisions), which means many audio packets will have no timestamp.
- There's no reason why bitrate calculation can't just delayed to a point
- when the next timestamp is known.
-
- Fixes #2903 (no audio bitrate with mkv files).
-
-diff --git a/demux/demux.c b/demux/demux.c
-index bd3211a..a7241d9 100644
---- a/demux/demux.c
-+++ b/demux/demux.c
-@@ -681,11 +681,11 @@ static struct demux_packet *dequeue_packet(struct demux_stream *ds)
- if (ts != MP_NOPTS_VALUE)
- ds->base_ts = ts;
-
-- if (pkt->keyframe) {
-+ if (pkt->keyframe && ts != MP_NOPTS_VALUE) {
- // Update bitrate - only at keyframe points, because we use the
- // (possibly) reordered packet timestamps instead of realtime.
- double d = ts - ds->last_br_ts;
-- if (ts == MP_NOPTS_VALUE || ds->last_br_ts == MP_NOPTS_VALUE || d < 0) {
-+ if (ds->last_br_ts == MP_NOPTS_VALUE || d < 0) {
- ds->bitrate = -1;
- ds->last_br_ts = ts;
- ds->last_br_bytes = 0;
diff --git a/media-video/mpv/files/mpv-0.16.0-fix-coverart-decoding.patch b/media-video/mpv/files/mpv-0.16.0-fix-coverart-decoding.patch
deleted file mode 100644
index 1166b36fb054..000000000000
--- a/media-video/mpv/files/mpv-0.16.0-fix-coverart-decoding.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-commit c53c6bbd387ca582091a8bfca33140d65c200be0
-Author: wm4 <wm4@nowhere>
-Date: Mon Mar 7 15:00:08 2016 +0100
-
- video: fix coverart decoding
-
- Deselecting cover art and then reselecting it did not work. The second
- time the cover art picture is not displayed again. (This seems to break
- every other month...)
-
- The reason is commit 6640b22a. It mutates the input packet. And it is
- correct that we don't own d_video->header->attached_picture at this
- point. Fix it by creating a new packet reference.
-
-diff --git a/video/decode/dec_video.c b/video/decode/dec_video.c
-index e8a5774..fc0b090 100644
---- a/video/decode/dec_video.c
-+++ b/video/decode/dec_video.c
-@@ -363,9 +363,10 @@ void video_work(struct dec_video *d_video)
- return;
-
- if (d_video->header->attached_picture) {
-+ struct demux_packet *packet =
-+ demux_copy_packet(d_video->header->attached_picture);
- if (d_video->current_state == DATA_AGAIN && !d_video->cover_art_mpi) {
-- d_video->cover_art_mpi =
-- decode_packet(d_video, d_video->header->attached_picture, 0);
-+ d_video->cover_art_mpi = decode_packet(d_video, packet, 0);
- // Might need flush.
- if (!d_video->cover_art_mpi)
- d_video->cover_art_mpi = decode_packet(d_video, NULL, 0);
-@@ -375,6 +376,7 @@ void video_work(struct dec_video *d_video)
- d_video->current_mpi = mp_image_new_ref(d_video->cover_art_mpi);
- // (DATA_OK is returned the first time, when current_mpi is sill set)
- d_video->current_state = DATA_EOF;
-+ talloc_free(packet);
- return;
- }
-
diff --git a/media-video/mpv/files/mpv-0.16.0-fix-srt-subtitles-on-libav.patch b/media-video/mpv/files/mpv-0.16.0-fix-srt-subtitles-on-libav.patch
deleted file mode 100644
index 4344e78e7ac9..000000000000
--- a/media-video/mpv/files/mpv-0.16.0-fix-srt-subtitles-on-libav.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-commit 041c9f1782cbed4abf7793f4e72b8b29b2fd9b1b
-Author: wm4 <wm4@nowhere>
-Date: Mon Feb 29 18:20:27 2016 +0100
-
- lavc_conv: fix Libav srt subtitles
-
- Use the mp_lavc_set_extradata() function instead of setting up the
- extradata manually. This takes care of the corner case when
- extradata_len is 0.
-
- This apparently fixes #2888.
-
-diff --git a/sub/lavc_conv.c b/sub/lavc_conv.c
-index 3dd6097..7303020 100644
---- a/sub/lavc_conv.c
-+++ b/sub/lavc_conv.c
-@@ -79,11 +79,8 @@ struct lavc_conv *lavc_conv_create(struct mp_log *log, const char *codec_name,
- avctx = avcodec_alloc_context3(codec);
- if (!avctx)
- goto error;
-- avctx->extradata_size = extradata_len;
-- avctx->extradata = av_malloc(extradata_len);
-- if (!avctx->extradata)
-+ if (mp_lavc_set_extradata(avctx, extradata, extradata_len) < 0)
- goto error;
-- memcpy(avctx->extradata, extradata, extradata_len);
- if (strcmp(codec_name, "eia_608") == 0)
- av_dict_set(&opts, "real_time", "1", 0);
- if (avcodec_open2(avctx, codec, &opts) < 0)
diff --git a/media-video/mpv/files/mpv-0.16.0-set-correct-seekable-flags.patch b/media-video/mpv/files/mpv-0.16.0-set-correct-seekable-flags.patch
deleted file mode 100644
index 75ac650ca2ac..000000000000
--- a/media-video/mpv/files/mpv-0.16.0-set-correct-seekable-flags.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-commit a6f8a6977ec59d314b617780c60e374b585ebaca
-Author: wm4 <wm4@nowhere>
-Date: Thu Mar 3 15:30:55 2016 +0100
-
- demux_timeline: set correct seekable flags
-
- Tricky misleading crap.
-
- Fixes #2898.
-
-diff --git a/demux/demux.h b/demux/demux.h
-index e882e90..2c1e3a2 100644
---- a/demux/demux.h
-+++ b/demux/demux.h
-@@ -174,7 +174,7 @@ typedef struct demuxer {
- int64_t filepos; // input stream current pos.
- char *filename; // same as stream->url
- bool seekable;
-- bool partially_seekable; // implies seekable=true
-+ bool partially_seekable; // true if _maybe_ seekable; implies seekable=true
- double start_time;
- // File format allows PTS resets (even if the current file is without)
- bool ts_resets_possible;
-diff --git a/demux/demux_timeline.c b/demux/demux_timeline.c
-index 0c6c398..92cf1e6 100644
---- a/demux/demux_timeline.c
-+++ b/demux/demux_timeline.c
-@@ -344,7 +344,7 @@ static int d_open(struct demuxer *demuxer, enum demux_check check)
- print_timeline(demuxer);
-
- demuxer->seekable = true;
-- demuxer->partially_seekable = true;
-+ demuxer->partially_seekable = false;
-
- demuxer->filetype = meta->filetype ? meta->filetype : meta->desc->name;
-
diff --git a/media-video/mpv/mpv-0.16.0-r2.ebuild b/media-video/mpv/mpv-0.16.0-r2.ebuild
deleted file mode 100644
index 9afd78020f38..000000000000
--- a/media-video/mpv/mpv-0.16.0-r2.ebuild
+++ /dev/null
@@ -1,282 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-
-PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} )
-PYTHON_REQ_USE='threads(+)'
-
-WAF_PV='1.8.12'
-
-inherit fdo-mime gnome2-utils pax-utils python-any-r1 toolchain-funcs waf-utils
-
-DESCRIPTION="Media player based on MPlayer and mplayer2"
-HOMEPAGE="https://mpv.io/"
-
-if [[ ${PV} != *9999* ]]; then
- SRC_URI="https://github.com/mpv-player/mpv/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux"
- DOCS=( RELEASE_NOTES )
-else
- EGIT_REPO_URI="https://github.com/mpv-player/mpv.git"
- inherit git-r3
-fi
-SRC_URI+=" https://waf.io/waf-${WAF_PV}"
-DOCS+=( README.md )
-
-# See Copyright in source tarball and bug #506946. Waf is BSD, libmpv is ISC.
-LICENSE="GPL-2+ BSD ISC"
-SLOT="0"
-IUSE="+alsa archive bluray cdda +cli doc drm dvb +dvd +egl +enca encode gbm
- +iconv jack jpeg lcms +libass libav libcaca libguess libmpv lua luajit
- openal +opengl oss pulseaudio raspberry-pi rubberband samba -sdl selinux
- test uchardet v4l vaapi vdpau vf-dlopen wayland +X xinerama +xscreensaver
- +xv zsh-completion"
-
-REQUIRED_USE="
- || ( cli libmpv )
- egl? ( || ( gbm X wayland ) )
- enca? ( iconv )
- gbm? ( drm egl )
- lcms? ( || ( opengl egl ) )
- libguess? ( iconv )
- luajit? ( lua )
- uchardet? ( iconv )
- v4l? ( || ( alsa oss ) )
- vaapi? ( || ( gbm X wayland ) )
- vdpau? ( X )
- wayland? ( egl )
- xinerama? ( X )
- xscreensaver? ( X )
- xv? ( X )
- zsh-completion? ( cli )
-"
-
-COMMON_DEPEND="
- !libav? ( >=media-video/ffmpeg-2.4:0=[encode?,threads,vaapi?,vdpau?] )
- libav? ( >=media-video/libav-11:0=[encode?,threads,vaapi?,vdpau?] )
- sys-libs/zlib
- alsa? ( >=media-libs/alsa-lib-1.0.18 )
- archive? ( >=app-arch/libarchive-3.0.0:= )
- bluray? ( >=media-libs/libbluray-0.3.0 )
- cdda? ( dev-libs/libcdio-paranoia )
- drm? ( x11-libs/libdrm )
- dvb? ( virtual/linuxtv-dvb-headers )
- dvd? (
- >=media-libs/libdvdnav-4.2.0
- >=media-libs/libdvdread-4.1.0
- )
- egl? ( media-libs/mesa[egl,gbm(-)?,wayland(-)?] )
- iconv? (
- virtual/libiconv
- enca? ( app-i18n/enca )
- libguess? ( >=app-i18n/libguess-1.0 )
- uchardet? ( dev-libs/uchardet )
- )
- jack? ( virtual/jack )
- jpeg? ( virtual/jpeg:0 )
- lcms? ( >=media-libs/lcms-2.6:2 )
- libass? (
- >=media-libs/libass-0.12.1:=[fontconfig,harfbuzz]
- virtual/ttf-fonts
- )
- libcaca? ( >=media-libs/libcaca-0.99_beta18 )
- lua? (
- !luajit? ( || ( =dev-lang/lua-5.1*:= =dev-lang/lua-5.2*:= ) )
- luajit? ( dev-lang/luajit:2 )
- )
- openal? ( >=media-libs/openal-1.13 )
- opengl? ( virtual/opengl )
- pulseaudio? ( media-sound/pulseaudio )
- rubberband? ( >=media-libs/rubberband-1.8.0 )
- samba? ( net-fs/samba )
- sdl? ( media-libs/libsdl2[sound,threads,video,X?,wayland?] )
- v4l? ( media-libs/libv4l )
- vaapi? ( >=x11-libs/libva-1.4.0[drm?,X?,wayland?] )
- wayland? (
- >=dev-libs/wayland-1.6.0
- >=x11-libs/libxkbcommon-0.3.0
- )
- X? (
- x11-libs/libX11
- x11-libs/libXext
- >=x11-libs/libXrandr-1.2.0
- opengl? ( x11-libs/libXdamage )
- vdpau? ( >=x11-libs/libvdpau-0.2 )
- xinerama? ( x11-libs/libXinerama )
- xscreensaver? ( x11-libs/libXScrnSaver )
- xv? ( x11-libs/libXv )
- )
-"
-DEPEND="${COMMON_DEPEND}
- ${PYTHON_DEPS}
- >=dev-lang/perl-5.8
- dev-python/docutils
- virtual/pkgconfig
- doc? ( dev-python/rst2pdf )
- test? ( >=dev-util/cmocka-1.0.0 )
-"
-RDEPEND="${COMMON_DEPEND}
- selinux? ( sec-policy/selinux-mplayer )
-"
-
-PATCHES=(
- "${FILESDIR}/${P}-fix-srt-subtitles-on-libav.patch"
- "${FILESDIR}/${P}-avoid-NULL-dereference-on-wayland.patch"
- "${FILESDIR}/${P}-set-correct-seekable-flags.patch"
- "${FILESDIR}/${P}-fix-bitrate-calculation.patch"
- "${FILESDIR}/${P}-fix-coverart-decoding.patch"
- "${FILESDIR}/${P}-add-missing-audio-reconfig-events.patch"
-)
-
-pkg_pretend() {
- if [[ ${MERGE_TYPE} != "binary" ]] && ! tc-has-tls && use vaapi && use egl; then
- die "Your compiler lacks C++11 TLS support. Use GCC>=4.8.0 or Clang>=3.3."
- fi
-}
-
-src_prepare() {
- cp "${DISTDIR}/waf-${WAF_PV}" "${S}"/waf || die
- chmod +x "${S}"/waf || die
- default
-}
-
-src_configure() {
- local mywafargs=(
- --confdir="${EPREFIX}"/etc/${PN}
- --docdir="${EPREFIX}"/usr/share/doc/${PF}
-
- --disable-gpl3 # Unclear license info. See Gentoo bug 571728.
-
- $(usex cli '' '--disable-cplayer')
- $(use_enable libmpv libmpv-shared)
-
- # See deep down below for build-date
- --disable-libmpv-static
- --disable-static-build
- --disable-optimize # Do not add '-O2' to CFLAGS
- --disable-debug-build # Do not add '-g' to CFLAGS
-
- $(use_enable doc html-build)
- $(use_enable doc pdf-build)
- $(use_enable vf-dlopen vf-dlopen-filters)
- $(use_enable zsh-completion zsh-comp)
- $(use_enable test)
-
- $(use_enable iconv)
- $(use_enable samba libsmbclient)
- $(use_enable lua)
- $(usex luajit '--lua=luajit' '')
- $(use_enable libass)
- $(use_enable libass libass-osd)
- $(use_enable encode encoding)
- $(use_enable bluray libbluray)
- $(use_enable dvd dvdread)
- $(use_enable dvd dvdnav)
- $(use_enable cdda)
- $(use_enable enca)
- $(use_enable libguess)
- $(use_enable uchardet)
- $(use_enable rubberband)
- $(use_enable lcms lcms2)
- --disable-vapoursynth # Only available in overlays
- --disable-vapoursynth-lazy
- $(use_enable archive libarchive)
-
- --enable-libavdevice
-
- # Audio outputs
- $(use_enable sdl sdl2) # Listed under audio, but also includes video
- --disable-sdl1
- $(use_enable oss oss-audio)
- --disable-rsound # Only available in overlays
- $(use_enable pulseaudio pulse)
- $(use_enable jack)
- $(use_enable openal)
- --disable-opensles
- $(use_enable alsa)
- --disable-coreaudio
-
- # Video outputs
- --disable-cocoa
- $(use_enable drm)
- $(use_enable gbm)
- $(use_enable wayland)
- $(use_enable X x11)
- $(use_enable xscreensaver xss)
- $(use_enable X xext)
- $(use_enable xv)
- $(use_enable xinerama)
- $(use_enable X xrandr)
- $(usex opengl "$(use_enable X gl-x11)" '--disable-gl-x11')
- $(usex egl "$(use_enable X egl-x11)" '--disable-egl-x11')
- $(usex egl "$(use_enable gbm egl-drm)" '--disable-egl-drm')
- $(use_enable wayland gl-wayland)
- $(use_enable vdpau)
- $(usex vdpau "$(use_enable opengl vdpau-gl-x11)" '--disable-vdpau-gl-x11')
- $(use_enable vaapi) # See below for vaapi-glx, vaapi-x-egl
- $(usex vaapi "$(use_enable X vaapi-x11)" '--disable-vaapi-x11')
- $(usex vaapi "$(use_enable wayland vaapi-wayland)" '--disable-vaapi-wayland')
- $(usex vaapi "$(use_enable gbm vaapi-drm)" '--disable-vaapi-drm')
- $(use_enable libcaca caca)
- $(use_enable jpeg)
- --disable-android
- $(use_enable raspberry-pi rpi)
- $(use_enable opengl desktop-gl)
-
- # HWaccels
- $(use_enable vaapi vaapi-hwaccel)
- # Automagic VDPAU HW acceleration. See Gentoo bug 558870.
-
- # TV features
- $(use_enable v4l tv)
- $(use_enable v4l tv-v4l2)
- $(use_enable v4l libv4l2)
- $(use_enable v4l audio-input)
- $(use_enable dvb dvbin)
- )
-
- if use vaapi && use X; then
- mywafargs+=(
- $(use_enable opengl vaapi-glx)
- $(use_enable egl vaapi-x-egl)
- )
- fi
-
- # Create reproducible non-live builds
- [[ ${PV} != *9999* ]] && mywafargs+=(--disable-build-date)
-
- waf-utils_src_configure "${mywafargs[@]}"
-}
-
-src_install() {
- waf-utils_src_install
-
- if use cli && use luajit; then
- pax-mark -m "${ED}usr/bin/${PN}"
- fi
-}
-
-pkg_preinst() {
- gnome2_icon_savelist
-}
-
-pkg_postinst() {
- fdo-mime_desktop_database_update
- gnome2_icon_cache_update
-}
-
-pkg_postrm() {
- fdo-mime_desktop_database_update
- gnome2_icon_cache_update
-}
-
-src_test() {
- cd "${S}"/build/test || die
- for test in *; do
- if [[ -x ${test} ]]; then
- ./"${test}" || die "Test suite failed"
- fi
- done
-}