diff options
author | Rolf Leggewie <oe-devel@rolf.leggewie.biz> | 2008-01-29 08:34:29 +0000 |
---|---|---|
committer | Rolf Leggewie <oe-devel@rolf.leggewie.biz> | 2008-01-29 08:34:29 +0000 |
commit | fc98537d1272baf818ed71604e73d7221d49dbf1 (patch) | |
tree | 00898fbd481ef9f8ff7fe29d04b8c8dc017a28a2 /classes | |
parent | 48b5c3908e0e85774c5f3a81ee05710db23643ce (diff) |
qpf-fonts: rename qpf.bbclass to qpf.inc and dependent changes as discussed on ml. Partly closes 2430.
Diffstat (limited to 'classes')
-rw-r--r-- | classes/qpf.bbclass | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/classes/qpf.bbclass b/classes/qpf.bbclass deleted file mode 100644 index 67761bd4be..0000000000 --- a/classes/qpf.bbclass +++ /dev/null @@ -1,32 +0,0 @@ -PACKAGE_ARCH = "all" - -do_configure() { - : -} - -do_compile() { - : -} - -pkg_postinst_fonts() { -. /etc/profile -${sbindir}/update-qtfontdir -} - -pkg_postrm_fonts() { -. /etc/profile -${sbindir}/update-qtfontdir -f -} - -python populate_packages_prepend() { - postinst = bb.data.getVar('pkg_postinst_fonts', d, 1) - postrm = bb.data.getVar('pkg_postrm_fonts', d, 1) - fontdir = bb.data.getVar('palmtopdir', d, 1) + '/lib/fonts' - pkgregex = "^([a-z-]*_[0-9]*).*.qpf$" - pkgpattern = bb.data.getVar('QPF_PKGPATTERN', d, 1) or 'qpf-%s' - pkgdescription = bb.data.getVar('QPF_DESCRIPTION', d, 1) or 'QPF font %s' - - do_split_packages(d, root=fontdir, file_regex=pkgregex, output_pattern=pkgpattern, - description=pkgdescription, postinst=postinst, postrm=postrm, recursive=True, hook=None, - extra_depends='qpf-font-common') -} |