diff options
| author | Richard Purdie <richard@openedhand.com> | 2006-09-21 15:17:23 +0000 |
|---|---|---|
| committer | Richard Purdie <richard@openedhand.com> | 2006-09-21 15:17:23 +0000 |
| commit | 5cacd3ea7efd69e57979d962616bf87c521c6f8b (patch) | |
| tree | a379a06824d2194bf5d684f80394c587e5394795 /meta/classes/qpf.bbclass | |
| parent | 4471ca5bf7e65c8dfd315e7a0ad532ee598fe4d7 (diff) | |
| download | poky-5cacd3ea7efd69e57979d962616bf87c521c6f8b.tar.gz | |
Remove unneeded classes
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@742 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/classes/qpf.bbclass')
| -rw-r--r-- | meta/classes/qpf.bbclass | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/meta/classes/qpf.bbclass b/meta/classes/qpf.bbclass deleted file mode 100644 index d6e58871d5..0000000000 --- a/meta/classes/qpf.bbclass +++ /dev/null | |||
| @@ -1,36 +0,0 @@ | |||
| 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 | } | ||
