1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-08 05:09:24 +00:00

puzzles: Capitalize program names, use svn for obtaining source rather than tarball

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1744 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Richard Purdie
2007-05-17 11:00:45 +00:00
parent d717268a0d
commit 1a9ae24220
2 changed files with 21 additions and 4 deletions
+6 -2
View File
@@ -3,7 +3,7 @@ LICENSE = "MIT"
SECTION = "x11"
DEPENDS = "gtk+ gconf intltool-native librsvg"
PV = "0.1+svn${SRCDATE}"
PR = "r2"
PR = "r3"
inherit autotools pkgconfig
@@ -18,11 +18,15 @@ do_install_append () {
cd ${D}/${prefix}/games
for prog in *; do
if [ -x $prog ]; then
# Convert prog to Title Case
firstchar=${prog:0:1}
title=`echo "$firstchar" | tr a-z A-Z`
title="$title${prog:1}"
echo "making ${D}/${datadir}/applications/$prog.desktop"
cat <<STOP > ${D}/${datadir}/applications/$prog.desktop
[Desktop Entry]
Encoding=UTF-8
Name=$prog
Name=$title
Exec=${prefix}/games/$prog
Icon=applications-games
Terminal=false
+15 -2
View File
@@ -1,8 +1,17 @@
DEPENDS = "gtk+"
PR = "r4"
MOD_PV = "${@bb.data.getVar('PV',d,1)[1:]}"
SRC_URI = "http://www.chiark.greenend.org.uk/~sgtatham/puzzles/puzzles-${PV}.tar.gz"
#SRC_URI = "http://www.chiark.greenend.org.uk/~sgtatham/puzzles/puzzles-${PV}.tar.gz"
SRC_URI = "svn://ixion.tartarus.org/main;module=puzzles;rev=${MOD_PV} \
file://makedist_hack.patch;patch=1"
S = "${WORKDIR}/${PN}"
do_configure () {
./makedist.sh ${MOD_PV}
}
do_compile_prepend = " \
export XLDFLAGS='${LDFLAGS} `${STAGING_BINDIR_NATIVE}/pkg-config gtk+-2.0 --libs`'; \
@@ -25,11 +34,15 @@ do_install () {
cd ${D}/${prefix}/games
for prog in *; do
if [ -x $prog ]; then
# Convert prog to Title Case
firstchar=${prog:0:1}
title=`echo "$firstchar" | tr a-z A-Z`
title="$title${prog:1}"
echo "making ${D}/${datadir}/applications/$prog.desktop"
cat <<STOP > ${D}/${datadir}/applications/$prog.desktop
[Desktop Entry]
Encoding=UTF-8
Name=$prog
Name=$title
Exec=${prefix}/games/$prog
Icon=applications-games
Terminal=false