From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from relay1.mentorg.com ([192.94.38.131]) by linuxtogo.org with esmtp (Exim 4.69) (envelope-from ) id 1OqpnL-0007Mx-J4 for openembedded-devel@lists.openembedded.org; Wed, 01 Sep 2010 18:04:20 +0200 Received: from nat-dem.mentorg.com ([139.181.124.2] helo=eu2-mail.mgc.mentorg.com) by relay1.mentorg.com with esmtp id 1Oqpmm-0000Tt-35 from Noor_Ahsan@mentor.com for openembedded-devel@lists.openembedded.org; Wed, 01 Sep 2010 09:03:40 -0700 Received: from localhost.localdomain ([137.202.156.152]) by eu2-mail.mgc.mentorg.com with Microsoft SMTPSVC(6.0.3790.3959); Wed, 1 Sep 2010 18:03:38 +0200 From: Noor Ahsan To: openembedded-devel@lists.openembedded.org Date: Wed, 1 Sep 2010 22:02:52 +0600 Message-Id: <1283356972-28880-1-git-send-email-noor_ahsan@mentor.com> X-Mailer: git-send-email 1.6.3.3 X-OriginalArrivalTime: 01 Sep 2010 16:03:38.0840 (UTC) FILETIME=[3D861580:01CB49EF] X-SA-Exim-Connect-IP: 192.94.38.131 X-SA-Exim-Mail-From: Noor_Ahsan@mentor.com X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on discovery X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=AWL,BAYES_00 autolearn=ham version=3.2.5 X-SA-Exim-Version: 4.2.1 (built Wed, 25 Jun 2008 17:20:07 +0000) X-SA-Exim-Scanned: Yes (on linuxtogo.org) Subject: [PATCH] sip-native: Run oe-stylize script on the recipe and modify the recipe accordingly. X-BeenThere: openembedded-devel@lists.openembedded.org X-Mailman-Version: 2.1.11 Precedence: list Reply-To: openembedded-devel@lists.openembedded.org List-Id: Using the OpenEmbedded metadata to build Distributions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2010 16:04:20 -0000 * Run oe-stylize script on the recipe and updated the recipe according to the output of the script. Signed-off-by: Noor Ahsan --- recipes/sip/sip-native_4.7.9.bb | 34 +++++++++++++++++----------------- 1 files changed, 17 insertions(+), 17 deletions(-) diff --git a/recipes/sip/sip-native_4.7.9.bb b/recipes/sip/sip-native_4.7.9.bb index 0b025df..2d78ac1 100644 --- a/recipes/sip/sip-native_4.7.9.bb +++ b/recipes/sip/sip-native_4.7.9.bb @@ -1,35 +1,35 @@ DESCRIPTION = "SIP is a C++/Python Wrapper Generator" -SECTION = "devel" -HOMEPAGE = "http://www.riverbankcomputing.co.uk/sip" AUTHOR = "Phil Thompson" +HOMEPAGE = "http://www.riverbankcomputing.co.uk/sip" +SECTION = "devel" PRIORITY = "optional" LICENSE = "GPL" PR = "ml0" -DEFAULT_PREFERENCE = "-1" - SRC_URI = "http://www.riverbankcomputing.co.uk/static/Downloads/sip4/sip-${PV}.tar.gz" +SRC_URI[md5sum] = "597d7ff7edb42a18421c806ffd18a136" +SRC_URI[sha256sum] = "7faaccb6f17296399051bd076a7f41e0f6d95a28eda3e30468f1bd7cf45898e1" + S = "${WORKDIR}/sip-${PV}/sipgen" inherit qt4x11 native -export BUILD_SYS -export HOST_SYS -export STAGING_LIBDIR -export STAGING_INCDIR - EXTRA_QMAKEVARS_POST += "DESTDIR=${S} CONFIG=console" do_configure_prepend() { - cat sipgen.sbf | sed s,target,TARGET, | sed s,sources,SOURCES, | sed s,headers,HEADERS, > sipgen.pro + cat sipgen.sbf | sed s,target,TARGET, | sed s,sources,SOURCES, | sed s,headers,HEADERS, > sipgen.pro } - do_stage() { - install -m 0755 sip ${STAGING_BINDIR_NATIVE}/sip - cd ${WORKDIR}/sip-${PV} && python configure.py - install -d ${STAGING_PYDIR}/site-packages - install -m 0755 sip*.py ${STAGING_PYDIR}/site-packages + install -m 0755 sip ${STAGING_BINDIR_NATIVE}/sip + cd ${WORKDIR}/sip-${PV} && python configure.py + install -d ${STAGING_PYDIR}/site-packages + install -m 0755 sip*.py ${STAGING_PYDIR}/site-packages } -SRC_URI[md5sum] = "597d7ff7edb42a18421c806ffd18a136" -SRC_URI[sha256sum] = "7faaccb6f17296399051bd076a7f41e0f6d95a28eda3e30468f1bd7cf45898e1" +export BUILD_SYS +export HOST_SYS +export STAGING_LIBDIR +export STAGING_INCDIR + +DEFAULT_PREFERENCE = "-1" + -- 1.6.3.3