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/qpf.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/qpf.bbclass')
-rw-r--r-- | meta/classes/qpf.bbclass | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/meta/classes/qpf.bbclass b/meta/classes/qpf.bbclass new file mode 100644 index 0000000000..d6e58871d5 --- /dev/null +++ b/meta/classes/qpf.bbclass | |||
@@ -0,0 +1,36 @@ | |||
1 | PACKAGE_ARCH = "all" | ||
2 | |||
3 | do_configure() { | ||
4 | : | ||
5 | } | ||
6 | |||
7 | do_compile() { | ||
8 | : | ||
9 | } | ||
10 | |||
11 | pkg_postinst_fonts() { | ||
12 | #!/bin/sh | ||
13 | set -e | ||
14 | . /etc/profile | ||
15 | ${sbindir}/update-qtfontdir | ||
16 | } | ||
17 | |||
18 | pkg_postrm_fonts() { | ||
19 | #!/bin/sh | ||
20 | set -e | ||
21 | . /etc/profile | ||
22 | ${sbindir}/update-qtfontdir -f | ||
23 | } | ||
24 | |||
25 | python populate_packages_prepend() { | ||
26 | postinst = bb.data.getVar('pkg_postinst_fonts', d, 1) | ||
27 | postrm = bb.data.getVar('pkg_postrm_fonts', d, 1) | ||
28 | fontdir = bb.data.getVar('palmtopdir', d, 1) + '/lib/fonts' | ||
29 | pkgregex = "^([a-z-]*_[0-9]*).*.qpf$" | ||
30 | pkgpattern = bb.data.getVar('QPF_PKGPATTERN', d, 1) or 'qpf-%s' | ||
31 | pkgdescription = bb.data.getVar('QPF_DESCRIPTION', d, 1) or 'QPF font %s' | ||
32 | |||
33 | do_split_packages(d, root=fontdir, file_regex=pkgregex, output_pattern=pkgpattern, | ||
34 | description=pkgdescription, postinst=postinst, postrm=postrm, recursive=True, hook=None, | ||
35 | extra_depends='qpf-font-common') | ||
36 | } | ||