diff options
Diffstat (limited to 'meta/recipes-core/psplash')
-rw-r--r-- | meta/recipes-core/psplash/psplash_git.bb | 93 |
1 files changed, 87 insertions, 6 deletions
diff --git a/meta/recipes-core/psplash/psplash_git.bb b/meta/recipes-core/psplash/psplash_git.bb index 9112aa916..42ea6151e 100644 --- a/meta/recipes-core/psplash/psplash_git.bb +++ b/meta/recipes-core/psplash/psplash_git.bb @@ -7,27 +7,108 @@ LIC_FILES_CHKSUM = "file://psplash.h;md5=a87c39812c1e37f3451567cc29a29c8f" SRCREV = "e05374aae945bcfc6d962ed0d7b2774b77987e1d" PV = "0.1+git${SRCPV}" -PR = "r0" +PR = "r1" SRC_URI = "git://git.yoctoproject.org/${BPN};protocol=git \ file://psplash-init \ - file://psplash-poky-img.h" + ${SPLASH_IMAGES}" + +SPLASH_IMAGES = "file://psplash-poky-img.h;outsuffix=default" + +python __anonymous() { + oldpkgs = d.getVar("PACKAGES", True).split() + splashfiles = d.getVar('SPLASH_IMAGES', True).split() + pkgs = [] + localpaths = [] + haspng = False + for uri in splashfiles: + fetcher = bb.fetch2.Fetch([uri], d) + flocal = fetcher.localpath(uri) + fbase = os.path.splitext(os.path.basename(flocal))[0] + outsuffix = fetcher.ud[uri].parm.get("outsuffix") + if not outsuffix: + if fbase.startswith("psplash-"): + outsuffix = fbase[8:] + else: + outsuffix = fbase + if outsuffix.endswith('-img'): + outsuffix = outsuffix[:-4] + outname = "psplash-%s" % outsuffix + if outname == '' or outname in oldpkgs: + bb.fatal("The output name '%s' derived from the URI %s is not valid, please specify the outsuffix parameter" % (outname, uri)) + else: + pkgs.append(outname) + if flocal.endswith(".png"): + haspng = True + localpaths.append(flocal) + + # Set these so that we have less work to do in do_compile and do_install_append + d.setVar("SPLASH_INSTALL", " ".join(pkgs)) + d.setVar("SPLASH_LOCALPATHS", " ".join(localpaths)) + + if haspng: + d.appendVar("DEPENDS", " gdk-pixbuf-native") + + d.prependVar("PACKAGES", "%s " % (" ".join(pkgs))) + for p in pkgs: + d.setVar("FILES_%s" % p, "${bindir}/%s" % p) + d.setVar("ALTERNATIVE_PATH", "${bindir}/%s" % p) + d.setVar("ALTERNATIVE_PRIORITY", "100") + postinst = d.getVar("psplash_alternatives_postinst", True) + d.setVar('pkg_postinst_%s' % p, postinst) + postrm = d.getVar("psplash_alternatives_postrm", True) + d.setVar('pkg_postrm_%s' % p, postrm) + d.appendVar("RDEPENDS_%s" % p, " ${PN}") + if p == "psplash-default": + d.appendVar("RRECOMMENDS_${PN}", " %s" % p) +} S = "${WORKDIR}/git" inherit autotools pkgconfig update-rc.d -FILES_${PN} += "/mnt/.psplash" +python do_compile () { + import shutil -do_configure_prepend () { - cp -f ${WORKDIR}/psplash-poky-img.h ${S}/ + # Build a separate executable for each splash image + destfile = "%s/psplash-poky-img.h" % d.getVar('S', True) + localfiles = d.getVar('SPLASH_LOCALPATHS', True).split() + outputfiles = d.getVar('SPLASH_INSTALL', True).split() + for localfile, outputfile in zip(localfiles, outputfiles): + if localfile.endswith(".png"): + outp = commands.getstatusoutput('./make-image-header.sh %s POKY' % localfile) + print(outp[1]) + fbase = os.path.splitext(os.path.basename(localfile))[0] + shutil.copyfile("%s-img.h" % fbase, destfile) + else: + shutil.copyfile(localfile, destfile) + # For some reason just updating the header is not enough, we have to touch the .c + # file in order to get it to rebuild + os.utime("psplash.c", None) + bb.build.exec_func("oe_runmake", d) + shutil.copyfile("psplash", outputfile) } -do_install_prepend() { +do_install_append() { install -d ${D}/mnt/.psplash/ install -d ${D}${sysconfdir}/init.d/ install -m 0755 ${WORKDIR}/psplash-init ${D}${sysconfdir}/init.d/psplash.sh + install -d ${D}${bindir} + for i in ${SPLASH_INSTALL} ; do + install -m 0755 $i ${D}${bindir}/$i + done + rm -f ${D}${bindir}/psplash } +psplash_alternatives_postinst() { +update-alternatives --install ${bindir}/psplash psplash ${ALTERNATIVE_PATH} ${ALTERNATIVE_PRIORITY} +} + +psplash_alternatives_postrm() { +update-alternatives --remove psplash ${ALTERNATIVE_PATH} +} + +FILES_${PN} += "/mnt/.psplash" + INITSCRIPT_NAME = "psplash.sh" INITSCRIPT_PARAMS = "start 0 S . stop 20 0 1 6 ." |