aboutsummaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-multimedia
AgeCommit message (Collapse)Author
2014-07-31x264: fix SRCREV after upstream repository changePaul Eggleton
The upstream x264 project has re-imported all of their old history, meaning that all of the hashes have changed. Update SRCREV based on the mapping list they have provided at: http://sprunge.us/dGOU Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
2013-08-22x264: explicitly disable swscaleMartin Jansa
* it's creating circular dependency on libav when explicitly enabled * and sometimes it's autodetected when x264 is rebuilt after building libav Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-08-22libav: add PACKAGECONFIG for bzip2 and jackMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-08-22libass: add PACKAGECONFIG for harfbuzzMartin Jansa
* it's autodetected from sysroot * add PACKAGECONFIG to make it deterministic * runtime dependencies for glib-2.0 harfbuzz libffi libicudata libicule libicuuc libstdc++ are added only when harfbuzz is detected Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-08-22jack: add dependency on libsaplerate0 and readlineMartin Jansa
* they are autodetected from sysroot and configure doesn't have option to explicitly disable them, so PACKAGECONFIG won't work without improving configure Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-08-22media-ctl: inherit pkgconfigMartin Jansa
* without pkgconfig it's failing to expand PKG_CHECK_MODULES macro: | media-ctl/0.0.1-r3/git/configure: line 11700: syntax error near unexpected token `libudev,' | media-ctl/0.0.1-r3/git/configure: line 11700: ` PKG_CHECK_MODULES(libudev, libudev, have_libudev=yes, have_libudev=no)' Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-04-22live555: change MIRROR for older versionsPaul Barker
http://download.videolan.org/pub/videolan/testing/contrib/live555/ has dropped everything before live.2011.12.23.tar.gz, change to using http://ftp.freebsd.org/pub/FreeBSD/ports/distfiles/ as it still has live.2011.03.14.tar.gz. Signed-off-by: Paul Barker <paul@paulbarker.me.uk> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-04-19v4l-utils: make it build for AArch64Marcin Juszkiewicz
Signed-off-by: Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-04-15recipes: Unify indentationMartin Jansa
* This change is only aesthetic (unlike indentation in Python tasks). * Some recipes were using tabs. * Some were using 8 spaces. * Some were using mix or different number of spaces. * Make them consistently use 4 spaces everywhere. * Yocto styleguide advises to use tabs (but the only reason to keep tabs is the need to update a lot of recipes). Lately this advice was also merged into the styleguide on the OE wiki. * Using 4 spaces in both types of tasks is better because it's less error prone when someone is not sure if e.g. do_generate_toolchain_file() is Python or shell task and also allows to highlight every tab used in .bb, .inc, .bbappend, .bbclass as potentially bad (shouldn't be used for indenting of multiline variable assignments and cannot be used for Python tasks). * Don't indent closing quote on multiline variables we're quite inconsistent wheater it's first character on line under opening quote or under first non-whitespace character in previous line. Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Acked-by: Koen Kooi <koen@dominion.thruhere.net>
2013-04-15minidlna: move to nonworking directoryMartin Jansa
* distro-less build for qemuarm fails: | Linking minidlna | arm-oe-linux-gnueabi-gcc: error: getifaddr.o: No such file or directory | arm-oe-linux-gnueabi-gcc: error: sql.o: No such file or directory | arm-oe-linux-gnueabi-gcc: error: inotify.o: No such file or directory | make: *** [minidlna] Error 1 * http://comments.gmane.org/gmane.comp.handhelds.openembedded/56989 Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-04-12live555: Add MIRROR for older versionsMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-04-09libmad: removePaul Eggleton
This is largely equivalent to the recipe in OE-Core apart from LICENSE_FLAGS, insignificant patch differences, and an additional patch for avr32 optimisation (and since there appears to be no public layer for an avr32 machine, there's not a great deal of point in preserving the latter). Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-04-09libvpx: do not hardcode -mfloat-api=softfp for ARM buildsMarcin Juszkiewicz
| Configuring for target 'armv7-linux-gcc' | enabling armv7 | enabling armv6 | enabling armv5te | enabling fast_unaligned | Unable to invoke compiler: arm-oe-linux-gnueabi-gcc -march=armv7-a -marm -mthumb-interwork -mfloat-abi=hard -mfpu=neon --sysroot=/home/hrw/HDD/devel/canonical/aarch64/openembedded/build/tmp-eglibc/sysroots/genericarmv7a -O2 -pipe -g -feliminate-unused-debug-types -fPIC -march=armv7-a -mcpu=cortex-a8 -mfpu=neon -mfloat-abi=softfp -O3 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -Wall -Wdeclaration-after-statement -Wdisabled-optimization -Wpointer-arith -Wtype-limits -Wcast-qual -Wno-unused | | Configuration failed. This could reflect a misconfiguration of your | toolchains, improper options selected, or another problem. If you | don't see any useful error messages above, the next step is to look | at the configure error log file (config.err) to determine what | configure was trying to do when it died. Signed-off-by: Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-03-13libav: library packages shouldn't rdepend on libav packageAndreas Oberritter
Otherwise the libav executables (avplay, ffmpeg etc.) get dragged into the image, along with all their dependencies (e.g. SDL). Signed-off-by: Andreas Oberritter <obi@opendreambox.org> Acked-by: Koen Kooi <koen@dominion.thruhere.net> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-03-13libdvdread: update to version 4.2.0Mario Domenech Goulart
The previous version (4.1.3-10) was unbuildable due to this issue: WARNING: Failed to fetch URL git://git.debian-maintainers.org/git/daniel/libdvdread.git;protocol=git;branch=debian, attempting MIRRORS if available ERROR: Fetcher failure: Fetch command failed with exit code 128, output: Cloning into bare repository <snip>/downloads//git2/git.debian-maintainers.org.git.daniel.libdvdread.git... fatal: Unable to look up git.debian-maintainers.org (port 9418) (Name or service not known) Signed-off-by: Mario Domenech Goulart <mario@ossystems.com.br> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-02-19obexd, id3lib: fix LIC_FILES_CHKSUM URLMartin Jansa
* how was it possible to check LIC_FILES_CHKSUMs before? I know it was building, now it fails with: ERROR: Function failed: obexd: LIC_FILES_CHKSUM points to an invalid file: /OE/shr-core/tmp-eglibc/work/xscalete-oe-linux-gnueabi/obexd/0.48-r0/obexd-0.48/ Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-02-16minidlna: Integrated version 1.0.25Andrei Gherzan
Add two patches to fix build. Signed-off-by: Andrei Gherzan <andrei@gherzan.ro> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-02-16x264: Add patch to remove default flags -mcpu=cortex-a8 and -mfpu=neonAndrei Gherzan
-march flag is not in CFLAGS so this will always default to -mcpu=cortex-a8 -mfpu=neon. Obviously wrong for other machines. Signed-off-by: Andrei Gherzan <andrei@gherzan.ro> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-02-05patches: update Upstream-Status to use capital 'S'Martin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-02-01mplayer2: add faad2 to DEPENDSMartin Jansa
* it's autodetected from sysroot after faad2 is built Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-01-27libav: enable x264 encoder supportKoen Kooi
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-01-27x264: add git versionKoen Kooi
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-01-18libav: add support for AArch64Marcin Juszkiewicz
Signed-off-by: Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-01-18libav: move --enable-postproc to 0.8.4 recipeMarcin Juszkiewicz
libav 9.1 does not have this option. Signed-off-by: Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-01-18libav: update to 0.8.4Koen Kooi
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-01-18libpostproc: Remove -disable-yasm as this is a nonexistent flagAndrei Gherzan
Signed-off-by: Andrei Gherzan <andrei@gherzan.ro> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-01-10libass: add missing dependency on fribidiMarcin Juszkiewicz
Signed-off-by: Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-01-06libmad: replace obsolete automake macros with working onesMarko Lindqvist
Add obsolete-automake-macros.patch that replaces automake macros no longer supported by automake-1.13 with modern constructs. Signed-off-by: Marko Lindqvist <cazfi74@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-01-06libmikmod: replace obsolete automake macros with working onesMarko Lindqvist
Add obsolete-automake-macros.patch that replaces automake macros no longer supported by automake-1.13 with modern constructs. Signed-off-by: Marko Lindqvist <cazfi74@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2012-12-25pavucontrol: upgrade to 1.0Martin Jansa
* also fixes build without lynx: | make[2]: Entering directory `/OE/shr-core/tmp-eglibc/work/x86_64-oe-linux/pavucontrol/0.9.10+git-r1/git/doc' | make[2]: *** No rule to make target `README', needed by `all-am'. Stop. | make[2]: Leaving directory `/OE/shr-core/tmp-eglibc/work/x86_64-oe-linux/pavucontrol/0.9.10+git-r1/git/doc' Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2012-12-23libass: upgrade to 0.10.1Martin Jansa
* old version wasn't compatible with libpng-1.5 from oe-core * COPYING was updated with ISC text old 0.9.11 was GPLv2 Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2012-12-16libsdl-mixer: update to upstream version 1.2.12Marko Lindqvist
Now uses zlib license. Dropped fix-flac-madness patch as upsream configure check in question now uses AC_TRY_COMPILE instead of AC_TRY_RUN. Signed-off-by: Marko Lindqvist <cazfi74@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2012-12-16libsdl-image: update to upstream version 1.2.12Marko Lindqvist
Now uses zlib license. Works with libpng15. Signed-off-by: Marko Lindqvist <cazfi74@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2012-12-16libav: remove trailing backslash from commentsMartin Jansa
* http://lists.linuxtogo.org/pipermail/bitbake-devel/2012-December/003954.html Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2012-12-11vlc: add fluidsynth and alsa-lib to DEPENDS for reproducible buildsMartin Jansa
* fluidsynth can be autodetected Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2012-12-11vlc: disable kde-solidMartin Jansa
* fixes: WARNING: QA Issue: vlc: Files/directories were installed but not shipped /usr/share/kde4 /usr/share/kde4/apps /usr/share/kde4/apps/solid /usr/share/kde4/apps/solid/actions /usr/share/kde4/apps/solid/actions/vlc-opendvd.desktop /usr/share/kde4/apps/solid/actions/vlc-openvcd.desktop /usr/share/kde4/apps/solid/actions/vlc-opencda.desktop Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2012-12-04mplayer2: move lame into ENTERPRISE_DISTRO checkMarcin Juszkiewicz
Lame was in two places in build dependencies. Signed-off-by: Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org>
2012-10-28Replace bb.data.* with d.*Paul Eggleton
Used sed expression given here: http://lists.linuxtogo.org/pipermail/openembedded-core/2011-November/012373.html Plus an additional expression for .expand. Full expression is: sed \ -e 's:bb.data.\(setVar([^,]*,[^,]*\), \([^ )]*\) *):\2.\1):g' \ -e 's:bb.data.\(setVarFlag([^,]*,[^,]*,[^,]*\), \([^) ]*\) *):\2.\1):g' \ -e 's:bb.data.\(getVar([^,]*\), \([^, ]*\) *,\([^)]*\)):\2.\1,\3):g' \ -e 's:bb.data.\(getVarFlag([^,]*,[^,]*\), \([^, ]*\) *,\([^)]*\)):\2.\1,\3):g' \ -e 's:bb.data.\(getVarFlag([^,]*,[^,]*\), \([^) ]*\) *):\2.\1):g' \ -e 's:bb.data.\(getVar([^,]*\), \([^) ]*\) *):\2.\1):g' \ -e 's:bb.data.\(expand([^,]*\), \([^ )]*\) *):\2.\1):g' \ -i `grep -ril bb.data *` Some minor correction in systemd.bbclass was needed for some expressions that didn't quite match the regex in the desired way; additionally a few instances were manually changed. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
2012-10-19PACKAGES_DYNAMIC: use regexp not globMartin Jansa
* bitbake uses PACKAGES_DYNAMIC as regexp ^ could make matching faster (and it will be more clear that we're expecting regexp not glob) * made all those last '-' optional, use .* (or nothing) * use += instead of = in most cases to keep ${PN}-locale from bitbake.conf:PACKAGES_DYNAMIC = "^${PN}-locale-.*" Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2012-10-10libav: Change the PACKAGES_DYNAMIC expression to be more restrictOtavio Salvador
Using 'lib*' we end having problem with every other package that generate libraries dynamically thus we changed it to match the library prefixes. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-10-10libav: Update git version to 2012-10-04 snapshotOtavio Salvador
This package depends on libpostproc to ensure same set of libraries is provided for runtime. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-10-10libpostproc: Add git versionOtavio Salvador
This has been split from libav code during development of 0.9 series. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-10-05v4l-utils: fix build breakageKoen Kooi
Update to a newer SRCREV for fixed and get autotools support as a bonus. Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-10-05vlc: bump PR due libav updateOtavio Salvador
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-10-05mplayer2: bump PR due libav updateOtavio Salvador
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-10-05gst-ffmpeg: bump PR due libav updateOtavio Salvador
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-10-05libav: Update to 0.8.3 versionOtavio Salvador
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-10-05libav: Drop 0.6.5 versionOtavio Salvador
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-10-05libav: Convert to use dynamic packages to split librariesOtavio Salvador
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-10-03media-ctl: Update to latest upstream to fix build with latest autotoolsGary Thomas
Signed-off-by: Gary Thomas <gary@mlbassoc.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>