Openembedded Devel Discussions
 help / color / mirror / Atom feed
From: Khem Raj <raj.khem@gmail.com>
To: openembedded-devel@lists.openembedded.org
Subject: Re: [PATCH v3] linphone: added recipe for v3.4.3
Date: Wed, 22 Jun 2011 07:41:15 -0700	[thread overview]
Message-ID: <4E01FF0B.5050604@gmail.com> (raw)
In-Reply-To: <20110622131659.4399ce87@guibc>

On 06/22/2011 04:16 AM, Guillaume BERAUDO wrote:
> Hi all,
>
>
> What is the process for getting this patch merged?
>
>

send pull request for meta-oe

> Regards,
>
> Guillaume
>
> Le Wed, 15 Jun 2011 11:02:21 +0200,
> Guillaume Beraudo<guillaume.beraudo@belledonne-communications.com>  a
> écrit :
>
>> Recipe support linphone built with video support and without GTK.
>>
>> * included IGEPv2 specific patch to get audio playback at 8KHz rate.
>> * included infrastructure to create flavoured recipes
>>          - with(out) video
>>          - with(out) gtk
>> * removed dependency on:
>>          - obsolete disable-gtk-doc.patch;
>>          - cryptic b64_assert.patch;
>>          - already upstream preferences-segv.patch;
>>          - already upstream fix.unused.variable.patch
>> ---
>>   recipes/linphone/files/igep0020/alsa_8khz.patch |   13 +++++
>>   recipes/linphone/linphone-common.inc            |   61
>> +++++++++++++++++++++++
>> recipes/linphone/linphone-common_3.4.3.inc      |   11 ++++
>> recipes/linphone/linphone-nogtk_3.4.3.bb        |   15 ++++++ 4 files
>> changed, 100 insertions(+), 0 deletions(-) create mode 100644
>> recipes/linphone/files/igep0020/alsa_8khz.patch create mode 100644
>> recipes/linphone/linphone-common.inc create mode 100644
>> recipes/linphone/linphone-common_3.4.3.inc create mode 100644
>> recipes/linphone/linphone-nogtk_3.4.3.bb
>>
>> diff --git a/recipes/linphone/files/igep0020/alsa_8khz.patch
>> b/recipes/linphone/files/igep0020/alsa_8khz.patch new file mode 100644
>> index 0000000..17774d4
>> --- /dev/null
>> +++ b/recipes/linphone/files/igep0020/alsa_8khz.patch
>> @@ -0,0 +1,13 @@
>> +--- linphone/mediastreamer2/src/alsa.c_orig	2011-05-24
>> 12:39:33.824600109 +0200 ++++
>> linphone/mediastreamer2/src/alsa.c	2011-05-24
>> 12:40:04.760407404 +0200 +@@ -32,8 +32,8 @@
>> + /*in case of troubles with a particular driver, try incrementing
>> ALSA_PERIOD_SIZE
>> + to 512, 1024, 2048, 4096...
>> + then try incrementing the number of periods*/
>> +-#define ALSA_PERIODS 8
>> +-#define ALSA_PERIOD_SIZE 256
>> ++#define ALSA_PERIODS 4
>> ++#define ALSA_PERIOD_SIZE 512
>> +
>> + /*uncomment the following line if you have problems with an alsa
>> driver
>> + having sound quality trouble:*/
>> diff --git a/recipes/linphone/linphone-common.inc
>> b/recipes/linphone/linphone-common.inc new file mode 100644
>> index 0000000..a9d0f5b
>> --- /dev/null
>> +++ b/recipes/linphone/linphone-common.inc
>> @@ -0,0 +1,61 @@
>> +inherit autotools pkgconfig gettext
>> +#export PKG_CONFIG=${STAGING_BINDIR_NATIVE}/pkg-config
>> +
>> +SECTION = "x11/network"
>> +SECTION_liblinphone = "libs/network"
>> +SECTION_libmediastreamer = "libs/network"
>> +SECTION_libortp = "libs/network"
>> +SECTION_linphonec =  "console/network"
>> +
>> +DEPENDS = "intltool readline libosip2 libexosip2 speex alsa-lib \
>> +	${@base_conditional('LINPHONE_FLAVOUR_WITH_VIDEO', '1', '
>> libxv ffmpeg libv4l', '', d)} \
>> +	${@base_conditional('LINPHONE_FLAVOUR_WITH_GTK', '1', '
>> gtk+', '', d)} \
>> +	"
>> +
>> +PROVIDES = "linphonec liblinphone libmediastreamer libortp \
>> +	${@base_conditional('LINPHONE_FLAVOUR_WITH_GTK', '1', '
>> linphone', '', d)}" +
>> +SRC_URI_append_igep0020 = " file://alsa_8khz.patch"
>> +
>> +
>> +do_install_append(){
>> +	install -d ${D}${bindir}
>> +	install -m 0755 ${S}/coreapi/.libs/test_ecc
>> ${D}${bindir}/test_ecc
>> +	install -m 0755 ${S}/coreapi/.libs/test_lsd
>> ${D}${bindir}/test_lsd +}
>> +
>> +EXTRA_OECONF = " \
>> +	${@base_conditional('LINPHONE_FLAVOUR_WITH_VIDEO', '1',
>> '--with-ffmpeg=${STAGING_DIR_HOST}${layout_exec_prefix}
>> --enable-video', '--disable-video', d)} \
>> +        --enable-alsa \
>> +        --with-osip=${STAGING_DIR_HOST}${layout_exec_prefix} \
>> +        --with-readline=${STAGING_DIR_HOST}${layout_exec_prefix} \
>> +        --with-speex=${STAGING_DIR_HOST}${layout_exec_prefix} \
>> +        --disable-manual \
>> +	--enable-console_ui=yes \
>> +	--enable-gtk_ui=${@base_conditional('LINPHONE_FLAVOUR_WITH_GTK',
>> '1', 'yes', 'no', d)} \
>> +	--with-realprefix=/usr \
>> +	"
>> +
>> +PACKAGES = " \
>> +	${@base_conditional('LINPHONE_FLAVOUR_WITH_GTK', '1',
>> '${PN}-dbg ${PN} ${PN}-doc ${PN}-dev ${PN}-locale', '', d)} \
>> +	${PN}-console linphone-rings liblinphone
>> libmediastreamer-bin libmediastreamer libortp ${PN}-utils" +
>> +FILES_${PN} = " \
>> +	    ${bindir}/linphone \
>> +            ${datadir}/linphone \
>> + 	    ${datadir}/pixmaps \
>> +	    ${datadir}/applications \
>> +	    ${datadir}/gnome/apps \
>> +	    ${datadir}/sounds/linphone/hello8000.wav \
>> +	    ${datadir}/sounds/linphone/hello16000.wav \
>> +	    ${datadir}/images/nowebcamCIF.jpg \
>> +	    "
>> +
>> +FILES_${PN}-console = "${bindir}/linphonec ${bindir}/linphonecsh
>> ${bindir}/sipomatic ${datadir}/sounds/linphone/ringback.wav"
>> +FILES_${PN}-rings = "${datadir}/sounds/linphone/rings"
>> +FILES_liblinphone = "${libdir}/liblinphone.so.*"
>> +FILES_libmediastreamer-bin = "/usr/libexec/mediastream"
>> +FILES_libmediastreamer = "${libdir}/libmediastreamer.so.*"
>> +FILES_libortp = "${libdir}/libortp.so.*" +FILES_${PN}-dev +=
>> "${libdir}/*.a ${libdir}/*.la ${libdir}/pkgconfig ${includedir}"
>> +FILES_${PN}-utils = "${bindir}/test_ecc ${bindir}/test_lsd" diff
>> --git a/recipes/linphone/linphone-common_3.4.3.inc
>> b/recipes/linphone/linphone-common_3.4.3.inc new file mode 100644
>> index 0000000..bbf6e8d --- /dev/null
>> +++ b/recipes/linphone/linphone-common_3.4.3.inc
>> @@ -0,0 +1,11 @@
>> +
>> +SRC_URI =
>> "${SAVANNAH_MIRROR}/releases/linphone/3.4.x/sources/linphone-3.4.3.tar.gz
>> \
>> +	"
>> +
>> +SRC_URI[md5sum] = "66e21f36d62c2094f7b4360262c46f20"
>> +SRC_URI[sha256sum] =
>> "92e7a0a01f2bb53bfaa4d7de4972e63ad528731154c36e05a9b6ba097e296692" +
>> +S = "${WORKDIR}/linphone-3.4.3"
>> +
>> +
>> +require linphone-common.inc
>> diff --git a/recipes/linphone/linphone-nogtk_3.4.3.bb
>> b/recipes/linphone/linphone-nogtk_3.4.3.bb new file mode 100644
>> index 0000000..83ad0c3
>> --- /dev/null
>> +++ b/recipes/linphone/linphone-nogtk_3.4.3.bb
>> @@ -0,0 +1,15 @@
>> +DESCRIPTION = "Audio/video SIP-based IP phone (console edition)"
>> +HOMEPAGE = "http://www.linphone.org/?lang=us"
>> +LICENSE = "GPLv2"
>> +PR="r1"
>> +
>> +DEFAULT_PREFERENCE = "1"
>> +
>> +# Build without GTK
>> +LINPHONE_FLAVOUR_WITH_GTK = '0'
>> +
>> +# Build with video
>> +LINPHONE_FLAVOUR_WITH_VIDEO = '1'
>> +
>> +
>> +require linphone-common_3.4.3.inc
>
>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel




  reply	other threads:[~2011-06-22 14:44 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <guillaume.beraudo@belledonne-communications.com>
2011-06-07 12:13 ` [PATCH] linphone: added recipe for v3.4.3 Guillaume Beraudo
2011-06-07 12:41   ` Martin Jansa
2011-06-07 12:57     ` Guillaume BERAUDO
2011-06-07 13:09       ` Martin Jansa
2011-06-07 13:34         ` Guillaume BERAUDO
2011-06-07 13:23     ` Guillaume BERAUDO
2011-06-07 13:33       ` Martin Jansa
2011-06-07 14:23         ` Guillaume BERAUDO
2011-06-07 15:18           ` Martin Jansa
2011-06-08  8:29             ` Guillaume BERAUDO
2011-06-07 12:42   ` Koen Kooi
2011-06-07 12:59     ` Guillaume BERAUDO
2011-06-15  8:42 ` [PATCH v2] " Guillaume Beraudo
2011-06-15  8:47   ` Koen Kooi
2011-06-15  8:54     ` Guillaume BERAUDO
2011-06-15  8:54   ` Phil Blundell
2011-06-15  9:04     ` Guillaume BERAUDO
2011-06-15  9:02 ` [PATCH v3] " Guillaume Beraudo
2011-06-22 11:16   ` Guillaume BERAUDO
2011-06-22 14:41     ` Khem Raj [this message]
2011-06-23  8:28       ` Guillaume BERAUDO

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4E01FF0B.5050604@gmail.com \
    --to=raj.khem@gmail.com \
    --cc=openembedded-devel@lists.openembedded.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox