diff options
author | Richard Purdie <richard@openedhand.com> | 2006-07-21 10:10:31 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2006-07-21 10:10:31 +0000 |
commit | b2f192faabe412adce79534e22efe9fb69ee40e2 (patch) | |
tree | 7076c49d4286f8a1733650bd8fbc7161af200d57 /meta/classes/pkgconfig.bbclass | |
parent | 2cf0eadf9f730027833af802d7e6c90b44248f80 (diff) | |
download | poky-b2f192faabe412adce79534e22efe9fb69ee40e2.tar.gz |
Rename /openembedded/ -> /meta/
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@530 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/classes/pkgconfig.bbclass')
-rw-r--r-- | meta/classes/pkgconfig.bbclass | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/meta/classes/pkgconfig.bbclass b/meta/classes/pkgconfig.bbclass new file mode 100644 index 0000000000..62f15f312d --- /dev/null +++ b/meta/classes/pkgconfig.bbclass | |||
@@ -0,0 +1,28 @@ | |||
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 bb.data | ||
8 | s = "-e ''" | ||
9 | if not bb.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' | grep -v -- '-uninstalled.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 | } | ||