aboutsummaryrefslogtreecommitdiffstats
path: root/recipes-opie/opie-taskbar/opie-taskbar-images.inc
blob: e913d7b5e3459c8f2aee6797861ca904fffc2049 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
DESCRIPTION = "Opie Launcher and Taskbar"
SECTION = "opie/base"
LICENSE = "GPLv2"
# FIXME stopgap until split archives have license files included
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/GPL-2.0;md5=801f80980d171dd6425610833a22dbe6"
APPNAME = "qpe"

S = "${WORKDIR}/pics"

inherit opie

AVAILABLE_SIZES         = "240x240 240x320 320x320 320x480 480x320 480x640 640x480 800x600"

do_configure() {
        :
}

do_install() {
        install -d ${D}${palmtopdir}/pics/launcher
	
        # Allow us to be lazy with the loop below
        if [ -f ${WORKDIR}/pics/launcher/firstuse.jpg ] ; then
                mv ${WORKDIR}/pics/launcher/firstuse.jpg ${WORKDIR}/pics/launcher/firstuse-240x320.jpg
                mv ${WORKDIR}/pics/launcher/opie-background.jpg ${WORKDIR}/pics/launcher/opie-background-240x320.jpg
        fi

        for res in ${AVAILABLE_SIZES}; do
                install -m 0644 ${WORKDIR}/pics/launcher/firstuse-${res}.jpg ${D}${palmtopdir}/pics/launcher/firstuse-${res}.jpg
                install -m 0644 ${WORKDIR}/pics/launcher/opie-background-${res}.jpg ${D}${palmtopdir}/pics/launcher/opie-background-${res}.jpg
        done
}

python __anonymous () {
    reslist = bb.data.getVar('AVAILABLE_SIZES', d, True).split()
    dir = bb.data.expand('${palmtopdir}/pics/launcher/', d)
    ft = bb.data.expand('${palmtopdir}/pics/*/*-%s.*', d)
    pn = bb.data.getVar('PN', d, 1)
    for res in reslist:
        bb.data.setVar('FILES_%s-%s' % (pn,res), ft % res, d )
        postinst = ''
        postinst = 'update-alternatives --install %sfirstuse.jpg opie-firstuse-pixmap %sfirstuse-%s.jpg 50\n' % (dir,dir,res)
        postinst += 'update-alternatives --install %sopie-background.jpg opie-background-pixmap %sopie-background-%s.jpg 50\n' % (dir,dir,res)
        bb.data.setVar('pkg_postinst_%s-%s' % (pn,res),postinst, d)
        prerm = ''
        prerm = 'update-alternatives --remove opie-firstuse-pixmap %sfirstuse-%s.jpg 50\n' % (dir,res)
        prerm += 'update-alternatives --remove opie-background-pixmap %sopie-background-%s.jpg 50\n' % (dir,res)
        bb.data.setVar('pkg_prerm_%s-%s' % (pn,res),prerm, d)
}

PACKAGE_ARCH = "all"
PACKAGES = "${PN}-dbg ${PN}-240x240 ${PN}-240x320 ${PN}-320x320 ${PN}-320x480 ${PN}-480x320 ${PN}-480x640 ${PN}-640x480 ${PN}-800x600"
RPROVIDES_${PN}-240x240 = "opie-taskbar-images"
RPROVIDES_${PN}-240x320 = "opie-taskbar-images"
RPROVIDES_${PN}-320x320 = "opie-taskbar-images"
RPROVIDES_${PN}-320x480 = "opie-taskbar-images"
RPROVIDES_${PN}-480x320 = "opie-taskbar-images"
RPROVIDES_${PN}-480x640 = "opie-taskbar-images"
RPROVIDES_${PN}-640x480 = "opie-taskbar-images"
RPROVIDES_${PN}-800x600 = "opie-taskbar-images"

# Add dummy packages so that the WxH + HxW RRECOMMENDS line in packagegroup-opie.bb works
PACKAGES += "${PN}-320x240 ${PN}-600x800"