From 22f3c4ed8fa6d4eba6972c44b3bc50276238c7f5 Mon Sep 17 00:00:00 2001 From: Saul Wold Date: Tue, 31 May 2011 22:32:13 -0700 Subject: puzzles: Update to 9175 (From OE-Core rev: 42eebceb0dbcc3c3ee9f6b9485c6c51b831e0b2b) Signed-off-by: Saul Wold Signed-off-by: Richard Purdie --- meta/recipes-sato/puzzles/puzzles_r9173.bb | 61 ------------------------------ meta/recipes-sato/puzzles/puzzles_r9175.bb | 61 ++++++++++++++++++++++++++++++ 2 files changed, 61 insertions(+), 61 deletions(-) delete mode 100644 meta/recipes-sato/puzzles/puzzles_r9173.bb create mode 100644 meta/recipes-sato/puzzles/puzzles_r9175.bb (limited to 'meta/recipes-sato/puzzles') diff --git a/meta/recipes-sato/puzzles/puzzles_r9173.bb b/meta/recipes-sato/puzzles/puzzles_r9173.bb deleted file mode 100644 index 5cd8bb912a..0000000000 --- a/meta/recipes-sato/puzzles/puzzles_r9173.bb +++ /dev/null @@ -1,61 +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 = "${@bb.data.getVar('PV',d,1)[1:]}" - -LICENSE = "MIT" -LIC_FILES_CHKSUM = "file://LICENCE;md5=9928b60f3b78be315b7ab699c1b03ff5" - -SRC_URI = "http://www.chiark.greenend.org.uk/~sgtatham/puzzles/puzzles-${PV}.tar.gz" - -# Upstream updates puzzles.tar.gz for the new release, so checksums seem to be changing regularly right now -#SRC_URI[md5sum] = "e8b4c7e2341264789f3cd6733857bf1c" -#SRC_URI[sha256sum] = "69f37e497e63b2f7ab44e7bbd50aee078269c16dbc2d78ec1b00257678f2cbd2" -#SRC_URI = "svn://ixion.tartarus.org/main;module=puzzles;rev=${MOD_PV}" - -S = "${WORKDIR}/${PN}-${PV}" - -do_configure () { - ./mkfiles.pl -} - -do_compile_prepend = " \ - export XLDFLAGS='${LDFLAGS} `${STAGING_BINDIR_NATIVE}/pkg-config gtk+-2.0 --libs`'; \ - 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_r9175.bb b/meta/recipes-sato/puzzles/puzzles_r9175.bb new file mode 100644 index 0000000000..5cd8bb912a --- /dev/null +++ b/meta/recipes-sato/puzzles/puzzles_r9175.bb @@ -0,0 +1,61 @@ +DESCRIPTION="Simon Tatham's Portable Puzzle Collection" +HOMEPAGE="http://www.chiark.greenend.org.uk/~sgtatham/puzzles/" + +DEPENDS = "gtk+ libxt" +PR = "r0" +MOD_PV = "${@bb.data.getVar('PV',d,1)[1:]}" + +LICENSE = "MIT" +LIC_FILES_CHKSUM = "file://LICENCE;md5=9928b60f3b78be315b7ab699c1b03ff5" + +SRC_URI = "http://www.chiark.greenend.org.uk/~sgtatham/puzzles/puzzles-${PV}.tar.gz" + +# Upstream updates puzzles.tar.gz for the new release, so checksums seem to be changing regularly right now +#SRC_URI[md5sum] = "e8b4c7e2341264789f3cd6733857bf1c" +#SRC_URI[sha256sum] = "69f37e497e63b2f7ab44e7bbd50aee078269c16dbc2d78ec1b00257678f2cbd2" +#SRC_URI = "svn://ixion.tartarus.org/main;module=puzzles;rev=${MOD_PV}" + +S = "${WORKDIR}/${PN}-${PV}" + +do_configure () { + ./mkfiles.pl +} + +do_compile_prepend = " \ + export XLDFLAGS='${LDFLAGS} `${STAGING_BINDIR_NATIVE}/pkg-config gtk+-2.0 --libs`'; \ + 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 v1.2.3-54-g00ecf