No more childsplay-plugins.
This commit is contained in:
parent
c76378eca5
commit
032544ed98
@ -1,37 +0,0 @@
|
||||
# $OpenBSD: Makefile,v 1.15 2013/03/11 11:07:38 espie Exp $
|
||||
|
||||
COMMENT= additional games modules for childsplay
|
||||
|
||||
V= 0.85.2
|
||||
DISTNAME= childsplay_plugins-${V}
|
||||
REVISION = 4
|
||||
EXTRACT_SUFX= .tgz
|
||||
|
||||
CATEGORIES= games education
|
||||
|
||||
HOMEPAGE= http://childsplay.sourceforge.net/
|
||||
|
||||
MAINTAINER= Antoine Jacoutot <ajacoutot@openbsd.org>
|
||||
|
||||
# GPLv2
|
||||
PERMIT_PACKAGE_CDROM= Yes
|
||||
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=childsplay/}
|
||||
|
||||
MODULES= lang/python
|
||||
RUN_DEPENDS= games/childsplay>=0.84
|
||||
|
||||
PKG_ARCH= *
|
||||
NO_BUILD= Yes
|
||||
NO_TEST= Yes
|
||||
|
||||
do-install:
|
||||
perl -pi -e 's,!!LOCALBASE!!,${LOCALBASE},g;' \
|
||||
-e 's,!!MODPY_BIN!!,${MODPY_BIN},g;' \
|
||||
-e 's,!!DESTDIR!!,${DESTDIR},g' \
|
||||
${WRKSRC}/install.sh
|
||||
perl -pi -e 's,/usr/local/games,${LOCALBASE}/share,g' \
|
||||
${WRKSRC}/README ${WRKSRC}/README-PACKID
|
||||
cd ${WRKSRC} && /bin/sh install.sh
|
||||
|
||||
.include <bsd.port.mk>
|
@ -1,5 +0,0 @@
|
||||
MD5 (childsplay_plugins-0.85.2.tgz) = AV6lLwNhT3uM9Hl9GP8yGw==
|
||||
RMD160 (childsplay_plugins-0.85.2.tgz) = B9kyZJrQibYqKu02nXBXVSZv30o=
|
||||
SHA1 (childsplay_plugins-0.85.2.tgz) = D63p3/aWG7Y/CSuW+/kW025vJzs=
|
||||
SHA256 (childsplay_plugins-0.85.2.tgz) = 8LZVrMeYIcO5H5zzb1IuCFgYal5+Z4XnZdC474C3Vsg=
|
||||
SIZE (childsplay_plugins-0.85.2.tgz) = 4534418
|
@ -1,179 +0,0 @@
|
||||
$OpenBSD: patch-install_sh,v 1.1.1.1 2006/11/13 06:20:17 ajacoutot Exp $
|
||||
--- install.sh.orig Sun Oct 22 09:03:46 2006
|
||||
+++ install.sh Sun Nov 12 17:28:46 2006
|
||||
@@ -1,4 +1,4 @@
|
||||
-#!/bin/bash
|
||||
+#!/bin/sh
|
||||
# install childsplay.
|
||||
# Be aware that childsplay probably won't work when you edit this file :-(
|
||||
# As of 11/2004 childsplay will be converted to follow the File System
|
||||
@@ -8,7 +8,7 @@
|
||||
# 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=!!LOCALBASE!!
|
||||
|
||||
#################################################################
|
||||
# DON'T EDIT BEHIND THIS POINT
|
||||
@@ -20,17 +20,29 @@ fi
|
||||
|
||||
LOCALEDIR=$PREFIX/share/locale
|
||||
MTDIR=$PREFIX/bin
|
||||
-ASSETMLDIR=/usr/share/assetml
|
||||
-PYTHON=`which python`
|
||||
+ASSETMLDIR=$PREFIX/share/assetml
|
||||
+PYTHON=!!MODPY_BIN!!
|
||||
SCOREDIR=/var/games
|
||||
-DOCDIR=$PREFIX/share/doc/childsplay
|
||||
+DOCDIR=$PREFIX/share/doc/childsplay-plugins
|
||||
MANDIR=$PREFIX/man/man6
|
||||
-CPDIR=$PREFIX/lib/games/childsplay
|
||||
+CPDIR=$PREFIX/share/childsplay
|
||||
SHAREDIR=$PREFIX/share/childsplay
|
||||
BINDIR=$PREFIX/games
|
||||
SHARELIBDATADIR=$SHAREDIR/lib
|
||||
SHAREDATADIR=$SHAREDIR/Data
|
||||
|
||||
+echo "Making directorys"
|
||||
+mkdir -p !!DESTDIR!!/$CPDIR
|
||||
+#mkdir -p !!DESTDIR!!/$CPDIR/lib
|
||||
+mkdir -p !!DESTDIR!!/$DOCDIR
|
||||
+mkdir -p !!DESTDIR!!/$LOCALEDIR
|
||||
+mkdir -p !!DESTDIR!!/$ASSETMLDIR
|
||||
+mkdir -p !!DESTDIR!!/$MANDIR
|
||||
+mkdir -p !!DESTDIR!!/$SHAREDIR
|
||||
+mkdir -p !!DESTDIR!!/$SHAREDATADIR/icons
|
||||
+mkdir -p !!DESTDIR!!/$SHARELIBDATADIR
|
||||
+mkdir -p !!DESTDIR!!/$MTDIR
|
||||
+
|
||||
##################################################
|
||||
# Package text to be displayed as last step
|
||||
# 0 = no readmes to display, 1 = there are readmes
|
||||
@@ -45,118 +57,29 @@ CWD=`pwd`
|
||||
# the names of which plugins are to be added to the score file
|
||||
SCORE="Packid,Numbers,Soundmemory,Fallingletters,Findsound,Findsound2,Billiard"
|
||||
|
||||
-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..."
|
||||
-$PYTHON $CPDIR/install.py --compile $CWD/lib
|
||||
-
|
||||
echo " Copy libraries"
|
||||
for DIR in `ls $CWD/lib`
|
||||
do
|
||||
if [ -d $CWD/lib/$DIR ]
|
||||
- then cp -rf $CWD/lib/$DIR $SHARELIBDATADIR
|
||||
- else cp -f $CWD/lib/$DIR $CPDIR/lib
|
||||
+ then cp -rf $CWD/lib/$DIR !!DESTDIR!!/$SHARELIBDATADIR
|
||||
+ else cp -f $CWD/lib/$DIR !!DESTDIR!!/$CPDIR/lib
|
||||
fi
|
||||
done
|
||||
|
||||
echo " Copy misc. data files"
|
||||
-cp -rf $CWD/Data/*.icon.png $SHAREDATADIR/icons/
|
||||
-cp -rf $CWD/Data/AlphabetSounds $SHAREDATADIR/
|
||||
+cp -rf $CWD/Data/*.icon.png !!DESTDIR!!/$SHAREDATADIR/icons/
|
||||
+cp -rf $CWD/Data/AlphabetSounds !!DESTDIR!!/$SHAREDATADIR/
|
||||
|
||||
echo " Copy assetml files"
|
||||
-cp -rf $CWD/assetml/* $ASSETMLDIR
|
||||
+cp -rf $CWD/assetml/* !!DESTDIR!!/$ASSETMLDIR
|
||||
|
||||
echo " Copy README's to the childsplay doc directory"
|
||||
for name in $READMES;do
|
||||
- cp -f $CWD/$name $DOCDIR/$name
|
||||
+ cp -f $CWD/$name !!DESTDIR!!/$DOCDIR/$name
|
||||
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"
|
||||
-echo " to use it. It usage is intended for teachers who want to an"
|
||||
-echo " users resume of the multiplication tables users."
|
||||
-cp -f $CWD/MT_users2csv.py $MTDIR/MT_users2csv.py
|
||||
-chmod a+x $MTDIR/MT_users2csv.py
|
||||
-
|
||||
-echo -e "\n Everything installed, enjoy\n"
|
||||
-echo -e "\n***************** IMPORTANT *************************"
|
||||
-echo "If you find any bugs please put any output in a email"
|
||||
-echo "And send it to: childsplay@users.sourceforge.net."
|
||||
-echo "BUG REPORTS ARE THE MOST IMPORTANT THINGS YOU CAN DO"
|
||||
-echo ""
|
||||
-
|
||||
-if [ $README == 1 ];then
|
||||
- echo " Read the README's (if any) that came with these packages,"
|
||||
- echo " they contains directions on how to translate some"
|
||||
- echo " text files used by the games in your own language"
|
||||
- echo -e "\nHit any key to read the readme(s), enter to quit"
|
||||
- read key
|
||||
- if [ $key ];then
|
||||
- for name in $READMES;do
|
||||
- cat $name >> chplREADMEScat
|
||||
- done
|
||||
- `which more` chplREADMEScat
|
||||
- rm chplREADMEScat
|
||||
- fi
|
||||
-fi
|
||||
-
|
||||
-echo ""
|
||||
-echo "***********************************************************************"
|
||||
-echo " Childsplay and some of the games it contains uses"
|
||||
-echo " configuration files."
|
||||
-echo " You can find these files in the dot directory called '.childsplay'"
|
||||
-echo " in your home directory."
|
||||
-echo "***********************************************************************"
|
||||
-echo " Enjoy childsplay :-)"
|
||||
-echo ""
|
||||
-
|
||||
+cp -f $CWD/MT_users2csv.py !!DESTDIR!!/$MTDIR/MT_users2csv.py
|
||||
+chmod a+x !!DESTDIR!!/$MTDIR/MT_users2csv.py
|
@ -1 +0,0 @@
|
||||
This package contains some additional games for childsplay.
|
@ -1,267 +0,0 @@
|
||||
@comment $OpenBSD: PLIST,v 1.2 2006/12/08 06:54:33 ajacoutot Exp $
|
||||
bin/MT_users2csv.py
|
||||
share/assetml/childsplay/sounds-misc/
|
||||
share/assetml/childsplay/sounds-misc/catmeow.ogg
|
||||
share/assetml/childsplay/sounds-misc/cow.ogg
|
||||
share/assetml/childsplay/sounds-misc/elephant.ogg
|
||||
share/assetml/childsplay/sounds-misc/frog.ogg
|
||||
share/assetml/childsplay/sounds-misc/lion.ogg
|
||||
share/assetml/childsplay/sounds-misc/passby.ogg
|
||||
share/assetml/childsplay/sounds-misc/phone1.ogg
|
||||
share/assetml/childsplay/sounds-misc/plane.ogg
|
||||
share/assetml/childsplay/sounds-misc/po/
|
||||
share/assetml/childsplay/sounds-misc/po/Translation.raw
|
||||
share/assetml/childsplay/sounds-misc/police.ogg
|
||||
share/assetml/childsplay/sounds-misc/rocket.ogg
|
||||
share/assetml/childsplay/sounds-misc/rooster.ogg
|
||||
share/assetml/childsplay/sounds-misc/sheep.ogg
|
||||
share/assetml/childsplay/sounds-misc/slideup.ogg
|
||||
share/assetml/childsplay/sounds-misc/smackzin.ogg
|
||||
share/assetml/childsplay/sounds-misc/sneeze3.ogg
|
||||
share/assetml/childsplay/sounds-misc/sounds-misc.assetml
|
||||
share/assetml/childsplay/sounds-misc/tomtom.ogg
|
||||
share/assetml/childsplay/sounds-misc/train.ogg
|
||||
share/childsplay/Data/AlphabetSounds/
|
||||
share/childsplay/Data/AlphabetSounds/en/
|
||||
share/childsplay/Data/AlphabetSounds/en/1.ogg
|
||||
share/childsplay/Data/AlphabetSounds/en/10.ogg
|
||||
share/childsplay/Data/AlphabetSounds/en/11.ogg
|
||||
share/childsplay/Data/AlphabetSounds/en/12.ogg
|
||||
share/childsplay/Data/AlphabetSounds/en/13.ogg
|
||||
share/childsplay/Data/AlphabetSounds/en/14.ogg
|
||||
share/childsplay/Data/AlphabetSounds/en/15.ogg
|
||||
share/childsplay/Data/AlphabetSounds/en/16.ogg
|
||||
share/childsplay/Data/AlphabetSounds/en/17.ogg
|
||||
share/childsplay/Data/AlphabetSounds/en/18.ogg
|
||||
share/childsplay/Data/AlphabetSounds/en/19.ogg
|
||||
share/childsplay/Data/AlphabetSounds/en/2.ogg
|
||||
share/childsplay/Data/AlphabetSounds/en/20.ogg
|
||||
share/childsplay/Data/AlphabetSounds/en/3.ogg
|
||||
share/childsplay/Data/AlphabetSounds/en/4.ogg
|
||||
share/childsplay/Data/AlphabetSounds/en/5.ogg
|
||||
share/childsplay/Data/AlphabetSounds/en/6.ogg
|
||||
share/childsplay/Data/AlphabetSounds/en/7.ogg
|
||||
share/childsplay/Data/AlphabetSounds/en/8.ogg
|
||||
share/childsplay/Data/AlphabetSounds/en/9.ogg
|
||||
share/childsplay/Data/AlphabetSounds/en/a.ogg
|
||||
share/childsplay/Data/AlphabetSounds/en/b.ogg
|
||||
share/childsplay/Data/AlphabetSounds/en/c.ogg
|
||||
share/childsplay/Data/AlphabetSounds/en/d.ogg
|
||||
share/childsplay/Data/AlphabetSounds/en/e.ogg
|
||||
share/childsplay/Data/AlphabetSounds/en/f.ogg
|
||||
share/childsplay/Data/AlphabetSounds/en/g.ogg
|
||||
share/childsplay/Data/AlphabetSounds/en/h.ogg
|
||||
share/childsplay/Data/AlphabetSounds/en/i.ogg
|
||||
share/childsplay/Data/AlphabetSounds/en/j.ogg
|
||||
share/childsplay/Data/AlphabetSounds/en/k.ogg
|
||||
share/childsplay/Data/AlphabetSounds/en/l.ogg
|
||||
share/childsplay/Data/AlphabetSounds/en/m.ogg
|
||||
share/childsplay/Data/AlphabetSounds/en/n.ogg
|
||||
share/childsplay/Data/AlphabetSounds/en/o.ogg
|
||||
share/childsplay/Data/AlphabetSounds/en/p.ogg
|
||||
share/childsplay/Data/AlphabetSounds/en/q.ogg
|
||||
share/childsplay/Data/AlphabetSounds/en/r.ogg
|
||||
share/childsplay/Data/AlphabetSounds/en/s.ogg
|
||||
share/childsplay/Data/AlphabetSounds/en/t.ogg
|
||||
share/childsplay/Data/AlphabetSounds/en/u.ogg
|
||||
share/childsplay/Data/AlphabetSounds/en/v.ogg
|
||||
share/childsplay/Data/AlphabetSounds/en/w.ogg
|
||||
share/childsplay/Data/AlphabetSounds/en/x.ogg
|
||||
share/childsplay/Data/AlphabetSounds/en/y.ogg
|
||||
share/childsplay/Data/AlphabetSounds/en/z.ogg
|
||||
share/childsplay/Data/icons/billiard.icon.png
|
||||
share/childsplay/Data/icons/fallingletters.icon.png
|
||||
share/childsplay/Data/icons/findsound.icon.png
|
||||
share/childsplay/Data/icons/findsound2.icon.png
|
||||
share/childsplay/Data/icons/multiTables.icon.png
|
||||
share/childsplay/Data/icons/numbers.icon.png
|
||||
share/childsplay/Data/icons/packid.icon.png
|
||||
share/childsplay/Data/icons/pong.icon.png
|
||||
share/childsplay/Data/icons/puzzle.icon.png
|
||||
share/childsplay/Data/icons/soundNpic.icon.png
|
||||
share/childsplay/Data/icons/soundmemory.icon.png
|
||||
share/childsplay/lib/BilliardData/
|
||||
share/childsplay/lib/BilliardData/backgr.png
|
||||
share/childsplay/lib/BilliardData/ball1.png
|
||||
share/childsplay/lib/BilliardData/ball2.png
|
||||
share/childsplay/lib/BilliardData/hole.png
|
||||
share/childsplay/lib/BilliardData/sndh.wav
|
||||
share/childsplay/lib/BilliardData/sndt.wav
|
||||
share/childsplay/lib/BilliardData/stick.png
|
||||
share/childsplay/lib/ConfigData/fallinglettersrc
|
||||
@comment share/childsplay/lib/ConfigData/multiTablesrc
|
||||
share/childsplay/lib/ConfigData/pongrc
|
||||
share/childsplay/lib/FallingLettersData/
|
||||
share/childsplay/lib/FallingLettersData/scenery0.png
|
||||
share/childsplay/lib/FallingLettersData/scenery1.png
|
||||
share/childsplay/lib/FallingLettersData/scenery2.png
|
||||
share/childsplay/lib/Findsound2Data/
|
||||
share/childsplay/lib/Findsound2Data/Data/
|
||||
share/childsplay/lib/Findsound2Data/Data/back.jpg
|
||||
share/childsplay/lib/Findsound2Data/Data/soundbut.png
|
||||
share/childsplay/lib/FindsoundData/
|
||||
share/childsplay/lib/FindsoundData/Data/
|
||||
share/childsplay/lib/FindsoundData/Data/back.jpg
|
||||
share/childsplay/lib/FindsoundData/Data/soundbut.png
|
||||
share/childsplay/lib/FindsoundData/Images/
|
||||
share/childsplay/lib/FindsoundData/Images/level1/
|
||||
share/childsplay/lib/FindsoundData/Images/level1/cow.png
|
||||
share/childsplay/lib/FindsoundData/Images/level1/elephant.png
|
||||
share/childsplay/lib/FindsoundData/Images/level1/frog.png
|
||||
share/childsplay/lib/FindsoundData/Images/level1/lion.png
|
||||
share/childsplay/lib/FindsoundData/Images/level1/rooster.png
|
||||
share/childsplay/lib/FindsoundData/Images/level1/sheep.png
|
||||
share/childsplay/lib/FindsoundData/Images/level2/
|
||||
share/childsplay/lib/FindsoundData/Images/level2/boat.png
|
||||
share/childsplay/lib/FindsoundData/Images/level2/car.png
|
||||
share/childsplay/lib/FindsoundData/Images/level2/plane.png
|
||||
share/childsplay/lib/FindsoundData/Images/level2/police.png
|
||||
share/childsplay/lib/FindsoundData/Images/level2/rocket.png
|
||||
share/childsplay/lib/FindsoundData/Images/level3/
|
||||
share/childsplay/lib/FindsoundData/Images/level3/drum.png
|
||||
share/childsplay/lib/FindsoundData/Images/level3/flute.png
|
||||
share/childsplay/lib/FindsoundData/Images/level3/guitar.png
|
||||
share/childsplay/lib/FindsoundData/Images/level3/harp.png
|
||||
share/childsplay/lib/FindsoundData/Images/level3/piano.png
|
||||
share/childsplay/lib/FindsoundData/Images/level3/violin.png
|
||||
share/childsplay/lib/FindsoundData/Sounds/
|
||||
share/childsplay/lib/FindsoundData/Sounds/level1/
|
||||
share/childsplay/lib/FindsoundData/Sounds/level1/cow.ogg
|
||||
share/childsplay/lib/FindsoundData/Sounds/level1/elephant.ogg
|
||||
share/childsplay/lib/FindsoundData/Sounds/level1/frog.ogg
|
||||
share/childsplay/lib/FindsoundData/Sounds/level1/lion.ogg
|
||||
share/childsplay/lib/FindsoundData/Sounds/level1/rooster.ogg
|
||||
share/childsplay/lib/FindsoundData/Sounds/level1/sheep.ogg
|
||||
share/childsplay/lib/FindsoundData/Sounds/level2/
|
||||
share/childsplay/lib/FindsoundData/Sounds/level2/boat.ogg
|
||||
share/childsplay/lib/FindsoundData/Sounds/level2/car.ogg
|
||||
share/childsplay/lib/FindsoundData/Sounds/level2/plane.ogg
|
||||
share/childsplay/lib/FindsoundData/Sounds/level2/police.ogg
|
||||
share/childsplay/lib/FindsoundData/Sounds/level2/rocket.ogg
|
||||
share/childsplay/lib/FindsoundData/Sounds/level3/
|
||||
share/childsplay/lib/FindsoundData/Sounds/level3/drum.ogg
|
||||
share/childsplay/lib/FindsoundData/Sounds/level3/flute.ogg
|
||||
share/childsplay/lib/FindsoundData/Sounds/level3/guitar.ogg
|
||||
share/childsplay/lib/FindsoundData/Sounds/level3/harp.ogg
|
||||
share/childsplay/lib/FindsoundData/Sounds/level3/piano.ogg
|
||||
share/childsplay/lib/FindsoundData/Sounds/level3/violin.ogg
|
||||
share/childsplay/lib/MultiTablesData/
|
||||
share/childsplay/lib/MultiTablesData/arrow.gif
|
||||
share/childsplay/lib/MultiTablesData/correct.wav
|
||||
share/childsplay/lib/MultiTablesData/failed.ogg
|
||||
share/childsplay/lib/MultiTablesData/levelarrow.gif
|
||||
share/childsplay/lib/MultiTablesData/tablesdiploma.png
|
||||
share/childsplay/lib/MultiTablesData/victory.ogg
|
||||
share/childsplay/lib/NumbersData/
|
||||
share/childsplay/lib/NumbersData/balloon.png
|
||||
share/childsplay/lib/NumbersData/shot.wav
|
||||
share/childsplay/lib/PackidData/
|
||||
share/childsplay/lib/PackidData/aardbei.png
|
||||
share/childsplay/lib/PackidData/appel.png
|
||||
share/childsplay/lib/PackidData/banaan.png
|
||||
share/childsplay/lib/PackidData/brick.png
|
||||
share/childsplay/lib/PackidData/camo.png
|
||||
share/childsplay/lib/PackidData/cherry.gif
|
||||
share/childsplay/lib/PackidData/citroen.png
|
||||
share/childsplay/lib/PackidData/eat.wav
|
||||
share/childsplay/lib/PackidData/exit.png
|
||||
share/childsplay/lib/PackidData/feelgood.ogg
|
||||
share/childsplay/lib/PackidData/finlevel.wav
|
||||
share/childsplay/lib/PackidData/grid0.txt
|
||||
share/childsplay/lib/PackidData/grid1.txt
|
||||
share/childsplay/lib/PackidData/grid2.txt
|
||||
share/childsplay/lib/PackidData/grid3.txt
|
||||
share/childsplay/lib/PackidData/kers.png
|
||||
share/childsplay/lib/PackidData/leafs.png
|
||||
share/childsplay/lib/PackidData/pac1.ogg
|
||||
share/childsplay/lib/PackidData/pac2.ogg
|
||||
share/childsplay/lib/PackidData/pac3.ogg
|
||||
share/childsplay/lib/PackidData/pac4.ogg
|
||||
share/childsplay/lib/PackidData/pac5.ogg
|
||||
share/childsplay/lib/PackidData/pac6.ogg
|
||||
share/childsplay/lib/PackidData/pac_d.png
|
||||
share/childsplay/lib/PackidData/pac_d_c.png
|
||||
share/childsplay/lib/PackidData/pac_l.png
|
||||
share/childsplay/lib/PackidData/pac_l_c.png
|
||||
share/childsplay/lib/PackidData/pac_r.png
|
||||
share/childsplay/lib/PackidData/pac_r_c.png
|
||||
share/childsplay/lib/PackidData/pac_sad.png
|
||||
share/childsplay/lib/PackidData/pac_smile.png
|
||||
share/childsplay/lib/PackidData/pac_u.png
|
||||
share/childsplay/lib/PackidData/pac_u_c.png
|
||||
share/childsplay/lib/PackidData/peer.png
|
||||
share/childsplay/lib/PackidData/sea.png
|
||||
share/childsplay/lib/PackidData/waka.wav
|
||||
share/childsplay/lib/PackidData/walk.wav
|
||||
share/childsplay/lib/PackidData/words-ar
|
||||
share/childsplay/lib/PackidData/words-ca
|
||||
share/childsplay/lib/PackidData/words-de
|
||||
share/childsplay/lib/PackidData/words-en
|
||||
share/childsplay/lib/PackidData/words-es
|
||||
share/childsplay/lib/PackidData/words-fr
|
||||
share/childsplay/lib/PackidData/words-he
|
||||
share/childsplay/lib/PackidData/words-id
|
||||
share/childsplay/lib/PackidData/words-nl
|
||||
share/childsplay/lib/PackidData/words-no
|
||||
share/childsplay/lib/PackidData/words-pt
|
||||
share/childsplay/lib/PackidData/words-sl
|
||||
share/childsplay/lib/PackidData/words-sv
|
||||
share/childsplay/lib/PongData/
|
||||
share/childsplay/lib/PongData/arrow_down.png
|
||||
share/childsplay/lib/PongData/arrow_up.png
|
||||
share/childsplay/lib/PongData/bump.wav
|
||||
share/childsplay/lib/PongData/goal.wav
|
||||
share/childsplay/lib/PongData/loser.jpg
|
||||
share/childsplay/lib/PongData/multi_pc.jpg
|
||||
share/childsplay/lib/PongData/multi_person.jpg
|
||||
share/childsplay/lib/PongData/pick.wav
|
||||
share/childsplay/lib/PongData/single.jpg
|
||||
share/childsplay/lib/PongData/winner.jpg
|
||||
share/childsplay/lib/PongData/winner.ogg
|
||||
share/childsplay/lib/SoundMemory/
|
||||
share/childsplay/lib/SoundMemory/but_back.png
|
||||
share/childsplay/lib/SoundMemory/but_bleu_up.png
|
||||
share/childsplay/lib/SoundMemory/but_red_down.png
|
||||
share/childsplay/lib/SoundNpicData/
|
||||
share/childsplay/lib/SoundNpicData/Level1/
|
||||
share/childsplay/lib/SoundNpicData/Level1/cow.ogg
|
||||
share/childsplay/lib/SoundNpicData/Level1/cow.png
|
||||
share/childsplay/lib/SoundNpicData/Level1/elephant.ogg
|
||||
share/childsplay/lib/SoundNpicData/Level1/elephant.png
|
||||
share/childsplay/lib/SoundNpicData/Level1/frog.ogg
|
||||
share/childsplay/lib/SoundNpicData/Level1/frog.png
|
||||
share/childsplay/lib/SoundNpicData/Level1/lion.ogg
|
||||
share/childsplay/lib/SoundNpicData/Level1/lion.png
|
||||
share/childsplay/lib/SoundNpicData/Level1/rooster.ogg
|
||||
share/childsplay/lib/SoundNpicData/Level1/rooster.png
|
||||
share/childsplay/lib/SoundNpicData/Level1/sheep.ogg
|
||||
share/childsplay/lib/SoundNpicData/Level1/sheep.png
|
||||
share/childsplay/lib/billiard.py
|
||||
share/childsplay/lib/fallingletters.py
|
||||
share/childsplay/lib/findsound.py
|
||||
share/childsplay/lib/findsound2.py
|
||||
share/childsplay/lib/multiTables.py
|
||||
share/childsplay/lib/numbers.py
|
||||
share/childsplay/lib/packid.py
|
||||
share/childsplay/lib/pong.py
|
||||
share/childsplay/lib/puzzle.py
|
||||
share/childsplay/lib/puzzleData/
|
||||
share/childsplay/lib/puzzleData/birthday_cake.png
|
||||
share/childsplay/lib/puzzleData/boat.png
|
||||
share/childsplay/lib/puzzleData/bus.png
|
||||
share/childsplay/lib/puzzleData/car01.png
|
||||
share/childsplay/lib/puzzleData/chick-hatched.png
|
||||
share/childsplay/lib/puzzleData/frog.png
|
||||
share/childsplay/lib/puzzleData/grapes.png
|
||||
share/childsplay/lib/puzzleData/miner.png
|
||||
share/childsplay/lib/puzzleData/paint.png
|
||||
share/childsplay/lib/puzzleData/pineapple.png
|
||||
share/childsplay/lib/puzzleData/slate.png
|
||||
share/childsplay/lib/puzzleData/tux.png
|
||||
share/childsplay/lib/puzzleData/wooden_cottage.png
|
||||
share/childsplay/lib/soundNpic.py
|
||||
share/childsplay/lib/soundmemory.py
|
||||
share/doc/childsplay-plugins/
|
||||
share/doc/childsplay-plugins/README
|
||||
share/doc/childsplay-plugins/README-PACKID
|
||||
share/doc/childsplay-plugins/README.MT_users2csv
|
Loading…
Reference in New Issue
Block a user