diff options
author | Koen Kooi <koen@openembedded.org> | 2008-06-30 09:46:26 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2008-06-30 09:46:26 +0000 |
commit | a13f7d9a6baa23adfd58bddedfbcb1e0dbee1009 (patch) | |
tree | e65c085bc4087c2941e5fa25bde6ef01cad87793 /packages | |
parent | 104bf0e49f6238e97df033c3f16a874db34c97bc (diff) |
vlc: add davinci port of vlc, it currently depends on NDA bits, but the goal is to build is against the 'public' codec-engine in the future
Diffstat (limited to 'packages')
-rw-r--r-- | packages/vlc/vlc-davinci_0.8.6h.bb | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/packages/vlc/vlc-davinci_0.8.6h.bb b/packages/vlc/vlc-davinci_0.8.6h.bb new file mode 100644 index 0000000000..f2baf10c23 --- /dev/null +++ b/packages/vlc/vlc-davinci_0.8.6h.bb @@ -0,0 +1,57 @@ +DESCRIPTION = "Video player and streamer - GPE edition" +HOMEPAGE = "http://www.videolan.org" +LICENSE = "GPL" +PRIORITY = "optional" +SECTION = "multimedia" + +SRCREV = "844af286e4675d25bbefd9164b4df29609264a86" + +PV = "0.8.6h+${PR}+gitr${SRCREV}" + +DEPENDS = "gnutls tremor faad2 ffmpeg flac liba52 libid3tag libmad mpeg2dec" + +SRC_URI = "git://git.videolan.org/vlc.git;protocol=git;branch=0.8.6-neuros" + +S = "${WORKDIR}/git" + +inherit autotools + +EXTRA_OECONF = "\ + --with-contrib \ + --disable-dvdread \ + --disable-wxwidgets \ + --disable-skins2 \ + --disable-libmpeg2 \ + --disable-dvdnav \ + --disable-x11 --disable-xvideo --disable-opengl --disable-glx \ + --disable-screen --disable-caca \ + --disable-httpd --disable-vlm \ + --disable-freetype \ + --disable-sdl \ + --enable-png \ + --enable-live555 --enable-tremor \ + --disable-mod \ + --enable-davinci --enable-davincifb --enable-davinciresizer \ + --enable-v4l2 --enable-aa --enable-wma --enable-faad \ + --disable-dbus \ +" + + +do_configure() { + ./bootstrap + gnu-configize + libtoolize --force + autoreconf --force -i + oe_runconf +} + +do_stage() { + autotools_stage_all +} + +RCONFLICTS_${PN} = "vlc" + +FILES_${PN} += "${bindir}/vlc \ + ${datadir}/applications \ + ${datadir}/vlc/ \ + " |