From patchwork Wed Apr 23 07:22:05 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: christian.braunersorensen@prevas.dk X-Patchwork-Id: 341712 X-Patchwork-Delegate: esben@haabendal.dk Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hugin.dotsrc.org (hugin.dotsrc.org [130.225.254.102]) by ozlabs.org (Postfix) with ESMTP id 11D001400FA for ; Wed, 23 Apr 2014 17:22:16 +1000 (EST) Received: from hugin.dotsrc.org (localhost [127.0.0.1]) by hugin.dotsrc.org (Postfix) with ESMTP id 421E43F84D for ; Wed, 23 Apr 2014 09:22:14 +0200 (CEST) X-Original-To: dev@oe-lite.org Delivered-To: dev@oe-lite.org Received: from mail01.prevas.se (mail01.prevas.se [62.95.78.3]) by hugin.dotsrc.org (Postfix) with ESMTPS id B3A703FD5F for ; Wed, 23 Apr 2014 09:22:10 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=prevas.dk; i=@prevas.dk; l=1618; q=dns/txt; s=ironport1; t=1398237729; x=1429773729; h=from:to:subject:date:message-id:in-reply-to:references: mime-version:content-transfer-encoding; bh=VZUdLN223rUnIt/eIrxwx7/w7hp5q3tTIeST32HZZaQ=; b=nXltfdHN+xYwfmAMWM1S7TgL6Ms3VjQan9Ga9ogx45RWSdpuONa5MGLa KNznXsSbKxMB9YsOIDkJZVAiPCfe/J3TZTwVFigIEUllJyt2Zk9G/eYjx 47r6iwJ+Q5zw5M1oB98fwCMP0nKAO4KKib7J0PJl4LZjDU+99IpDjI9Wk I=; X-IronPort-AV: E=Sophos;i="4.97,910,1389740400"; d="scan'208";a="4629893" Received: from vmprevas3.prevas.se (HELO smtp.prevas.se) ([172.16.8.103]) by ironport1.prevas.se with ESMTP/TLS/AES128-SHA; 23 Apr 2014 09:22:08 +0200 Received: from localhost (172.16.10.102) by smtp.prevas.se (172.16.8.105) with Microsoft SMTP Server id 14.2.347.0; Wed, 23 Apr 2014 09:22:09 +0200 Received: by localhost (Postfix, from userid 30007) id 7DBD8681EC6; Wed, 23 Apr 2014 07:22:09 +0000 (UTC) From: To: Subject: [PATCH 2/4] gettext: Move FILES contents to version specific file Date: Wed, 23 Apr 2014 07:22:05 +0000 Message-ID: <8a332d37de31335cada257994d797ad9d997c5de.1398237662.git.christian.braunersorensen@prevas.dk> X-Mailer: git-send-email 1.8.4 In-Reply-To: References: MIME-Version: 1.0 X-BeenThere: dev@oe-lite.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: OE-lite development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: dev-bounces@oe-lite.org Errors-To: dev-bounces@oe-lite.org From: Christian Sørensen The libraries libgettextlib and libgettextsrc are version specific in contrast to the other library from gettext. Ensure they are correctly packaged and set the filename in the version file. Signed-off-by: Christian Sørensen --- recipes/gettext/gettext.inc | 2 -- recipes/gettext/gettext_0.18.1.1.oe | 3 +++ 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/recipes/gettext/gettext.inc b/recipes/gettext/gettext.inc index ac52b3a..d068a64 100644 --- a/recipes/gettext/gettext.inc +++ b/recipes/gettext/gettext.inc @@ -88,5 +88,3 @@ DEPENDS_${PN}-libgettextpo += "libiconv" DEPENDS_${PN}-libgettextlib += "libiconv ${DEPENDS_LIBNCURSES}" DEPENDS_${PN}-libgettextsrc += "libgettextlib libiconv ${DEPENDS_LIBNCURSES} ${DEPENDS_LIBDL} libm" FILES_${PN}-libintl += "${sharedlibdir}/preloadable_libintl${SOLIBSDEV}" -FILES_${PN}-libgettextlib += "${sharedlibdir}/libgettextlib${SOLIBSDEV}" -FILES_${PN}-libgettextsrc += "${sharedlibdir}/libgettextsrc${SOLIBSDEV}" diff --git a/recipes/gettext/gettext_0.18.1.1.oe b/recipes/gettext/gettext_0.18.1.1.oe index fa13e47..cae97e5 100644 --- a/recipes/gettext/gettext_0.18.1.1.oe +++ b/recipes/gettext/gettext_0.18.1.1.oe @@ -9,3 +9,6 @@ SRC_URI:>HOST_KERNEL_darwin = " file://osx.patch" SRC_URI:>HOST_LIBC_mingw = " file://libtool-bindir.patch" export sharedlibdir + +FILES_${PN}-libgettextlib += "${libdir}/libgettextlib-0.18.1.so" +FILES_${PN}-libgettextsrc += "${libdir}/libgettextsrc-0.18.1.so"