diff options
author | woglinde <woglinde@rhein.zuhause.netz> | 2009-04-18 21:26:47 +0200 |
---|---|---|
committer | woglinde <woglinde@rhein.zuhause.netz> | 2009-06-25 23:29:56 +0200 |
commit | dbd4dfc7c9f1b9bcd9dc514088abb8a1f3c84e91 (patch) | |
tree | 4e4a63826cfd7c1535a21f8269e8207b2c2c4f5f /recipes/libxine | |
parent | 65b9a5b9d38aba409fc218ef11fb57c0e1f17239 (diff) |
libxine: update to version 1.1.16.3
Diffstat (limited to 'recipes/libxine')
-rw-r--r-- | recipes/libxine/libxine_1.1.16.3.bb | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/recipes/libxine/libxine_1.1.16.3.bb b/recipes/libxine/libxine_1.1.16.3.bb new file mode 100644 index 0000000000..21e5a6bd21 --- /dev/null +++ b/recipes/libxine/libxine_1.1.16.3.bb @@ -0,0 +1,39 @@ +require libxine.inc + +PPDIR = "1.26" +PR = "r0" + +FILESPATHPKG .= ":libxine-1.1.16" + +SRC_URI += " \ + file://libxine-arm-configure.patch;patch=1 \ + file://iconv.patch;patch=1 \ + " + +python populate_packages_prepend () { + bb.data.setVar('PKG_libxine', 'libxine', d) + + plugindir = bb.data.expand('${libdir}/xine/plugins/${PPDIR}', d) + do_split_packages(d, plugindir, '^xineplug_(.*)\.so$', 'libxine-plugin-%s', 'Xine plugin for %s', extra_depends='' ) + + vidixdir = bb.data.expand('${libdir}/xine/plugins/${PPDIR}/vidix', d) + do_split_packages(d, vidixdir, '^(.*)\.so$', 'libxine-plugin-%s', 'Xine plugin for %s', extra_depends='' ) + + postdir = bb.data.expand('${libdir}/xine/plugins/${PPDIR}/post', d) + do_split_packages(d, postdir, '^xineplug_(.*)\.so$', 'libxine-plugin-%s', 'Xine plugin for %s', extra_depends='' ) + + fontdir = bb.data.expand('${datadir}/xine/libxine1/fonts', d) + do_split_packages(d, fontdir, '^(.*).xinefont.gz$', 'libxine-font-%s', 'Xine font %s', extra_depends='' ) + +} + +FILES_${PN}-dbg =+ "${libdir}/xine/plugins/${PPDIR}/.debug \ + ${libdir}/xine/plugins/${PPDIR}/post/.debug \ + ${libdir}/xine/plugins/${PPDIR}/vidix/.debug \ + " + +FILES_${PN}-dev =+ "${libdir}/xine/plugins/${PPDIR}/*.a \ + ${libdir}/xine/plugins/${PPDIR}/post/*.a \ + ${libdir}/xine/plugins/${PPDIR}/vidix/*.a \ + " + |