gettext.bbclass: make it simpler to understand
authorHenning Heinold <heinold@inf.fu-berlin.de>
Wed, 8 Oct 2008 22:06:39 +0000 (22:06 +0000)
committerHenning Heinold <heinold@inf.fu-berlin.de>
Wed, 8 Oct 2008 22:06:39 +0000 (22:06 +0000)
* set the deps for package which can use NLS stuff
* filter the deps out if NLS is not requested

classes/gettext.bbclass

index a1e00e7..1c7661d 100644 (file)
@@ -1,16 +1,16 @@
+DEPENDS =+ "gettext-native virtual/libiconv virtual/libintl"
+EXTRA_OECONF += "--enable-nls"
+
 def gettext_after_parse(d):
     import bb
     # Remove the NLS bits if USE_NLS is no.
     if bb.data.getVar('USE_NLS', d, 1) == 'no':
         cfg = oe_filter_out('^--(dis|en)able-nls$', bb.data.getVar('EXTRA_OECONF', d, 1) or "", d)
         cfg += " --disable-nls"
-        depends = bb.data.getVar('DEPENDS', d, 1) or ""
-        bb.data.setVar('DEPENDS', oe_filter_out('^(virtual/libiconv|virtual/libintl)$', depends, d), d)
         bb.data.setVar('EXTRA_OECONF', cfg, d)
+        depends = bb.data.getVar('DEPENDS', d, 1) or ""
+        bb.data.setVar('DEPENDS', oe_filter_out('^(gettext-native|virtual/libiconv|virtual/libintl)$', depends, d), d)
 
 python () {
     gettext_after_parse(d)
 }
-
-DEPENDS =+ "gettext-native"
-EXTRA_OECONF += "--enable-nls"