diff options
author | Michael Lauer <mickey@vanille-media.de> | 2005-02-15 12:12:21 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2005-02-15 12:12:21 +0000 |
commit | 3d9fe0f3f47496c7779d4fa0ec0cfb15820df349 (patch) | |
tree | 32c19914426362b763cf80e60e94f17184cd3ced /classes/qpf.bbclass | |
parent | 7e28ce87293ab6d14b9164673c70bf4c8f4b89bf (diff) |
add qpf-font-common, adjust qpf.bbclass, and add some SECTION changes Opie did upstream. Note: We have to remember to change the SECTIONs also in the 1.1.9 packages when we upgrade to 1.2.0
BKrev: 4211e725SUokkvw592Dp9PknQ1WNVA
Diffstat (limited to 'classes/qpf.bbclass')
-rw-r--r-- | classes/qpf.bbclass | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/classes/qpf.bbclass b/classes/qpf.bbclass index e69de29bb2..7073d25f7e 100644 --- a/classes/qpf.bbclass +++ b/classes/qpf.bbclass @@ -0,0 +1,28 @@ +PACKAGE_ARCH = "all" + +do_configure() { + : +} + +do_compile() { + : +} + +pkg_postinst_fonts() { +#!/bin/sh +set -e +. /etc/profile +${sbindir}/update-qtfontdir +} + +python populate_packages_prepend() { + postinst = bb.data.getVar('pkg_postinst_fonts', d, 1) + postrm = postinst + 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='/opt/QtPalmtop/lib/fonts', file_regex=pkgregex, output_pattern=pkgpattern, + description=pkgdescription, postinst=postinst, postrm=postrm, recursive=True, hook=None, + extra_depends='qpf-font-common') +} |