mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-17 04:37:19 +00:00
26a72e2dd7
libva is a floating dependency libva requires libavcodec, so enable or disable both in tandem Signed-off-by: Tim Orling <TicoTimo@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
87 lines
2.8 KiB
PHP
87 lines
2.8 KiB
PHP
DESCRIPTION = "Video player and streamer - davinci edition"
|
|
HOMEPAGE = "http://www.videolan.org"
|
|
SECTION = "multimedia"
|
|
|
|
LICENSE = "GPL-2.0"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
|
|
|
|
DEPENDS = "libfribidi libtool libgcrypt libgcrypt-native gst-plugins-bad \
|
|
virtual/libsdl libsdl-image qt4-x11-free dbus dbus-glib libxml2 gnutls \
|
|
tremor faad2 ffmpeg flac libxpm libxinerama fluidsynth alsa-lib \
|
|
libdvdcss libdvdread lua-native lua libidn libnotify gtk+ gnome-vfs \
|
|
libdc1394 libraw1394 avahi libjpeg-turbo xz libmodplug mpeg2dec \
|
|
libmtp libopus orc libusb1 schroedinger taglib \
|
|
tiff xcb-util-keysyms samba"
|
|
|
|
SRC_URI = "http://download.videolan.org/pub/videolan/${BPN}/${PV}/${BP}.tar.xz"
|
|
|
|
inherit autotools gettext pkgconfig
|
|
|
|
ARM_INSTRUCTION_SET = "arm"
|
|
|
|
EXTRA_OECONF = "\
|
|
--enable-dvdread \
|
|
--with-contrib \
|
|
--enable-run-as-root \
|
|
--enable-xvideo \
|
|
--disable-screen --disable-caca \
|
|
--enable-httpd --enable-vlm \
|
|
--enable-freetype \
|
|
--enable-sdl \
|
|
--enable-png \
|
|
--enable-tremor \
|
|
--enable-v4l2 --disable-aa --disable-faad \
|
|
--enable-dbus \
|
|
--without-contrib \
|
|
--without-kde-solid \
|
|
--disable-glx \
|
|
--enable-realrtsp \
|
|
--disable-libtar \
|
|
ac_cv_path_MOC=${STAGING_BINDIR_NATIVE}/moc4 \
|
|
ac_cv_path_RCC=${STAGING_BINDIR_NATIVE}/rcc4 \
|
|
ac_cv_path_UIC=${STAGING_BINDIR_NATIVE}/uic4 \
|
|
"
|
|
|
|
PACKAGECONFIG ?= " live555"
|
|
PACKAGECONFIG[mad] = "--enable-mad,--disable-mad,libmad"
|
|
PACKAGECONFIG[a52] = "--enable-a52,--disable-a52,liba52"
|
|
PACKAGECONFIG[jack] = "--enable-jack,--disable-jack,jack"
|
|
PACKAGECONFIG[live555] = "--enable-live555,--disable-live555,live555"
|
|
PACKAGECONFIG[libass] = "--enable-libass,--disable-libass,libass"
|
|
PACKAGECONFIG[mkv] = "--enable-mkv,--disable-mkv,libmatroska libebml"
|
|
PACKAGECONFIG[postproc] = "--enable-postproc,--disable-postproc,libpostproc"
|
|
PACKAGECONFIG[opencv] = "--enable-opencv,--disable-opencv,opencv"
|
|
PACKAGECONFIG[libva] = "--enable-libva --enable-avcodec,--disable-libva --disable-avcodec,libva libav"
|
|
|
|
do_configure_prepend() {
|
|
cp ${STAGING_DATADIR}/libtool/config.* ${S}/autotools/ || true
|
|
}
|
|
|
|
do_configure_append() {
|
|
sed -i -e s:'$(MOC) $(DEFS) $(CPPFLAGS)':'$(MOC) $(DEFS)'\ -I${B}/include\ -DSYS_LINUX:g ${B}/modules/gui/qt4/Makefile
|
|
sed -i -e s:'${top_builddir_slash}libtool':${TARGET_SYS}-libtool:g ${B}/doltlibtool
|
|
}
|
|
|
|
# This recipe packages vlc as a library as well, so qt4 dependencies
|
|
# can be avoided when only the library is installed.
|
|
PACKAGES =+ "libvlc"
|
|
|
|
LEAD_SONAME_libvlc = "libvlc.so.5"
|
|
FILES_libvlc = "${libdir}/lib*.so.*"
|
|
|
|
FILES_${PN} += "\
|
|
${bindir}/vlc \
|
|
${datadir}/applications \
|
|
${datadir}/vlc/ \
|
|
${datadir}/icons \
|
|
"
|
|
|
|
FILES_${PN}-dbg += "\
|
|
${libdir}/vlc/*/.debug \
|
|
${libdir}/vlc/plugins/*/.debug \
|
|
"
|
|
|
|
FILES_${PN}-staticdev += "\
|
|
${libdir}/vlc/plugins/*/*.a \
|
|
"
|