tentative commit with Guillaume's fixes for bitbake

This commit is contained in:
Guillaume BIENKOWSKI 2013-12-11 11:06:01 +01:00
parent 8a479b2347
commit 107400a585
10 changed files with 1 additions and 127 deletions

View file

@ -1,18 +0,0 @@
require recipes-images/angstrom/console-image.bb
IMAGE_INSTALL += " \
kbd \
kbd-keymaps \
keymaps \
linphonec \
linphone-plugins \
linphone-rings \
"
rootfs_postprocess() {
gunzip -c ${IMAGE_ROOTFS}/usr/share/keymaps/i386/dvorak/dvorak.map.gz > ${IMAGE_ROOTFS}/etc/keymap-2.6.map
}
ROOTFS_POSTPROCESS_COMMAND += "rootfs_postprocess; "
export IMAGE_BASENAME = "console-linphone-image"

View file

@ -10,6 +10,6 @@ do_configure_prepend () {
}
#Required to avoid compile errors on May 2011.
EXTRA_OECONF +=" --disable-strict"
EXTRA_OECONF +=" --disable-strict --disable-glx"
LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"

View file

@ -1,16 +0,0 @@
## THIS unusable work in progress ##
DESCRIPTION = "Audio/video SIP-based IP phone (console edition)"
HOMEPAGE = "http://www.linphone.org/?lang=us"
LICENSE = "GPLv2"
PR="r14"
DEFAULT_PREFERENCE = "3"
OVERRIDES_append = ":console"
OVERRIDES_append = ":gsm"
OVERRIDES_append = ":video"
OVERRIDES_append = ":x11"
#PARALLEL_MAKE="V=1"
require linphone-common_git.inc

View file

@ -1,15 +0,0 @@
## THIS unusable work in progress ##
DESCRIPTION = "Audio/video SIP-based IP phone (console edition)"
HOMEPAGE = "http://www.linphone.org/?lang=us"
LICENSE = "GPLv2"
PR="r14"
DEFAULT_PREFERENCE = "3"
OVERRIDES_append = ":console"
OVERRIDES_append = ":gsm"
OVERRIDES_append = ":video"
#PARALLEL_MAKE="V=1"
require linphone-common_git.inc

View file

@ -1,14 +0,0 @@
DESCRIPTION = "Audio/video SIP-based IP phone (console edition)"
HOMEPAGE = "http://www.linphone.org/?lang=us"
LICENSE = "GPLv2"
PR="r15"
DEFAULT_PREFERENCE = "3"
OVERRIDES_append = ":console"
OVERRIDES_append = ":gsm"
#PARALLEL_MAKE="V=1"
require linphone-common_git.inc

View file

@ -1,13 +0,0 @@
## THIS unusable work in progress ##
DESCRIPTION = "Audio/video SIP-based IP phone (console edition)"
HOMEPAGE = "http://www.linphone.org/?lang=us"
LICENSE = "GPLv2"
PR="r14"
DEFAULT_PREFERENCE = "3"
OVERRIDES_append = ":console"
#PARALLEL_MAKE="V=1"
require linphone-common_git.inc

View file

@ -4,7 +4,6 @@ S = "${WORKDIR}/msamr-0.0.2"
do_configure_prepend () {
./autogen.sh
libtoolize --copy --force
}
OVERRIDES_append = ":wideband"

View file

@ -4,7 +4,6 @@ S = "${WORKDIR}/msamr-0.0.2"
do_configure_prepend () {
./autogen.sh
libtoolize --copy --force
}
DEFAULT_PREFERENCE="-1"

View file

@ -4,7 +4,6 @@ S = "${WORKDIR}/msilbc-2.0.3"
do_configure_prepend () {
./autogen.sh
libtoolize --copy --force
}
DEFAULT_PREFERENCE="-1"

View file

@ -1,47 +0,0 @@
DESCRIPTION = "Speex is an Open Source/Free Software patent-free audio compression format designed for speech."
SECTION = "libs/multimedia"
LICENSE = "BSD"
HOMEPAGE = "http://www.speex.org"
DEPENDS = "libogg"
PV = "1.1+git"
PR = "r4"
SPEEX_TMP_DIR="/tmp/SPEEX_TMP"
SRC_URI = "file://${SPEEX_TMP_DIR}/speex.tar.gz"
S = "${WORKDIR}/speex"
LIC_FILES_CHKSUM = "file://COPYING;md5=314649d8ba9dd7045dfb6683f298d0a8"
PARALLEL_MAKE = ""
inherit autotools pkgconfig
LEAD_SONAME = "libspeex.so"
#check for TARGET_FPU=soft and inform configure of the result so it can disable some floating points
EXTRA_OECONF += "--enable-fixed-point"
EXTRA_OECONF_append_armv5te = " --enable-arm5e-asm"
EXTRA_OECONF_append_armv7a = " --enable-armv7neon-asm"
do_fetch_prepend () {
import os,bb
bb.note("Hack preparing clone in %s" %"${SPEEX_TMP_DIR}")
os.system("rm -rf ${SPEEX_TMP_DIR}")
os.system("mkdir -p ${SPEEX_TMP_DIR}")
os.system("cd ${SPEEX_TMP_DIR}; git clone --depth 1 git://git.linphone.org/speex")
os.system("cd ${SPEEX_TMP_DIR}/speex; ./autogen.sh")
os.system("cd ${SPEEX_TMP_DIR}; tar czf speex.tar.gz --exclude .git speex")
}
do_configure_append() {
sed -i s/"^OGG_CFLAGS.*$"/"OGG_CFLAGS = "/g Makefile */Makefile */*/Makefile
sed -i s/"^OGG_LIBS.*$"/"OGG_LIBS = -logg"/g Makefile */Makefile */*/Makefile
find . -name "Makefile" -exec sed -i s,-I/usr/include,, {} \;
}
PACKAGES =+ "${PN}-utils ${PN}-dsp"
FILES_${PN}-utils = "${bindir}/speex*"
FILES_${PN}-dsp = "${libdir}/libspeexdsp.so.*"
FILES_${PN} = "${libdir}/libspeex.so.*"