From e10805e11212c67747fe804cd30d2538ec1b8a47 Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Fri, 5 Jan 2024 21:12:26 +0100 Subject: [PATCH] python 2.7 mass rebuild [release 1.6-3mamba;Sun Jun 02 2013] --- README.md | 3 + childsplay-0.80.3.1-childsplay_sh.patch | 6 + childsplay-0.80.3.1-install.patch | 129 ++ childsplay-0.90.2-install_plugins.patch | 103 + childsplay-0.90.2-install_plugins_lfc.patch | 110 ++ childsplay-0.90.2-install_score.patch | 11 + childsplay-0.90.2-it_lang_plugins_lfc.patch | 1936 +++++++++++++++++++ childsplay-0.90.2-locale_it.patch | 98 + childsplay-0.90.2-locale_it_font.patch | 19 + childsplay-1.6-python-SQLAlchemy-0.7.patch | 19 + childsplay-icon.png | Bin 0 -> 2759 bytes childsplay.desktop | 13 + childsplay.spec | 127 ++ 13 files changed, 2574 insertions(+) create mode 100644 childsplay-0.80.3.1-childsplay_sh.patch create mode 100644 childsplay-0.80.3.1-install.patch create mode 100644 childsplay-0.90.2-install_plugins.patch create mode 100644 childsplay-0.90.2-install_plugins_lfc.patch create mode 100644 childsplay-0.90.2-install_score.patch create mode 100644 childsplay-0.90.2-it_lang_plugins_lfc.patch create mode 100644 childsplay-0.90.2-locale_it.patch create mode 100644 childsplay-0.90.2-locale_it_font.patch create mode 100644 childsplay-1.6-python-SQLAlchemy-0.7.patch create mode 100644 childsplay-icon.png create mode 100644 childsplay.desktop create mode 100644 childsplay.spec diff --git a/README.md b/README.md index 9dbf986..369a680 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,5 @@ # childsplay +Childsplay is a 'suite' of educational games for young children, like gcompris, but without the overkill of c/c++ and the gnome environ. +Also the use of the SDL libraries makes smooth animation and the playing of sound very easy. + diff --git a/childsplay-0.80.3.1-childsplay_sh.patch b/childsplay-0.80.3.1-childsplay_sh.patch new file mode 100644 index 0000000..1408915 --- /dev/null +++ b/childsplay-0.80.3.1-childsplay_sh.patch @@ -0,0 +1,6 @@ +--- childsplay-0.80.3.1/childsplay.sh.orig 2005-12-02 23:14:03.000000000 +0100 ++++ childsplay-0.80.3.1/childsplay.sh 2005-12-02 23:15:01.000000000 +0100 +@@ -1,2 +1,2 @@ + #!/bin/sh +-/usr/local/lib/games/childsplay/childsplay.py $* & ++/usr/lib/childsplay/childsplay.py $* & diff --git a/childsplay-0.80.3.1-install.patch b/childsplay-0.80.3.1-install.patch new file mode 100644 index 0000000..6801fc2 --- /dev/null +++ b/childsplay-0.80.3.1-install.patch @@ -0,0 +1,129 @@ +diff -ru childsplay-0.80.3.1/INSTALL.sh childsplay-0.80.3.1-qi/INSTALL.sh +--- childsplay-0.80.3.1/INSTALL.sh 2005-08-29 10:06:25.000000000 +0200 ++++ childsplay-0.80.3.1-qi/INSTALL.sh 2005-11-25 22:45:54.000000000 +0100 +@@ -8,30 +8,32 @@ + # However, you can change the "prefix" to "/usr" and childsplay will still + # work. Set it to anything else and your on your own. + +-PREFIX=/usr/local ++PREFIX=/usr + + ################################################################# + # DON'T EDIT BEHIND THIS POINT + ################################################################# +-if [ $* ] +-then PREFIX=$* +-fi +-echo "PREFIX=$PREFIX" ++ ++DESTDIR= ++ ++[ "$1" ] && DESTDIR="$1" ++ ++echo "PREFIX=$DESTDIR$PREFIX" + + PYTHON=`which python` + +-EXECDIR=$PREFIX/bin +-LOCALEDIR=$PREFIX/share/locale +-ASSETMLDIR=/usr/share/assetml +-SCOREDIR=/var/games ++EXECDIR=$DESTDIR$PREFIX/bin ++LOCALEDIR=$DESTDIR$PREFIX/share/locale ++ASSETMLDIR=$DESTDIR$PREFIX/share/assetml ++SCOREDIR=$DESTDIR/var/games + SCOREFILE=$SCOREDIR/childsplay.score +-DOCDIR=$PREFIX/share/doc/childsplay +-MANDIR=$PREFIX/man/man6 +-CPDIR=$PREFIX/lib/games/childsplay +-SHAREDIR=$PREFIX/share/childsplay +-BINDIR=$PREFIX/games +-LIBDIR=$CPDIR/lib +-MODULESDIR=$LIBDIR ++DOCDIR=$DESTDIR$PREFIX/share/doc/childsplay ++MANDIR=$DESTDIR$PREFIX/share/man/man6 ++CPDIR=$DESTDIR$PREFIX/lib/childsplay ++SHAREDIR=$DESTDIR$PREFIX/share/childsplay ++BINDIR=$DESTDIR$PREFIX/bin ++LIBDIR=$CPDIR/lib ++MODULESDIR=$LIBDIR + SHARELIBDATADIR=$SHAREDIR/lib + SHAREDATADIR=$SHAREDIR/Data + RCDIR=$SHARELIBDATADIR/ConfigData +@@ -39,11 +41,11 @@ + HOME_DIR_NAME=.childsplay + CHILDSPLAYRC=childsplayrc + +-OLDCPDIR=$PREFIX/games/childsplay ++OLDCPDIR=$DESTDIR$PREFIX/bin/childsplay + + echo "Making directorys" + mkdir -vp $CPDIR +-mkdir -vp $CPDIR/lib ++mkdir -vp $LIBDIR + mkdir -vp $DOCDIR + mkdir -vp $LOCALEDIR + mkdir -vp $ASSETMLDIR +@@ -58,17 +60,6 @@ + set -e + + CWD=`pwd` +-USERID=`id | sed -e 's/).*//; s/^.*(//;'` +-if [ "$USERID" != "root" ]; then +- echo " You must be root to install the plugins" +- echo " exit" +- exit 1 +-fi +-echo " Looking for obsolete childsplay files in $OLDCPDIR" +-if [ -e $OLDCPDIR ] && [ -d $OLDCPDIR ] +-then rm -fr $OLDCPDIR +- echo " Old files removed" +-fi + + echo -e "\n>>>>>>>>>>> Install childsplay >>>>>>>>>>>>>>>>>>>>" + echo " Installing in $PREFIX" +@@ -122,12 +113,6 @@ + chmod +x $CPDIR/childsplay.py + chmod +x $CPDIR/letters-trans.py + +-#echo " Looking for the old executable, if any" +-#if [ -e /usr/local/bin/childsplay ] +-#then rm -f /usr/local/bin/childsplay +-# echo "found and removed" +-#fi +- + echo " Setting the base path in childsplay to $PREFIX" + echo "## Automated file please do not edit" > $CPDIR/BASEPATH.py + echo "BASEPATH=\"$PREFIX\"" >> $CPDIR/BASEPATH.py +@@ -152,7 +137,7 @@ + + echo ">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>" + echo "" +-echo " Instalation of childsplay complete" ++echo " Installation of childsplay complete" + echo " The childsplay executable is $BINDIR/childsplay" + echo "" + echo ">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>" +diff -ru childsplay-0.80.3.1/letters-trans.py childsplay-0.80.3.1-qi/letters-trans.py +--- childsplay-0.80.3.1/letters-trans.py 2005-08-29 10:06:24.000000000 +0200 ++++ childsplay-0.80.3.1-qi/letters-trans.py 2005-11-25 22:47:37.000000000 +0100 +@@ -36,10 +36,6 @@ + import os,fnmatch,operator,sys,locale + from CPConstants import ASSETMLROOT + +-if os.environ['USER'] != 'root': +- print "\nOnly root can use this script, sorry.\n" +- sys.exit(1) +- + try: + import pyassetml,pyassetmlcreator + except ImportError,info: +@@ -66,7 +62,7 @@ + sys.exit(0) + + # get description names from memory assetml, these are the words used by letters.py +-parser = pyassetml.AssetmlParser('childsplay/memory-136x136/memory-136x136.assetml') ++parser = pyassetml.AssetmlParser('assetml/childsplay/memory-136x136/memory-136x136.assetml') + loc = parser.get_locale()# get current locale setting, only the first two chars !! + wlist_org = parser.find_names((('file','.'),('description',"en"))) + wlist = parser.find_names((('file','.'),('description',loc))) diff --git a/childsplay-0.90.2-install_plugins.patch b/childsplay-0.90.2-install_plugins.patch new file mode 100644 index 0000000..ce34034 --- /dev/null +++ b/childsplay-0.90.2-install_plugins.patch @@ -0,0 +1,103 @@ +--- childsplay-0.90.2/childsplay_plugins-0.90/install.sh 2008-09-27 04:03:14.000000000 +0200 ++++ childsplay-0.90.2/childsplay_plugins-0.90/install.sh-gil 2008-09-27 04:12:53.000000000 +0200 +@@ -8,33 +8,33 @@ + # However, you can change the "prefix" to "/usr" and childsplay will still + # work. Set it to anything else and your on your own. + +-PREFIX=/usr/local ++PREFIX=/usr + + ################################################################# + # DON'T EDIT BEHIND THIS POINT + ################################################################# + +-if [ $1 ] && [ -e $1 ] +-then PREFIX=$1 +-fi ++DESTDIR= ++ ++[ "$1" ] && DESTDIR="$1" + +-LOCALEDIR=$PREFIX/share/locale +-MTDIR=$PREFIX/bin +-ASSETMLDIR=/usr/share/assetml ++LOCALEDIR=$DESTDIR$PREFIX/share/locale ++MTDIR=$DESTDIR$PREFIX/bin ++ASSETMLDIR=$DESTDIR$PREFIX/share/assetml + PYTHON=`which python` +-SCOREDIR=/var/games +-DOCDIR=$PREFIX/share/doc/childsplay +-MANDIR=$PREFIX/man/man6 +-CPDIR=$PREFIX/lib/games/childsplay +-SHAREDIR=$PREFIX/share/childsplay +-BINDIR=$PREFIX/games ++SCOREDIR=$DESTDIR/var/games ++DOCDIR=$DESTDIR$PREFIX/share/doc/childsplay ++MANDIR=$DESTDIR$PREFIX/man/man6 ++CPDIR=$DESTDIR$PREFIX/lib/childsplay ++SHAREDIR=$DESTDIR$PREFIX/share/childsplay ++BINDIR=$DESTDIR$PREFIX/bin + SHARELIBDATADIR=$SHAREDIR/lib + SHAREDATADIR=$SHAREDIR/Data + + ################################################## + # Package text to be displayed as last step + # 0 = no readmes to display, 1 = there are readmes +-README=1 ++README=0 + # if README=1 then READMES=names of readmes in CWD + # like this READMES="README README2 README3" + READMES="README README-PACKID README.MT_users2csv" +@@ -45,52 +45,11 @@ + # the names of which plugins are to be added to the score file + SCORE="Packid,Numbers,Soundmemory,Fallingletters,Findsound,Findsound2,Billiard,Puzzle" + +-USERID=`id | sed -e 's/).*//; s/^.*(//;'` +-if [ "$USERID" != "root" ]; then +- echo " You must be root to install the plugins" +- echo " exit" +- exit 1 +-fi +- + echo -e "\n>>>>>>>>>>> Install childsplay plugins >>>>>>>>>>>>>>>>>>>>" + echo -e "\n This release depends on childsplay version >= $DEPEN" +-echo -n " Checking, version = " +-#CP=`which childsplay` +-CP=$BINDIR/childsplay +-VERSION=$($CP --version) +-echo $VERSION +- +-if [ `expr $VERSION \< $DEPEN` -eq 1 ] +-then +- echo " Childsplay version incorrect, please upgrade to at least"; +- echo " version $DEPEN"; +- echo "exit"; +- exit 1 +-fi +- +-if [ ! -f $CP ] +-then echo "############# Can\`t find childsplay ###########" && \ +- echo "Be sure to install childsplay first" && \ +- exit 1 +-fi + + set -e + +-echo -e "\n The path to install the plugins in is $CPDIR." +-echo " If you have installed childsplay in a other place, you can" +-echo " give the full path to childsplay, otherwise just hit enter" +-echo " Hit enter to install in $CPDIR, or give the full path" +-read path +-if [ $path ];then +- if [ -e $path/install.py ];then +- CPDIR=path +- else +- echo "*********** WARNING *************" +- echo " $path does not exists or is not the childsplay directory" +- echo " exit" +- exit 1 +- fi +-fi + echo " Installing in $CPDIR" + + echo "Compiling modules to bytecode..." diff --git a/childsplay-0.90.2-install_plugins_lfc.patch b/childsplay-0.90.2-install_plugins_lfc.patch new file mode 100644 index 0000000..ecd4324 --- /dev/null +++ b/childsplay-0.90.2-install_plugins_lfc.patch @@ -0,0 +1,110 @@ +--- childsplay-0.90.2/childsplay_plugins_lfc-0.90/install.sh 2007-08-25 09:53:57.000000000 +0200 ++++ childsplay-0.90.2/childsplay_plugins_lfc-0.90/install.sh-gil 2008-09-27 05:36:28.000000000 +0200 +@@ -8,32 +8,33 @@ + # However, you can change the "prefix" to "/usr" and childsplay will still + # work. Set it to anything else and your on your own. + +-PREFIX=/usr/local ++PREFIX=/usr + + ################################################################# + # DON'T EDIT BEHIND THIS POINT + ################################################################# + +-if [ $1 ] && [ -e $1 ] +-then PREFIX=$1 +-fi ++DESTDIR= ++ ++[ "$1" ] && DESTDIR="$1" + +-LOCALEDIR=$PREFIX/share/locale +-ASSETMLDIR=/usr/share/assetml ++LOCALEDIR=$DESTDIR$PREFIX/share/locale ++MTDIR=$DESTDIR$PREFIX/bin ++ASSETMLDIR=$DESTDIR$PREFIX/share/assetml + PYTHON=`which python` +-SCOREDIR=/var/games +-DOCDIR=$PREFIX/share/doc/childsplay +-MANDIR=$PREFIX/man/man6 +-CPDIR=$PREFIX/lib/games/childsplay +-SHAREDIR=$PREFIX/share/childsplay +-BINDIR=$PREFIX/games ++SCOREDIR=$DESTDIR/var/games ++DOCDIR=$DESTDIR$PREFIX/share/doc/childsplay ++MANDIR=$DESTDIR$PREFIX/man/man6 ++CPDIR=$DESTDIR$PREFIX/lib/childsplay ++SHAREDIR=$DESTDIR$PREFIX/share/childsplay ++BINDIR=$DESTDIR$PREFIX/bin + SHARELIBDATADIR=$SHAREDIR/lib + SHAREDATADIR=$SHAREDIR/Data + + ################################################## + # Package text to be displayed as last step + # 0 = no readmes to display, 1 = there are readmes +-README=1 ++README=0 + # if README=1 then READMES=names of readmes in CWD + # like this READMES="README README2 README3" + READMES="README" +@@ -42,52 +43,11 @@ + + CWD=`pwd` + +-USERID=`id | sed -e 's/).*//; s/^.*(//;'` +-if [ "$USERID" != "root" ]; then +- echo " You must be root to install the plugins" +- echo " exit" +- exit 1 +-fi +- + echo -e "\n>>>>>>>>>>> Install childsplay plugins >>>>>>>>>>>>>>>>>>>>" + echo -e "\n This release depends on childsplay version >= $DEPEN" +-echo -n " Checking, version = " +-#CP=`which childsplay` +-CP=$BINDIR/childsplay +-VERSION=$($CP --version) +-echo $VERSION +- +-if [ `expr $VERSION \< $DEPEN` -eq 1 ] +-then +- echo " Childsplay version incorrect, please upgrade to at least"; +- echo " version $DEPEN"; +- echo "exit"; +- exit 1 +-fi +- +-if [ ! -f $CP ] +-then echo "############# Can\`t find childsplay ###########" && \ +- echo "Be sure to install childsplay first" && \ +- exit 1 +-fi + + set -e + +-echo -e "\n The path to install the plugins in is $CPDIR." +-echo " If you have installed childsplay in a other place, you can" +-echo " give the full path to childsplay, otherwise just hit enter" +-echo " Hit enter to install in $CPDIR, or give the full path" +-read path +-if [ $path ];then +- if [ -e $path/install.py ];then +- CPDIR=path +- else +- echo "*********** WARNING *************" +- echo " $path does not exists or is not the childsplay directory" +- echo " exit" +- exit 1 +- fi +-fi + echo " Installing in $CPDIR" + + echo "Compiling modules to bytecode..." +@@ -138,5 +98,4 @@ + echo " in your home directory." + echo "***********************************************************************" + echo " Enjoy childsplay :-)" +-echo "" +- ++echo "" +\ No newline at end of file diff --git a/childsplay-0.90.2-install_score.patch b/childsplay-0.90.2-install_score.patch new file mode 100644 index 0000000..2746a40 --- /dev/null +++ b/childsplay-0.90.2-install_score.patch @@ -0,0 +1,11 @@ +--- childsplay-0.90.2/childsplay_plugins-0.90/install.sh 2008-09-27 04:31:33.000000000 +0200 ++++ childsplay-0.90.2/childsplay_plugins-0.90/install.sh-gil 2008-09-27 04:37:00.000000000 +0200 +@@ -77,8 +77,6 @@ + done + + echo -e "\n Trying to add $SCORE to the childsplay score sheet" +-echo " Start add-score.py" +-$PYTHON $CWD/add-score.py $SHAREDATADIR $SCORE + + echo -e "\n Installing MT_users2cvs.py" + echo " Look at the file called README.MT_users2csv for info on how" diff --git a/childsplay-0.90.2-it_lang_plugins_lfc.patch b/childsplay-0.90.2-it_lang_plugins_lfc.patch new file mode 100644 index 0000000..8487127 --- /dev/null +++ b/childsplay-0.90.2-it_lang_plugins_lfc.patch @@ -0,0 +1,1936 @@ +diff -Nru childsplay-0.90.2/childsplay_plugins_lfc-0.90/assetml/childsplay/objectslib/names/it/names.pot childsplay-0.90.2/childsplay_plugins_lfc-0.90/assetml/childsplay-gil/objectslib/names/it/names.pot +--- childsplay-0.90.2/childsplay_plugins_lfc-0.90/assetml/childsplay/objectslib/names/it/names.pot 1970-01-01 01:00:00.000000000 +0100 ++++ childsplay-0.90.2/childsplay_plugins_lfc-0.90/assetml/childsplay-gil/objectslib/names/it/names.pot 2008-09-27 08:28:44.000000000 +0200 +@@ -0,0 +1,215 @@ ++ ++# This is a 'po' file to be used by pyassetml-creator. ++# I've added the po header from pygettext. ++# Please also fill in the fields in the header if you do any ++# translation work. ++ ++# After translating save/rename this file as ++# (for example) 'nl.po' or 'de.po' only do 'pt_BR.po' instead of ++# 'pt.po' if it REALLY nessecary for the translation. ++ ++# SOME DESCRIPTIVE TITLE. ++# Copyright (C) 2003 StasZ ++# FIRST AUTHOR , 2002. ++# ++msgid "" ++msgstr "" ++"Project-Id-Version: 0.1\n" ++"POT-Creation-Date: \n" ++"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" ++"Last-Translator: gil \n" ++"Language-Team: \n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=CHARSET\n" ++"Content-Transfer-Encoding: ENCODING\n" ++"Generated-By: pyassetmlcreator.py from ../../Projects/childsplay-dev/lib/objectslib/names/en/ \n" ++ ++msgid "donkey" ++msgstr "asino" ++ ++msgid "dolphin" ++msgstr "delfino" ++ ++msgid "dog" ++msgstr "cane" ++ ++msgid "crow" ++msgstr "corvo" ++ ++msgid "chimp" ++msgstr "scimpanzé" ++ ++msgid "bear" ++msgstr "orso" ++ ++msgid "badger" ++msgstr "procione" ++ ++msgid "bison" ++msgstr "bisonte" ++ ++msgid "bee" ++msgstr "ape" ++ ++msgid "rooster" ++msgstr "gallo" ++ ++msgid "lark" ++msgstr "allodola" ++ ++msgid "orc" ++msgstr "orca" ++ ++msgid "ram" ++msgstr "ariete" ++ ++msgid "whale" ++msgstr "balena" ++ ++msgid "pig" ++msgstr "maiale" ++ ++msgid "duck" ++msgstr "anatra" ++ ++msgid "caribou" ++msgstr "caribù" ++ ++msgid "beaver" ++msgstr "castoro" ++ ++msgid "doe" ++msgstr "capriolo" ++ ++msgid "xanthia" ++msgstr "xanthia" ++ ++msgid "wombat" ++msgstr "wombat" ++ ++msgid "wolf" ++msgstr "lupo" ++ ++msgid "vulture" ++msgstr "avvoltoio" ++ ++msgid "turkey" ++msgstr "tacchino" ++ ++msgid "toucan" ++msgstr "tucano" ++ ++msgid "tiger" ++msgstr "tigre" ++ ++msgid "squirrel" ++msgstr "scoiattolo" ++ ++msgid "sheep" ++msgstr "pecore" ++ ++msgid "seagull" ++msgstr "gabbiano" ++ ++msgid "rattlesnake" ++msgstr "serpente a sonagli" ++ ++msgid "rabbit" ++msgstr "coniglio" ++ ++msgid "quetzal" ++msgstr "quetzal" ++ ++msgid "puppy" ++msgstr "cucciolo" ++ ++msgid "penguin" ++msgstr "pinguino" ++ ++msgid "owl" ++msgstr "civetta" ++ ++msgid "otter" ++msgstr "lontra" ++ ++msgid "nandou" ++msgstr "nandou" ++ ++msgid "mouse" ++msgstr "topo" ++ ++msgid "lion" ++msgstr "leone" ++ ++msgid "koala" ++msgstr "koala" ++ ++msgid "iguana" ++msgstr "iguana" ++ ++msgid "hyena" ++msgstr "iena" ++ ++msgid "horse" ++msgstr "cavallo" ++ ++msgid "hornet" ++msgstr "frelon" ++ ++msgid "hippopotamus" ++msgstr "ippopotamo" ++ ++msgid "hen" ++msgstr "pollo" ++ ++msgid "grizzly" ++msgstr "grizzly" ++ ++msgid "grasshopper" ++msgstr "cavalletta" ++ ++msgid "gorilla" ++msgstr "gorilla" ++ ++msgid "goat" ++msgstr "capra" ++ ++msgid "giraffe" ++msgstr "giraffa" ++ ++msgid "gander" ++msgstr "oca" ++ ++msgid "frog" ++msgstr "rana" ++ ++msgid "fox" ++msgstr "volpe" ++ ++msgid "fly" ++msgstr "mosca" ++ ++msgid "ferret" ++msgstr "furetto" ++ ++msgid "elephant" ++msgstr "elefante" ++ ++msgid "dromedary" ++msgstr "dromedario" ++ ++msgid "cow" ++msgstr "vache" ++ ++msgid "chamois" ++msgstr "camoscio" ++ ++msgid "bull" ++msgstr "toro" ++ ++msgid "cuckoo" ++msgstr "cuculo" ++ ++msgid "zebra" ++msgstr "zebra" ++ +diff -Nru childsplay-0.90.2/childsplay_plugins_lfc-0.90/assetml/childsplay/objectslib/names/it.pot childsplay-0.90.2/childsplay_plugins_lfc-0.90/assetml/childsplay-gil/objectslib/names/it.pot +--- childsplay-0.90.2/childsplay_plugins_lfc-0.90/assetml/childsplay/objectslib/names/it.pot 1970-01-01 01:00:00.000000000 +0100 ++++ childsplay-0.90.2/childsplay_plugins_lfc-0.90/assetml/childsplay-gil/objectslib/names/it.pot 2008-09-27 08:28:44.000000000 +0200 +@@ -0,0 +1,215 @@ ++ ++# This is a 'po' file to be used by pyassetml-creator. ++# I've added the po header from pygettext. ++# Please also fill in the fields in the header if you do any ++# translation work. ++ ++# After translating save/rename this file as ++# (for example) 'nl.po' or 'de.po' only do 'pt_BR.po' instead of ++# 'pt.po' if it REALLY nessecary for the translation. ++ ++# SOME DESCRIPTIVE TITLE. ++# Copyright (C) 2003 StasZ ++# FIRST AUTHOR , 2002. ++# ++msgid "" ++msgstr "" ++"Project-Id-Version: 0.1\n" ++"POT-Creation-Date: \n" ++"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" ++"Last-Translator: gil \n" ++"Language-Team: \n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=CHARSET\n" ++"Content-Transfer-Encoding: ENCODING\n" ++"Generated-By: pyassetmlcreator.py from ../../Projects/childsplay-dev/lib/objectslib/names/en/ \n" ++ ++msgid "donkey" ++msgstr "asino" ++ ++msgid "dolphin" ++msgstr "delfino" ++ ++msgid "dog" ++msgstr "cane" ++ ++msgid "crow" ++msgstr "corvo" ++ ++msgid "chimp" ++msgstr "scimpanzé" ++ ++msgid "bear" ++msgstr "orso" ++ ++msgid "badger" ++msgstr "procione" ++ ++msgid "bison" ++msgstr "bisonte" ++ ++msgid "bee" ++msgstr "ape" ++ ++msgid "rooster" ++msgstr "gallo" ++ ++msgid "lark" ++msgstr "allodola" ++ ++msgid "orc" ++msgstr "orca" ++ ++msgid "ram" ++msgstr "ariete" ++ ++msgid "whale" ++msgstr "balena" ++ ++msgid "pig" ++msgstr "maiale" ++ ++msgid "duck" ++msgstr "anatra" ++ ++msgid "caribou" ++msgstr "caribù" ++ ++msgid "beaver" ++msgstr "castoro" ++ ++msgid "doe" ++msgstr "capriolo" ++ ++msgid "xanthia" ++msgstr "xanthia" ++ ++msgid "wombat" ++msgstr "wombat" ++ ++msgid "wolf" ++msgstr "lupo" ++ ++msgid "vulture" ++msgstr "avvoltoio" ++ ++msgid "turkey" ++msgstr "tacchino" ++ ++msgid "toucan" ++msgstr "tucano" ++ ++msgid "tiger" ++msgstr "tigre" ++ ++msgid "squirrel" ++msgstr "scoiattolo" ++ ++msgid "sheep" ++msgstr "pecore" ++ ++msgid "seagull" ++msgstr "gabbiano" ++ ++msgid "rattlesnake" ++msgstr "serpente a sonagli" ++ ++msgid "rabbit" ++msgstr "coniglio" ++ ++msgid "quetzal" ++msgstr "quetzal" ++ ++msgid "puppy" ++msgstr "cucciolo" ++ ++msgid "penguin" ++msgstr "pinguino" ++ ++msgid "owl" ++msgstr "civetta" ++ ++msgid "otter" ++msgstr "lontra" ++ ++msgid "nandou" ++msgstr "nandou" ++ ++msgid "mouse" ++msgstr "topo" ++ ++msgid "lion" ++msgstr "leone" ++ ++msgid "koala" ++msgstr "koala" ++ ++msgid "iguana" ++msgstr "iguana" ++ ++msgid "hyena" ++msgstr "iena" ++ ++msgid "horse" ++msgstr "cavallo" ++ ++msgid "hornet" ++msgstr "frelon" ++ ++msgid "hippopotamus" ++msgstr "ippopotamo" ++ ++msgid "hen" ++msgstr "pollo" ++ ++msgid "grizzly" ++msgstr "grizzly" ++ ++msgid "grasshopper" ++msgstr "cavalletta" ++ ++msgid "gorilla" ++msgstr "gorilla" ++ ++msgid "goat" ++msgstr "capra" ++ ++msgid "giraffe" ++msgstr "giraffa" ++ ++msgid "gander" ++msgstr "oca" ++ ++msgid "frog" ++msgstr "rana" ++ ++msgid "fox" ++msgstr "volpe" ++ ++msgid "fly" ++msgstr "mosca" ++ ++msgid "ferret" ++msgstr "furetto" ++ ++msgid "elephant" ++msgstr "elefante" ++ ++msgid "dromedary" ++msgstr "dromedario" ++ ++msgid "cow" ++msgstr "vache" ++ ++msgid "chamois" ++msgstr "camoscio" ++ ++msgid "bull" ++msgstr "toro" ++ ++msgid "cuckoo" ++msgstr "cuculo" ++ ++msgid "zebra" ++msgstr "zebra" ++ +diff -Nru childsplay-0.90.2/childsplay_plugins_lfc-0.90/assetml/childsplay/objectslib/pics/cards/cards.assetml childsplay-0.90.2/childsplay_plugins_lfc-0.90/assetml/childsplay-gil/objectslib/pics/cards/cards.assetml +--- childsplay-0.90.2/childsplay_plugins_lfc-0.90/assetml/childsplay/objectslib/pics/cards/cards.assetml 2007-08-25 09:54:11.000000000 +0200 ++++ childsplay-0.90.2/childsplay_plugins_lfc-0.90/assetml/childsplay-gil/objectslib/pics/cards/cards.assetml 2008-09-27 06:57:27.000000000 +0200 +@@ -5,6 +5,7 @@ + nyandú + nandoe + nandou ++ nandou + + + +@@ -13,6 +14,7 @@ + castor + bever + castor ++ castoro + + + +@@ -21,6 +23,7 @@ + dromedari + dromedaris + dromadaire ++ dromadario + + + +@@ -29,6 +32,7 @@ + girafa + giraf + girafe ++ giraffa + + + +@@ -37,6 +41,7 @@ + llagosta + sprinkhaan + sauterelle ++ cavalletta + + + +@@ -45,6 +50,7 @@ + marrà + ram + belier ++ ariete + + + +@@ -52,6 +58,7 @@ + rat + rat + rat ++ ratto + + + +@@ -60,6 +67,7 @@ + vaca + koe + vache ++ mucca + + + +@@ -67,6 +75,7 @@ + pigeon + pigeon + duif ++ piccione + + + +@@ -75,6 +84,7 @@ + ratolí + muis + souris ++ topo + + + +@@ -83,6 +93,7 @@ + oca + gans + jar ++ oca + + + +@@ -91,6 +102,7 @@ + quetzal + quetzal + quetzal ++ quetzal + + + +@@ -99,6 +111,7 @@ + cucut + koekoek + coucou ++ cuculo + + + +@@ -107,6 +120,7 @@ + cervola + ree + biche ++ capriolo + + + +@@ -115,6 +129,7 @@ + gos + hond + chien ++ cane + + + +@@ -123,6 +138,7 @@ + dofí + dolfijn + dauphin ++ delfino + + + +@@ -131,6 +147,7 @@ + wombat + wombat + wombat ++ wombat + + + +@@ -138,6 +155,7 @@ + kangaroo + kangourou + kangaroe ++ canguro + + + +@@ -145,6 +163,7 @@ + peacock + paon + pauw ++ pavone + + + +@@ -153,6 +172,7 @@ + goril·la + gorilla + gorille ++ gorilla + + + +@@ -161,6 +181,7 @@ + ós + beer + ours ++ orso + + + +@@ -169,6 +190,7 @@ + vespa + horzel + frelon ++ vespa + + + +@@ -177,6 +199,7 @@ + esquirol + eekhoorn + ecureuil ++ scoiattolo + + + +@@ -184,6 +207,7 @@ + mountaingoat + bouquetin + berggeit ++ capra di montagna + + + +@@ -192,6 +216,7 @@ + voltor + gier + vautour ++ avvoltoio + + + +@@ -200,6 +225,7 @@ + elefant + olifant + elephant ++ elefante + + + +@@ -208,6 +234,7 @@ + teixó + wasbeer + blaireau ++ procione + + + +@@ -216,6 +243,7 @@ + ruc + ezel + ane ++ asino + + + +@@ -224,6 +252,7 @@ + tigre + tigre + tijger ++ tigre + + + +@@ -231,6 +260,7 @@ + wapiti + wapiti + wapiti ++ wapiti + + + +@@ -239,6 +269,7 @@ + ximpanzé + chimpansee + singe ++ scimpanzé + + + +@@ -247,6 +278,7 @@ + gall dindi + kalkoen + dinde ++ tacchino + + + +@@ -255,6 +287,7 @@ + caribú + kariboe + caribou ++ caribú + + + +@@ -263,6 +296,7 @@ + mosca + vlieg + mouche ++ mosca + + + +@@ -271,6 +305,7 @@ + rabosa + vos + renard ++ volpe + + + +@@ -279,6 +314,7 @@ + hipopòtam + hippopotame + nijlpaard ++ ippopotamo + + + +@@ -286,6 +322,7 @@ + deer + chevreuil + hert ++ cervo + + + +@@ -293,6 +330,7 @@ + yack + yack + yack ++ yack + + + +@@ -301,6 +339,7 @@ + conill + konijn + lapin ++ coniglio + + + +@@ -308,6 +347,7 @@ + marmot + marmotte + marmot ++ marmotta + + + +@@ -316,6 +356,7 @@ + gall + haan + coq ++ gallo + + + +@@ -324,6 +365,7 @@ + gallina + kip + poule ++ pollo + + + +@@ -332,6 +374,7 @@ + balena + walvis + baleine ++ balena + + + +@@ -339,6 +382,7 @@ + wildboar + sanglier + everzwijn ++ cinghiale + + + +@@ -347,6 +391,7 @@ + fura + fret + furet ++ furetto + + + +@@ -354,6 +399,7 @@ + camel + chameau + kameel ++ cammello + + + +@@ -362,6 +408,7 @@ + cabra + geit + chevre ++ capra + + + +@@ -369,6 +416,7 @@ + zebu + zebu + zeboe ++ zebu + + + +@@ -377,6 +425,7 @@ + granota + kikker + grenouille ++ rana + + + +@@ -385,6 +434,7 @@ + bou + stier + taureau ++ toro + + + +@@ -393,6 +443,7 @@ + abella + bij + abeille ++ ape + + + +@@ -401,6 +452,7 @@ + ànec + eend + canard ++ anatra + + + +@@ -409,6 +461,7 @@ + cavall + paard + cheval ++ cavallo + + + +@@ -417,6 +470,7 @@ + zebra + zebra + zebre ++ zebra + + + +@@ -425,6 +479,7 @@ + xanthia + mot + xanthia ++ xanthia + + + +@@ -433,6 +488,7 @@ + porc + varken + cochon ++ maiale + + + +@@ -441,6 +497,7 @@ + mouette + gavina + zeemeeuw ++ gabbiano + + + +@@ -449,6 +506,7 @@ + alosa + mus + alouette ++ allodola + + + +@@ -457,6 +515,7 @@ + mussol + uil + hibou ++ civetta + + + +@@ -465,6 +524,7 @@ + bisó + bizon + bison ++ bisonte + + + +@@ -472,6 +532,7 @@ + orca + orque + orka ++ orca + + + +@@ -479,6 +540,7 @@ + blackbird + merle + merel ++ merlo + + + +@@ -487,6 +549,7 @@ + coala + koala + koala ++ koala + + + +@@ -495,6 +558,7 @@ + corb + kraai + corbeau ++ corvo + + + +@@ -503,6 +567,7 @@ + iguana + leguaan + iguane ++ iguana + + + +@@ -511,6 +576,7 @@ + pingüí + pinguin + pingouin ++ pinguino + + + +@@ -519,6 +585,7 @@ + lleó + leeuw + lion ++ leone + + + +@@ -527,6 +594,7 @@ + llúdria + otter + otarie ++ lontra + + + +@@ -534,6 +602,7 @@ + tucan + toucan + toekan ++ tucano + + + +diff -Nru childsplay-0.90.2/childsplay_plugins_lfc-0.90/assetml/childsplay/objectslib/pics/cards/po/it.pot childsplay-0.90.2/childsplay_plugins_lfc-0.90/assetml/childsplay-gil/objectslib/pics/cards/po/it.pot +--- childsplay-0.90.2/childsplay_plugins_lfc-0.90/assetml/childsplay/objectslib/pics/cards/po/it.pot 1970-01-01 01:00:00.000000000 +0100 ++++ childsplay-0.90.2/childsplay_plugins_lfc-0.90/assetml/childsplay-gil/objectslib/pics/cards/po/it.pot 2008-09-27 07:54:14.000000000 +0200 +@@ -0,0 +1,236 @@ ++ ++# This is a 'po' file to be used by pyassetml-creator. ++# I've added the po header from pygettext. ++# Please also fill in the fields in the header if you do any ++# translation work. ++ ++# After translating save/rename this file as ++# (for example) 'nl.po' or 'de.po' only do 'pt_BR.po' instead of ++# 'pt.po' if it REALLY nessecary for the translation. ++ ++# SOME DESCRIPTIVE TITLE. ++# Copyright (C) 2003 StasZ ++# FIRST AUTHOR , 2002. ++# ++msgid "" ++msgstr "" ++"Project-Id-Version: 0.1\n" ++"POT-Creation-Date: \n" ++"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" ++"Last-Translator: gil \n" ++"Language-Team: \n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=CHARSET\n" ++"Content-Transfer-Encoding: ENCODING\n" ++"Generated-By: pyassetml-creator.py \n" ++ ++msgid "nandou" ++msgstr "nandou" ++ ++msgid "beaver" ++msgstr "castoro" ++ ++msgid "dromedary" ++msgstr "dromedario" ++ ++msgid "giraffe" ++msgstr "giraffa" ++ ++msgid "grasshopper" ++msgstr "cavalletta" ++ ++msgid "ram" ++msgstr "ariete" ++ ++msgid "rat" ++msgstr "ratto" ++ ++msgid "cow" ++msgstr "mucca" ++ ++msgid "pigeon" ++msgstr "piccione" ++ ++msgid "mouse" ++msgstr "topo" ++ ++msgid "gander" ++msgstr "oca" ++ ++msgid "quetzal" ++msgstr "quetzal" ++ ++msgid "cuckoo" ++msgstr "cuculo" ++ ++msgid "doe" ++msgstr "capriolo" ++ ++msgid "dog" ++msgstr "cane" ++ ++msgid "dolphin" ++msgstr "delfino" ++ ++msgid "wombat" ++msgstr "wombat" ++ ++msgid "kangaroo" ++msgstr "canguro" ++ ++msgid "peacock" ++msgstr "pavone" ++ ++msgid "gorilla" ++msgstr "gorilla" ++ ++msgid "bear" ++msgstr "orso" ++ ++msgid "hornet" ++msgstr "vespa" ++ ++msgid "squirrel" ++msgstr "scoiattolo" ++ ++msgid "mountain_goat" ++msgstr "capra di montagna" ++ ++msgid "vulture" ++msgstr "avvoltoio" ++ ++msgid "elephant" ++msgstr "elefante" ++ ++msgid "badger" ++msgstr "procione" ++ ++msgid "donkey" ++msgstr "asino" ++ ++msgid "tiger" ++msgstr "tigre" ++ ++msgid "wapiti" ++msgstr "wapiti" ++ ++msgid "chimp" ++msgstr "scimpanzé" ++ ++msgid "turkey" ++msgstr "tacchino" ++ ++msgid "caribou" ++msgstr "caribú" ++ ++msgid "fly" ++msgstr "mosca" ++ ++msgid "fox" ++msgstr "volpe" ++ ++msgid "hippopotamus" ++msgstr "ippopotamo" ++ ++msgid "deer" ++msgstr "cervo" ++ ++msgid "yack" ++msgstr "yack" ++ ++msgid "rabbit" ++msgstr "coniglio" ++ ++msgid "marmot" ++msgstr "marmotta" ++ ++msgid "rooster" ++msgstr "gallo" ++ ++msgid "hen" ++msgstr "pollo" ++ ++msgid "whale" ++msgstr "balena" ++ ++msgid "wildboar" ++msgstr "cinghiale" ++ ++msgid "ferret" ++msgstr "furetto" ++ ++msgid "camel" ++msgstr "cammello" ++ ++msgid "goat" ++msgstr "capra" ++ ++msgid "zebu" ++msgstr "zebu" ++ ++msgid "frog" ++msgstr "rana" ++ ++msgid "bull" ++msgstr "toro" ++ ++msgid "bee" ++msgstr "ape" ++ ++msgid "duck" ++msgstr "anatra" ++ ++msgid "horse" ++msgstr "cavallo" ++ ++msgid "zebra" ++msgstr "zebra" ++ ++msgid "xanthia" ++msgstr "xanthia" ++ ++msgid "pig" ++msgstr "maiale" ++ ++msgid "seagull" ++msgstr "gabbiano" ++ ++msgid "lark" ++msgstr "allodola" ++ ++msgid "owl" ++msgstr "civetta" ++ ++msgid "bison" ++msgstr "bisonte" ++ ++msgid "orca" ++msgstr "orca" ++ ++msgid "blackbird" ++msgstr "merlo" ++ ++msgid "koala" ++msgstr "koala" ++ ++msgid "crow" ++msgstr "corvo" ++ ++msgid "iguana" ++msgstr "iguana" ++ ++msgid "penguin" ++msgstr "pinguino" ++ ++msgid "wallabi" ++msgstr "wallabi" ++ ++msgid "lion" ++msgstr "leone" ++ ++msgid "otter" ++msgstr "lontra" ++ ++msgid "tucan" ++msgstr "tucano" ++ +diff -Nru childsplay-0.90.2/childsplay_plugins_lfc-0.90/assetml/childsplay/objectslib/sounds/po/it.pot childsplay-0.90.2/childsplay_plugins_lfc-0.90/assetml/childsplay-gil/objectslib/sounds/po/it.pot +--- childsplay-0.90.2/childsplay_plugins_lfc-0.90/assetml/childsplay/objectslib/sounds/po/it.pot 1970-01-01 01:00:00.000000000 +0100 ++++ childsplay-0.90.2/childsplay_plugins_lfc-0.90/assetml/childsplay-gil/objectslib/sounds/po/it.pot 2008-09-27 08:07:07.000000000 +0200 +@@ -0,0 +1,236 @@ ++ ++# This is a 'po' file to be used by pyassetml-creator. ++# I've added the po header from pygettext. ++# Please also fill in the fields in the header if you do any ++# translation work. ++ ++# After translating save/rename this file as ++# (for example) 'nl.po' or 'de.po' only do 'pt_BR.po' instead of ++# 'pt.po' if it REALLY nessecary for the translation. ++ ++# SOME DESCRIPTIVE TITLE. ++# Copyright (C) 2003 StasZ ++# FIRST AUTHOR , 2002. ++# ++msgid "" ++msgstr "" ++"Project-Id-Version: 0.1\n" ++"POT-Creation-Date: \n" ++"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" ++"Last-Translator: gil \n" ++"Language-Team: \n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=CHARSET\n" ++"Content-Transfer-Encoding: ENCODING\n" ++"Generated-By: pyassetml-creator.py \n" ++ ++msgid "nandou" ++msgstr "nandou" ++ ++msgid "beaver" ++msgstr "castoro" ++ ++msgid "dromedary" ++msgstr "dromedario" ++ ++msgid "giraffe" ++msgstr "giraffa" ++ ++msgid "grasshopper" ++msgstr "cavalletta" ++ ++msgid "ram" ++msgstr "ariete" ++ ++msgid "rat" ++msgstr "ratto" ++ ++msgid "cow" ++msgstr "mucca" ++ ++msgid "pigeon" ++msgstr "piccione" ++ ++msgid "mouse" ++msgstr "topo" ++ ++msgid "gander" ++msgstr "oca" ++ ++msgid "quetzal" ++msgstr "quetzal" ++ ++msgid "cuckoo" ++msgstr "cuculo" ++ ++msgid "doe" ++msgstr "capriolo" ++ ++msgid "dog" ++msgstr "cane" ++ ++msgid "dolphin" ++msgstr "delfino" ++ ++msgid "wombat" ++msgstr "wombat" ++ ++msgid "kangaroo" ++msgstr "canguro" ++ ++msgid "peacock" ++msgstr "pavone" ++ ++msgid "gorilla" ++msgstr "gorilla" ++ ++msgid "bear" ++msgstr "orso" ++ ++msgid "hornet" ++msgstr "vespa" ++ ++msgid "squirrel" ++msgstr "scoiattolo" ++ ++msgid "mountain_goat" ++msgstr "capra di montagna" ++ ++msgid "vulture" ++msgstr "avvoltoio" ++ ++msgid "elephant" ++msgstr "elefante" ++ ++msgid "badger" ++msgstr "procione" ++ ++msgid "donkey" ++msgstr "asino" ++ ++msgid "tiger" ++msgstr "tigre" ++ ++msgid "wapiti" ++msgstr "wapiti" ++ ++msgid "chimp" ++msgstr "scimpanzé" ++ ++msgid "turkey" ++msgstr "tacchino" ++ ++msgid "caribou" ++msgstr "caribú" ++ ++msgid "fly" ++msgstr "mosca" ++ ++msgid "fox" ++msgstr "volpe" ++ ++msgid "hippopotamus" ++msgstr "ippopotamo" ++ ++msgid "deer" ++msgstr "cervo" ++ ++msgid "yack" ++msgstr "yack" ++ ++msgid "rabbit" ++msgstr "coniglio" ++ ++msgid "marmot" ++msgstr "marmotta" ++ ++msgid "rooster" ++msgstr "gallo" ++ ++msgid "hen" ++msgstr "pollo" ++ ++msgid "whale" ++msgstr "balena" ++ ++msgid "wildboar" ++msgstr "cinghiale" ++ ++msgid "ferret" ++msgstr "furetto" ++ ++msgid "camel" ++msgstr "cammello" ++ ++msgid "goat" ++msgstr "capra" ++ ++msgid "zebu" ++msgstr "zebu" ++ ++msgid "frog" ++msgstr "rana" ++ ++msgid "bull" ++msgstr "toro" ++ ++msgid "bee" ++msgstr "ape" ++ ++msgid "duck" ++msgstr "anatra" ++ ++msgid "horse" ++msgstr "cavallo" ++ ++msgid "zebra" ++msgstr "zebra" ++ ++msgid "xanthia" ++msgstr "xanthia" ++ ++msgid "pig" ++msgstr "maiale" ++ ++msgid "seagull" ++msgstr "gabbiano" ++ ++msgid "lark" ++msgstr "allodola" ++ ++msgid "owl" ++msgstr "civetta" ++ ++msgid "bison" ++msgstr "bisonte" ++ ++msgid "orca" ++msgstr "orca" ++ ++msgid "blackbird" ++msgstr "merlo" ++ ++msgid "koala" ++msgstr "koala" ++ ++msgid "crow" ++msgstr "corvo" ++ ++msgid "iguana" ++msgstr "iguana" ++ ++msgid "penguin" ++msgstr "pinguino" ++ ++msgid "wallabi" ++msgstr "wallabi" ++ ++msgid "lion" ++msgstr "leone" ++ ++msgid "otter" ++msgstr "lontra" ++ ++msgid "tucan" ++msgstr "tucano" ++ +diff -Nru childsplay-0.90.2/childsplay_plugins_lfc-0.90/assetml/childsplay/objectslib/sounds/sounds.assetml childsplay-0.90.2/childsplay_plugins_lfc-0.90/assetml/childsplay-gil/objectslib/sounds/sounds.assetml +--- childsplay-0.90.2/childsplay_plugins_lfc-0.90/assetml/childsplay/objectslib/sounds/sounds.assetml 2007-08-25 09:54:05.000000000 +0200 ++++ childsplay-0.90.2/childsplay_plugins_lfc-0.90/assetml/childsplay-gil/objectslib/sounds/sounds.assetml 2008-09-27 07:45:45.000000000 +0200 +@@ -3,392 +3,459 @@ + + nandou + nandou ++ nandou + + + + + beaver + castor ++ castoro + + + + + dromedary + dromadaire ++ dromadario + + + + + giraffe + girafe ++ giraffa + + + + + grasshopper + sauterelle ++ cavalletta + + + + + ram + belier ++ ariete + + + + + cow + vache ++ mucca + + + + + rattlesnake + serpent a sonnette ++ serpente a sonagli + + + + + mouse + souris ++ topo + + + + + gander + jar ++ oca + + + + + quetzal + quetzal ++ quetzal + + + + + cuckoo + coucou ++ cuculo + + + + + doe + biche ++ capriolo + + + + + dog + chien ++ cane + + + + + grizzly + grizzly ++ grizzly + + + + + dolphin + dauphin ++ delfino + + + + + wombat + wombat ++ wombat + + + + + peacock ++ pavone + + + + + gorilla + gorille ++ gorilla + + + + + bear + ours ++ orso + + + + + hornet + frelon ++ vespa + + + + + mountaingoat ++ capra di montagna + + + + + vulture + vautour ++ avvoltoio + + + + + elephant + elephant ++ elefante + + + + + badger + blaireau ++ procione + + + + + donkey + ane ++ asino + + + + + tiger + tigre ++ tigre + + + + + chimp + singe ++ scimpanzé + + + + + turkey + dinde ++ tacchino + + + + + fly + mouche ++ mosca + + + + + wolf + loup ++ lupo + + + + + fox + renard ++ volpe + + + + + hipopotamus ++ ippopotamo + + + + + deer ++ cervo + + + + + rabbit + lapin ++ coniglio + + + + + hind ++ cerva + + + + + rooster + coq ++ gallo + + + + + hen + poule ++ pollo + + + + + whale + baleine ++ balena + + + + + ferret + furet ++ furetto + + + + + camel ++ cammello + + + + + goat + chevre ++ capra + + + + + frog + grenouille ++ rana + + + + + bull + taureau ++ toro + + + + + bee + abeille ++ ape + + + + + goats ++ caprini + + + + + duck + canard ++ anatra + + + + + horse + cheval ++ cavallo + + + + + zebra + zebre ++ zebra + + + + + puppy + chiot ++ cucciolo + + + + + xanthia + xanthia ++ xanthia + + + + + pig + cochon ++ maiale + + + + + seagull + mouette ++ gabbiano + + + + + lark + alouette ++ allodola + + + + + owl + hibou ++ civetta + + + + + sheep + mouton ++ pecora + + + + + hyena + hyene ++ iena + + + + + bison + bison ++ bisonte + + + + + orca ++ orca + + + + + blackbird ++ merlo + + + + + koala + koala ++ koala + + + + + crow + corbeau ++ corvo + + + + + iguana + iguane ++ iguana + + + + + penguin + pingouin ++ pinguino + + + + + lion + lion ++ leone + + + + + otter + otarie ++ lontra + + + + + tucan ++ tucano + + + diff --git a/childsplay-0.90.2-locale_it.patch b/childsplay-0.90.2-locale_it.patch new file mode 100644 index 0000000..9d2a4b8 --- /dev/null +++ b/childsplay-0.90.2-locale_it.patch @@ -0,0 +1,98 @@ +--- childsplay-0.90.2/assetml/childsplay/memory-136x136/memory-136x136.assetml 2008-01-17 15:38:57.000000000 +0100 ++++ childsplay-0.90.2/assetml/childsplay/memory-136x136/memory-136x136.assetml-gil 2008-09-27 04:27:32.000000000 +0200 +@@ -10,6 +10,7 @@ + Pomme + תפוח + Apel ++ Mela + Appel + Яблоко + äpple +@@ -27,6 +28,7 @@ + Ours + דוב + Beruang ++ Orso + Beer + Медведь + Björn +@@ -44,6 +46,7 @@ + Bateau + סירה + Perahu ++ Nave + Boot + Корабль + Båt +@@ -61,6 +64,7 @@ + Pain + ציפור + Roti ++ Pane + Brood + Хлеб + Bröd +@@ -78,6 +82,7 @@ + Voiture + מכונית + Mobil ++ Auto + Auto + Машина + Bil +@@ -96,6 +101,7 @@ + Chien + כלב + Anjing ++ Cane + Hond + Собака + Hund +@@ -113,6 +119,7 @@ + Poisson + דג + Ikan ++ Pesce + Vis + Рыба + Fisk +@@ -131,6 +138,7 @@ + Raisins + ענבים + Anggur ++ Uva + Druiven + Виноград + Vindruvor +@@ -148,6 +156,7 @@ + Lion + אריה + Singa ++ Leone + Leeuw + Лев + Lejon +@@ -166,6 +175,7 @@ + Singe + קוף + Monyet ++ Scimmia + Aap + Обезьяна + Apa +@@ -183,6 +193,7 @@ + Avion + מטוס + Pesawat ++ Aereo + Vliegtuig + Самолёт + Flygplan +@@ -200,6 +211,7 @@ + Arbre + עץ + Pohon ++ Albero + Boom + Дерево + Träd diff --git a/childsplay-0.90.2-locale_it_font.patch b/childsplay-0.90.2-locale_it_font.patch new file mode 100644 index 0000000..a7201d0 --- /dev/null +++ b/childsplay-0.90.2-locale_it_font.patch @@ -0,0 +1,19 @@ +--- childsplay-0.90.2/utils.py 2008-01-17 15:38:56.000000000 +0100 ++++ utils.py 2008-09-30 10:18:24.000000000 +0200 +@@ -169,6 +169,16 @@ + else: + print "No suitable fonset found for your locale" + rtl_ttf = None ++ elif loc=='it': ++ if os.path.exists('/usr/lib/site-python/pygame/freesansbold.ttf'): ++ rtl_ttf = '/usr/lib/site-python/pygame/freesansbold.ttf' ++ elif os.path.exists('/usr/lib/site-python/pygame/freesansbold.ttf'): ++ rtl_ttf = '/usr/lib/site-python/pygame/freesansbold.ttf' ++ elif os.path.exists(os.path.join(DATADIR,'freesansbold.ttf')): ++ rtl_ttf = os.path.join(DATADIR,'freesansbold.ttf') ++ else: ++ print "No suitable fonset found for your locale" ++ rtl_ttf = None + + if UT_DEBUG: print "using fontset %s \nfor RTL locale" % rtl_ttf + return (rtl,rtl_ttf,rtl_seq) diff --git a/childsplay-1.6-python-SQLAlchemy-0.7.patch b/childsplay-1.6-python-SQLAlchemy-0.7.patch new file mode 100644 index 0000000..0114435 --- /dev/null +++ b/childsplay-1.6-python-SQLAlchemy-0.7.patch @@ -0,0 +1,19 @@ +--- a/SPDataManager.py ++++ b/SPDataManager.py +@@ -38,7 +38,6 @@ + + try: + import sqlalchemy as sqla +- import sqlalchemy.exceptions as sqlae + import SQLTables + except ImportError: + module_logger.exception("No sqlalchemy package found") +@@ -82,7 +81,7 @@ + sqltb = SQLTables.SqlTables(self.metadata) + # returns lookup table to get table objects by name and creates tables + self.tables = sqltb._create_tables(self.metadata, self.engine) +- except (AttributeError, sqlae.SQLAlchemyError), info: ++ except (AttributeError, sqla.exceptions.SQLAlchemyError), info: + self.logger.exception("Failed to start the DBase, %s" % info) + raise MyError, info + else: diff --git a/childsplay-icon.png b/childsplay-icon.png new file mode 100644 index 0000000000000000000000000000000000000000..ab219075610a2e378db9525a622b6f7491881d48 GIT binary patch literal 2759 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 N002ovPDHLkV1icaZaM$} literal 0 HcmV?d00001 diff --git a/childsplay.desktop b/childsplay.desktop new file mode 100644 index 0000000..fd5060b --- /dev/null +++ b/childsplay.desktop @@ -0,0 +1,13 @@ +[Desktop Entry] +Encoding=UTF-8 +Name=Childsplay +GenericName=Educational suite +GenericName[it]=Suite di giochi educativi +Comment=Educational game starting at 2 years old +Comment[it]=Giochi educativi a partire dai due anni +Exec=childsplay +Icon=/usr/share/pixmaps/childsplay.png +Terminal=false +StartupNotify=false +Type=Application +Categories=Application;Education; diff --git a/childsplay.spec b/childsplay.spec new file mode 100644 index 0000000..22454b7 --- /dev/null +++ b/childsplay.spec @@ -0,0 +1,127 @@ +%define plugins_ver 0.90 +%define asound_ver 0.9.1 + +Name: childsplay +Version: 1.6 +Release: 3mamba +Summary: A 'suite' of educational games for young children +Group: Applications/Educational +Vendor: openmamba +Distribution: openmamba +Packager: Aleph0 +URL: http://childsplay.sourceforge.net/ +Source0: http://downloads.sourceforge.net/project/schoolsplay/childsplay_sp/%{version}/childsplay-%{version}.tgz +#Source1: http://downloads.sourceforge.net/sourceforge/%{name}/childsplay_plugins-%{plugins_ver}.tgz +Source2: %{name}.desktop +Source3: http://downloads.sourceforge.net/project/schoolsplay/alphabet_sounds/%{asound_ver}/alphabet_sounds_ca-%{asound_ver}.tgz +Source4: http://downloads.sourceforge.net/project/schoolsplay/alphabet_sounds/%{asound_ver}/alphabet_sounds_de-%{asound_ver}.tgz +Source5: http://downloads.sourceforge.net/project/schoolsplay/alphabet_sounds/%{asound_ver}/alphabet_sounds_es-%{asound_ver}.tgz +Source6: http://downloads.sourceforge.net/project/schoolsplay/alphabet_sounds/%{asound_ver}/alphabet_sounds_fr-%{asound_ver}.tgz +Source7: http://downloads.sourceforge.net/project/schoolsplay/alphabet_sounds/%{asound_ver}/alphabet_sounds_it-%{asound_ver}.tgz +Source8: http://downloads.sourceforge.net/project/schoolsplay/alphabet_sounds/%{asound_ver}/alphabet_sounds_nl-%{asound_ver}.tgz +Source9: http://downloads.sourceforge.net/project/schoolsplay/alphabet_sounds/%{asound_ver}/alphabet_sounds_ru-%{asound_ver}.tgz +Source10: http://downloads.sourceforge.net/project/schoolsplay/alphabet_sounds/%{asound_ver}/alphabet_sounds_sv-0.9.2.tgz +Source11: http://downloads.sourceforge.net/project/schoolsplay/alphabet_sounds/%{asound_ver}/alphabet_sounds_pt-%{asound_ver}.tgz +#Source13: http://downloads.sourceforge.net/sourceforge/%{name}/childsplay_plugins_lfc-%{plugins_ver}.tgz +Source14: %{name}-icon.png +Patch0: childsplay-0.80.3.1-install.patch +Patch1: childsplay-0.90.2-locale_it.patch +Patch2: childsplay-0.90.2-install_plugins_lfc.patch +Patch3: childsplay-0.90.2-install_plugins.patch +Patch4: childsplay-0.90.2-install_score.patch +Patch5: childsplay-0.80.3.1-childsplay_sh.patch +Patch6: childsplay-0.90.2-it_lang_plugins_lfc.patch +Patch7: childsplay-0.90.2-locale_it_font.patch +Patch8: childsplay-1.6-python-SQLAlchemy-0.7.patch +License: GPL +## AUTOBUILDREQ-BEGIN +BuildRequires: libpython-devel +## AUTOBUILDREQ-END +BuildRequires: gettext-devel +BuildRequires: libSDL-devel +BuildRequires: libSDL_image-devel +BuildRequires: libSDL_ttf-devel +BuildRequires: libSDL_mixer-devel +BuildRequires: libogg-devel +Requires: python-pygame +Requires: python-SQLAlchemy +Requires: libfribidi +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +Childsplay is a 'suite' of educational games for young children, like gcompris, but without the overkill of c/c++ and the gnome environ. +Also the use of the SDL libraries makes smooth animation and the playing of sound very easy. + +%prep +%setup -q +%patch8 -p1 + +%build +sed -i "s|/usr/local|%{buildroot}%{_prefix}|" setup.py + +%install +[ "%{buildroot}" != / ] && rm -rf %{buildroot} +python setup.py install \ + --root=%{buildroot} << _EOF + +_EOF + +# create the italian locale from the italian catalog file +##install -d locale/it/LC_MESSAGES +##/usr/bin/msgfmt doc/po/it/childsplay.po \ +## -o locale/it/LC_MESSAGES/%{name}.mo + +#LANG=${LANG/\.UTF-8/} ./INSTALL.sh %{buildroot} +#ln -sf /var/games/childsplay.score %{buildroot}%{_datadir}/childsplay/Data/childsplay.score + +%{find_lang} %{name}_sp + +#cd childsplay_plugins-%{plugins_ver} +#./install.sh %{buildroot} + +install -D -m644 %{SOURCE2} %{buildroot}%{_datadir}/applications/%{name}.desktop +install -D -m0644 %{SOURCE14} %{buildroot}%{_datadir}/pixmaps/childsplay.png +sed -i "s,%{buildroot},," %{buildroot}%{python_sitearch}/childsplay_sp/SPBasePaths.py +rm -f %{buildroot}%{python_sitearch}/childsplay_sp/SPBasePaths.py + +%clean +[ "%{buildroot}" != / ] && rm -rf %{buildroot} + +%files -f %{name}_sp.lang +%defattr(-,root,root) +%{_bindir}/childsplay +%{python_sitearch}/childsplay_sp-*-py*.egg-info +%dir %{python_sitearch}/childsplay_sp +%{python_sitearch}/childsplay_sp/* +%dir %{_datadir}/childsplay_sp +%{_datadir}/childsplay_sp/* +%{_datadir}/pixmaps/childsplay.png +%{_datadir}/applications/childsplay.desktop +%dir %{_datadir}/sp_alphabetsounds +%{_datadir}/sp_alphabetsounds/* +%dir %{_docdir}/childsplay_sp +%{_docdir}/childsplay_sp/* + +%changelog +* Sun Jun 02 2013 Silvan Calarco 1.6-3mamba +- python 2.7 mass rebuild + +* Tue Dec 04 2012 Silvan Calarco 1.6-2mamba +- added requirement and patch for python-SQLAlchemy 0.7 + +* Sat Jul 21 2012 Automatic Build System 1.6-1mamba +- update to 1.6 + +* Wed Aug 11 2010 Silvan Calarco 0.90.2-2mamba +- fixed a syntax error in locale_it_font.patch preventing program to start +- fixed desktop menu icon + +* Tue Sep 30 2008 Tiziana Ferro 0.90.2-1mamba +- update to version 0.90.2 + +* Fri Nov 11 2005 Davide Madrisan 0.80.3.1-1qilnx +- update to version 0.80.3.1 by autospec + +* Wed Jan 19 2005 Davide Madrisan 0.80.1-1qilnx +- package created by autospec +- added italian localisation