Ugh, dont accidentally check in proti's cow changes..
[vuplus_openembedded] / classes / pkgconfig.oeclass
1 inherit base
2
3 DEPENDS_prepend = "pkgconfig-native "
4
5 # The namespaces can clash here hence the two step replace
6 def get_pkgconfig_mangle(d):
7         import oe.data
8         s = "-e ''"
9         if not oe.data.inherits_class('native', d):
10                 s += " -e 's:${libdir}:OELIBDIR:;'"
11                 s += " -e 's:${includedir}:OEINCDIR:;'"
12                 s += " -e 's:${datadir}:OEDATADIR:'"
13                 s += " -e 's:${prefix}:OEPREFIX:'"
14                 s += " -e 's:${exec_prefix}:OEEXECPREFIX:'"
15                 s += " -e 's:OELIBDIR:${STAGING_LIBDIR}:;'"
16                 s += " -e 's:OEINCDIR:${STAGING_INCDIR}:;'"
17                 s += " -e 's:OEDATADIR:${STAGING_DATADIR}:'"
18                 s += " -e 's:OEPREFIX:${STAGING_LIBDIR}/..:'"
19                 s += " -e 's:OEEXECPREFIX:${STAGING_LIBDIR}/..:'"
20         return s
21
22 do_stage_append () {
23         for pc in `find ${S} -name '*.pc'`; do
24                 pcname=`basename $pc`
25                 install -d ${PKG_CONFIG_PATH}
26                 cat $pc | sed ${@get_pkgconfig_mangle(d)} > ${PKG_CONFIG_PATH}/$pcname
27         done
28 }