summaryrefslogtreecommitdiff
path: root/meta/recipes-sato/puzzles/puzzles_r9306.bb
diff options
context:
space:
mode:
authorShane Wang <shane.wang@intel.com>2011-12-30 09:37:30 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-01-03 12:10:49 +0000
commitffe017d4d0a21606ee4146b0ef9f616a49ce1927 (patch)
treed5518b8d68b4fce70d7116cc4a179f4883a69d39 /meta/recipes-sato/puzzles/puzzles_r9306.bb
parenteffed56330a54f2f20704184484193cd1125f377 (diff)
downloadopenembedded-core-ffe017d4d0a21606ee4146b0ef9f616a49ce1927.tar.gz
openembedded-core-ffe017d4d0a21606ee4146b0ef9f616a49ce1927.tar.bz2
openembedded-core-ffe017d4d0a21606ee4146b0ef9f616a49ce1927.tar.xz
openembedded-core-ffe017d4d0a21606ee4146b0ef9f616a49ce1927.zip
puzzles: upgrade to r9375.
Signed-off-by: Shane Wang <shane.wang@intel.com>
Diffstat (limited to 'meta/recipes-sato/puzzles/puzzles_r9306.bb')
-rw-r--r--meta/recipes-sato/puzzles/puzzles_r9306.bb62
1 files changed, 0 insertions, 62 deletions
diff --git a/meta/recipes-sato/puzzles/puzzles_r9306.bb b/meta/recipes-sato/puzzles/puzzles_r9306.bb
deleted file mode 100644
index 14b0461bc..000000000
--- a/meta/recipes-sato/puzzles/puzzles_r9306.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 = "r1"
-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] = "fd1b05c0e0cfb752c6136ce2e4562416"
-SRC_URI[sha256sum] = "512aa26a0d11867a815030449bb903861f75512725886a70eece387bd8240ddd"
-
-
-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 <<STOP > ${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
-}