From 418312a2523f5e1fd231d215475250168f17fa58 Mon Sep 17 00:00:00 2001 From: Constantin Musca Date: Thu, 10 Jan 2013 10:00:59 +0200 Subject: puzzles: upgrade to r9733 Signed-off-by: Constantin Musca Signed-off-by: Richard Purdie --- meta/recipes-sato/puzzles/puzzles_r9712.bb | 62 ------------------------------ meta/recipes-sato/puzzles/puzzles_r9733.bb | 62 ++++++++++++++++++++++++++++++ 2 files changed, 62 insertions(+), 62 deletions(-) delete mode 100644 meta/recipes-sato/puzzles/puzzles_r9712.bb create mode 100644 meta/recipes-sato/puzzles/puzzles_r9733.bb (limited to 'meta/recipes-sato') diff --git a/meta/recipes-sato/puzzles/puzzles_r9712.bb b/meta/recipes-sato/puzzles/puzzles_r9712.bb deleted file mode 100644 index 5ab316169e..0000000000 --- a/meta/recipes-sato/puzzles/puzzles_r9712.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=31790deb1e1aac4626e7d1bc04587eb0" - -# Upstream updates puzzles.tar.gz for the new release, so checksums seem to be changing regularly right now -SRC_URI = "svn://svn.tartarus.org/sgt;module=puzzles;rev=${MOD_PV};protocol=svn" -S = "${WORKDIR}/${BPN}" - -#SRC_URI = "http://www.chiark.greenend.org.uk/~sgtatham/puzzles/puzzles-${PV}.tar.gz" -#SRC_URI[md5sum] = "9d84769562007e0f99edac77a3b2d27c" -#SRC_URI[sha256sum] = "b688b5196f8406a23741e973178bdde78e5f8af4d2a88c33ca1ae1cc1a069d15" -#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_r9733.bb b/meta/recipes-sato/puzzles/puzzles_r9733.bb new file mode 100644 index 0000000000..5ab316169e --- /dev/null +++ b/meta/recipes-sato/puzzles/puzzles_r9733.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=31790deb1e1aac4626e7d1bc04587eb0" + +# Upstream updates puzzles.tar.gz for the new release, so checksums seem to be changing regularly right now +SRC_URI = "svn://svn.tartarus.org/sgt;module=puzzles;rev=${MOD_PV};protocol=svn" +S = "${WORKDIR}/${BPN}" + +#SRC_URI = "http://www.chiark.greenend.org.uk/~sgtatham/puzzles/puzzles-${PV}.tar.gz" +#SRC_URI[md5sum] = "9d84769562007e0f99edac77a3b2d27c" +#SRC_URI[sha256sum] = "b688b5196f8406a23741e973178bdde78e5f8af4d2a88c33ca1ae1cc1a069d15" +#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