diff options
| author | Marius Avram <marius.avram@intel.com> | 2014-02-06 12:54:11 +0200 | 
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-02-13 11:41:16 +0000 | 
| commit | c855431a88ee68b39249a48aa6a8b62b225f0dd2 (patch) | |
| tree | b7f07008d14375eaa30eb7a18621a8eca3d0ee00 /meta | |
| parent | eba4f2bd2a0becc086f107dbd0d3ec5222c5eed2 (diff) | |
| download | openembedded-core-c855431a88ee68b39249a48aa6a8b62b225f0dd2.tar.gz openembedded-core-c855431a88ee68b39249a48aa6a8b62b225f0dd2.tar.bz2 openembedded-core-c855431a88ee68b39249a48aa6a8b62b225f0dd2.zip | |
puzzles: upgrade to r10116
License has not changed.
Contains changes to the building system.
Signed-off-by: Marius Avram <marius.avram@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
| -rw-r--r-- | meta/recipes-sato/puzzles/puzzles_r10116.bb | 53 | ||||
| -rw-r--r-- | meta/recipes-sato/puzzles/puzzles_r9765.bb | 61 | 
2 files changed, 53 insertions, 61 deletions
| diff --git a/meta/recipes-sato/puzzles/puzzles_r10116.bb b/meta/recipes-sato/puzzles/puzzles_r10116.bb new file mode 100644 index 0000000000..842c648be5 --- /dev/null +++ b/meta/recipes-sato/puzzles/puzzles_r10116.bb @@ -0,0 +1,53 @@ +SUMMARY = "Simon Tatham's Portable Puzzle Collection" +HOMEPAGE = "http://www.chiark.greenend.org.uk/~sgtatham/puzzles/" + +DEPENDS = "gtk+ libxt" +MOD_PV = "${@d.getVar('PV',1)[1:]}" + +LICENSE = "MIT" +LIC_FILES_CHKSUM = "file://LICENCE;md5=33bcd4bce8f3c197f2aefbdbd2d299bc" + +SRC_URI = "svn://svn.tartarus.org/sgt;module=puzzles;rev=${MOD_PV}" + +S = "${WORKDIR}/${BPN}" + +inherit autotools + +do_configure_prepend () { +    ./mkfiles.pl +} + +FILES_${PN} = "${prefix}/bin/* ${datadir}/applications/*" +FILES_${PN}-dbg += "${prefix}/bin/.debug" + +do_install () { +    rm -rf ${D}/* +    export prefix=${D} +    export DESTDIR=${D} +    install -d ${D}/${prefix}/bin/ +    oe_runmake install + + +    install -d ${D}/${datadir}/applications/ + +    # Create desktop shortcuts +    cd ${D}/${prefix}/bin +    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}/bin/$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_r9765.bb b/meta/recipes-sato/puzzles/puzzles_r9765.bb deleted file mode 100644 index 5e972ec47b..0000000000 --- a/meta/recipes-sato/puzzles/puzzles_r9765.bb +++ /dev/null @@ -1,61 +0,0 @@ -SUMMARY = "Simon Tatham's Portable Puzzle Collection" -HOMEPAGE = "http://www.chiark.greenend.org.uk/~sgtatham/puzzles/" - -DEPENDS = "gtk+ libxt" -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}" -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 <<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 -} | 
