diff options
author | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2008-06-30 22:07:04 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2008-06-30 22:07:04 +0000 |
commit | d4f7af436d07c7bc4dd61ac45bff3414a1c12c74 (patch) | |
tree | 049f5903fea26153466932a6b271c49f10b75ba8 /packages/vlc | |
parent | 873ce28c40814edb45f534003450318c6e9b2650 (diff) | |
parent | 7339a83b4095582728045cee92aa215373607caf (diff) |
merge of '08199c52a592fe71e2675200cf618a439d710884'
and '3e5f187370604cf4577025ebc49d90ca52a72d4d'
Diffstat (limited to 'packages/vlc')
-rw-r--r-- | packages/vlc/vlc-davinci_0.8.6h.bb | 59 |
1 files changed, 59 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..9ed6d46fd2 --- /dev/null +++ b/packages/vlc/vlc-davinci_0.8.6h.bb @@ -0,0 +1,59 @@ +DESCRIPTION = "Video player and streamer - GPE edition" +HOMEPAGE = "http://www.videolan.org" +LICENSE = "GPL" +PRIORITY = "optional" +SECTION = "multimedia" + +SRCREV = "116b6dff4996f494b54fc0f05695ba792086ea9e" + +PR = "r1" + +PV = "0.8.6h+${PR}+gitr${SRCREV}" + +DEPENDS = "dbus libxml2 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 \ + --enable-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/ \ + " |