From 2f1460b7bf96616a7d54753a9dbc63ed6d322d74 Mon Sep 17 00:00:00 2001 From: Laurentiu Palcu Date: Fri, 15 Jun 2012 15:54:49 +0300 Subject: puzzles: upgrade to r9561 Minor change in LICENCE file: -This software is copyright (c) 2004-2010 Simon Tatham. +This software is copyright (c) 2004-2012 Simon Tatham. Signed-off-by: Laurentiu Palcu Signed-off-by: Richard Purdie --- meta/recipes-sato/puzzles/puzzles_r9375.bb | 62 ------------------------------ meta/recipes-sato/puzzles/puzzles_r9561.bb | 62 ++++++++++++++++++++++++++++++ 2 files changed, 62 insertions(+), 62 deletions(-) delete mode 100644 meta/recipes-sato/puzzles/puzzles_r9375.bb create mode 100644 meta/recipes-sato/puzzles/puzzles_r9561.bb diff --git a/meta/recipes-sato/puzzles/puzzles_r9375.bb b/meta/recipes-sato/puzzles/puzzles_r9375.bb deleted file mode 100644 index 1867dad413..0000000000 --- a/meta/recipes-sato/puzzles/puzzles_r9375.bb +++ /dev/null @@ -1,62 +0,0 @@ -DESCRIPTION="Simon Tatham's Portable Puzzle Collection" -HOMEPAGE="http://www.chiark.greenend.org.uk/~sgtatham/puzzles/" - -DEPENDS = "gtk+ libxt" -PR = "r0" -MOD_PV = "${@d.getVar('PV',1)[1:]}" - -LICENSE = "MIT" -LIC_FILES_CHKSUM = "file://LICENCE;md5=9928b60f3b78be315b7ab699c1b03ff5" - -# Upstream updates puzzles.tar.gz for the new release, so checksums seem to be changing regularly right now -#SRC_URI = "svn://ixion.tartarus.org/main;module=puzzles;rev=${MOD_PV}" -SRC_URI = "http://www.chiark.greenend.org.uk/~sgtatham/puzzles/puzzles-${PV}.tar.gz" -SRC_URI[md5sum] = "25f2349611cdd8fb35d27b24f5b937a8" -SRC_URI[sha256sum] = "bddf4e52c328c98b9d95bd7daf6b9098f25e8272a7c1059ba69809eb619124a2" - - -S = "${WORKDIR}/${BPN}-${PV}" - -do_configure () { - ./mkfiles.pl -} - -do_compile_prepend = " \ - export XLDFLAGS='${LDFLAGS} `${STAGING_BINDIR_NATIVE}/pkg-config gtk+-2.0 --libs`'; \ - export XLFLAGS=-lm \ - export CFLAGS='${CFLAGS} -I./ `${STAGING_BINDIR_NATIVE}/pkg-config gtk+-2.0 --cflags`'; " - -FILES_${PN} = "${prefix}/games/* ${datadir}/applications/*" -FILES_${PN}-dbg += "${prefix}/games/.debug" - -do_install () { - rm -rf ${D}/* - export prefix=${D} - export DESTDIR=${D} - install -d ${D}/${prefix}/ - install -d ${D}/${prefix}/games/ - oe_runmake install - - install -d ${D}/${datadir}/ - install -d ${D}/${datadir}/applications/ - - cd ${D}/${prefix}/games - for prog in *; do - if [ -x $prog ]; then - # Convert prog to Title Case - title=$(echo $prog | sed 's/\(^\| \)./\U&/g') - echo "making ${D}/${datadir}/applications/$prog.desktop" - cat < ${D}/${datadir}/applications/$prog.desktop -[Desktop Entry] -Name=$title -Exec=${prefix}/games/$prog -Icon=applications-games -Terminal=false -Type=Application -Categories=Game; -StartupNotify=true -X-MB-SingleInstance=true -STOP - fi - done -} diff --git a/meta/recipes-sato/puzzles/puzzles_r9561.bb b/meta/recipes-sato/puzzles/puzzles_r9561.bb new file mode 100644 index 0000000000..83fabdf217 --- /dev/null +++ b/meta/recipes-sato/puzzles/puzzles_r9561.bb @@ -0,0 +1,62 @@ +DESCRIPTION="Simon Tatham's Portable Puzzle Collection" +HOMEPAGE="http://www.chiark.greenend.org.uk/~sgtatham/puzzles/" + +DEPENDS = "gtk+ libxt" +PR = "r0" +MOD_PV = "${@d.getVar('PV',1)[1:]}" + +LICENSE = "MIT" +LIC_FILES_CHKSUM = "file://LICENCE;md5=453de74d749439762ef4814f7bee1fec" + +# Upstream updates puzzles.tar.gz for the new release, so checksums seem to be changing regularly right now +#SRC_URI = "svn://ixion.tartarus.org/main;module=puzzles;rev=${MOD_PV}" +SRC_URI = "http://www.chiark.greenend.org.uk/~sgtatham/puzzles/puzzles-${PV}.tar.gz" +SRC_URI[md5sum] = "c86695aebfc95efe1d6241863849101b" +SRC_URI[sha256sum] = "2c20a45189387e3de8804a58bdb4e47ac4bb0f890001a509dfbdc015b5a84b95" + + +S = "${WORKDIR}/${BPN}-${PV}" + +do_configure () { + ./mkfiles.pl +} + +do_compile_prepend = " \ + export XLDFLAGS='${LDFLAGS} `${STAGING_BINDIR_NATIVE}/pkg-config gtk+-2.0 --libs`'; \ + export XLFLAGS=-lm \ + export CFLAGS='${CFLAGS} -I./ `${STAGING_BINDIR_NATIVE}/pkg-config gtk+-2.0 --cflags`'; " + +FILES_${PN} = "${prefix}/games/* ${datadir}/applications/*" +FILES_${PN}-dbg += "${prefix}/games/.debug" + +do_install () { + rm -rf ${D}/* + export prefix=${D} + export DESTDIR=${D} + install -d ${D}/${prefix}/ + install -d ${D}/${prefix}/games/ + oe_runmake install + + install -d ${D}/${datadir}/ + install -d ${D}/${datadir}/applications/ + + cd ${D}/${prefix}/games + for prog in *; do + if [ -x $prog ]; then + # Convert prog to Title Case + title=$(echo $prog | sed 's/\(^\| \)./\U&/g') + echo "making ${D}/${datadir}/applications/$prog.desktop" + cat < ${D}/${datadir}/applications/$prog.desktop +[Desktop Entry] +Name=$title +Exec=${prefix}/games/$prog +Icon=applications-games +Terminal=false +Type=Application +Categories=Game; +StartupNotify=true +X-MB-SingleInstance=true +STOP + fi + done +} -- cgit 1.2.3-korg