diff options
author | Koen Kooi <koen@openembedded.org> | 2009-06-12 13:03:42 +0200 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2009-06-12 13:03:42 +0200 |
commit | 649b44a943f5a2cca45b346b903e6cdee7d5ed21 (patch) | |
tree | 13c9c5d6c1745a39a87f19fcbdba20f4dbffcdfb /recipes/dsplink/gstreamer-ti_svn.bb | |
parent | 00a803f6a91c45b035de423f4ca808d79a51e894 (diff) |
dsplink: move dir to 'dvsdk' to make merging the TI OE trees easier
Diffstat (limited to 'recipes/dsplink/gstreamer-ti_svn.bb')
-rw-r--r-- | recipes/dsplink/gstreamer-ti_svn.bb | 57 |
1 files changed, 0 insertions, 57 deletions
diff --git a/recipes/dsplink/gstreamer-ti_svn.bb b/recipes/dsplink/gstreamer-ti_svn.bb deleted file mode 100644 index 493e4fb59a..0000000000 --- a/recipes/dsplink/gstreamer-ti_svn.bb +++ /dev/null @@ -1,57 +0,0 @@ -DEPENDS = "ti-codec-engine ti-dmai gstreamer gst-plugins-base gst-plugins-good gst-plugins-ugly libid3tag liboil libmad" - -SRC_URI = "svn://gforge.ti.com/svn/gstreamer_ti/trunk;module=gstreamer_ti;proto=https;user=anonymous;pswd='' \ - " -SRCREV = "239" - -PR = "${MACHINE_KERNEL_PR}" - -# Again, no '.' in PWD allowed :( -PV = "0+svnr${SRCREV}" - -S = "${WORKDIR}/gstreamer_ti/ti_build/ticodecplugin" - -inherit autotools - -require ti-paths.inc - -export DMAI_INSTALL_DIR = "${STAGING_DIR}/${MULTIMACH_TARGET_SYS}/ti-dmai" -export CE_INSTALL_DIR="${STAGING_DIR}/${MULTIMACH_TARGET_SYS}/ti-codec-engine" -export FC_INSTALL_DIR="${STAGING_DIR}/${MULTIMACH_TARGET_SYS}/ti-codec-engine/cetools" -export CODEC_INSTALL_DIR="${STAGING_DIR}/${MULTIMACH_TARGET_SYS}/ti-codec-combos" - -export XDC_TARGET = "gnu.targets.arm.GCArmv5T" - -XDC_PLATFORM = "foo" -# Assume every TI armv7a cpu is a 3530 -XDC_PLATFORM_armv7a = "ti.platforms.evm3530" -export XDC_PLATFORM - -# We need to add this to config.bld: -#GCArmv5T.cc.$unseal("opts"); -#GCArmv5T.cc.opts = "SEDME_CCARCH"; -#GCArmv5T.cc.$seal("opts"); - -do_configure_prepend() { - for i in ${S}/src/*.cfg ; do - sed -i -e s:\./encodeCombo.x64P:${datadir}/ti-codec-combos/encodeCombo.x64P:g \ - -e s:\./decodeCombo.x64P:${datadir}/ti-codec-combos/decodeCombo.x64P:g \ - $i - done -} - -do_compile_prepend() { - for i in $(find ${S} -name "config.bld") ; do - sed -i -e s:SEDME_CCARCH:'${TARGET_CCARCH}': $i - done -} - -CPPFLAGS_append = " -DPlatform_${PLATFORM}" - -PACKAGE_ARCH = "${MACHINE_ARCH}" - -RDEPENDS_${PN} = "ti-dmai" -FILES_${PN} += "${libdir}/gstreamer-0.10/*.so" -FILES_${PN}-dev += "${libdir}/gstreamer-0.10/*.a ${libdir}/gstreamer-0.10/*.la" -FILES_${PN}-dbg += "${libdir}/gstreamer-0.10/.debug" - |