1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
  | require ${BPN}.inc 
 |    
 |  DEPENDS += " \ 
 |      ${BPN}-native \ 
 |      glib-2.0-native \ 
 |      glib-2.0 \ 
 |      dbus \ 
 |      iso-codes \ 
 |  " 
 |    
 |  inherit gtk-icon-cache bash-completion 
 |    
 |  # for unicode-ucd 
 |  EXTRA_OECONF += "--with-ucd-dir=${STAGING_DATADIR}/unicode/ucd" 
 |    
 |  PACKAGECONFIG ??= " \ 
 |      dconf vala \ 
 |      ${@bb.utils.contains_any('DISTRO_FEATURES', [ 'wayland', 'x11' ], 'gtk3', '', d)} \ 
 |      ${@bb.utils.filter('DISTRO_FEATURES', 'wayland x11', d)} \ 
 |  " 
 |    
 |  do_configure:prepend() { 
 |      # run native unicode-parser 
 |      sed -i 's:$(builddir)/unicode-parser:unicode-parser:g' ${S}/src/Makefile.am 
 |  } 
 |    
 |  FILES:${PN} += " \ 
 |      ${datadir}/dbus-1 \ 
 |      ${datadir}/GConf \ 
 |      ${datadir}/glib-2.0 \ 
 |      ${libdir}/gtk-3.0 \ 
 |  " 
 |    
 |  FILES:${PN}-dev += " \ 
 |      ${datadir}/gettext \ 
 |  " 
 |  
  |