diff options
| author | Richard Purdie <richard@openedhand.com> | 2005-08-31 10:45:47 +0000 |
|---|---|---|
| committer | Richard Purdie <richard@openedhand.com> | 2005-08-31 10:45:47 +0000 |
| commit | 4b46c1f6e891b1ddd5968536440b888661fade3e (patch) | |
| tree | e0ba2c1f56f61b868bf746da5c4feabb25b800b2 /openembedded/classes/qpf.bbclass | |
| download | poky-4b46c1f6e891b1ddd5968536440b888661fade3e.tar.gz | |
Initial population
git-svn-id: https://svn.o-hand.com/repos/poky@1 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'openembedded/classes/qpf.bbclass')
| -rw-r--r-- | openembedded/classes/qpf.bbclass | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/openembedded/classes/qpf.bbclass b/openembedded/classes/qpf.bbclass new file mode 100644 index 0000000000..d6e58871d5 --- /dev/null +++ b/openembedded/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 | } | ||
