From: Chris Larson <[email protected]>

Signed-off-by: Chris Larson <[email protected]>
---
 meta/classes/package.bbclass |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/meta/classes/package.bbclass b/meta/classes/package.bbclass
index 0a954ef..100f465 100644
--- a/meta/classes/package.bbclass
+++ b/meta/classes/package.bbclass
@@ -44,6 +44,8 @@ inherit prserv
 PKGD    = "${WORKDIR}/package"
 PKGDEST = "${WORKDIR}/packages-split"
 
+LOCALE_SECTION ?= ''
+
 # rpm is used for the per-file dependency identification
 PACKAGE_DEPENDS += "rpm-native"
 
@@ -401,6 +403,7 @@ python package_do_split_locales() {
 
        summary = bb.data.getVar('SUMMARY', d, True) or pn
        description = bb.data.getVar('DESCRIPTION', d, True) or "" 
+        locale_section = bb.data.getVar('LOCALE_SECTION', d, True)
        for l in locales:
                ln = legitimize_package_name(l)
                pkg = pn + '-locale-' + ln
@@ -410,6 +413,8 @@ python package_do_split_locales() {
                bb.data.setVar('RPROVIDES_' + pkg, '%s-locale %s-translation' % 
(pn, ln), d)
                bb.data.setVar('SUMMARY_' + pkg, '%s - %s translations' % 
(summary, l), d)
                bb.data.setVar('DESCRIPTION_' + pkg, '%s  This package contains 
language translation files for the %s locale.' % (description, l), d)
+               if locale_section:
+                       bb.data.setVar('SECTION_' + pkg, locale_section, d)
 
        bb.data.setVar('PACKAGES', ' '.join(packages), d)
 
-- 
1.7.3.4


_______________________________________________
Openembedded-core mailing list
[email protected]
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core

Reply via email to