scummlinux-cvs-logs Mailing List for ScummLinux (Page 4)
Brought to you by:
yoshizf
You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(83) |
Aug
(13) |
Sep
|
Oct
|
Nov
|
Dec
|
---|
From: <yo...@us...> - 2003-07-24 18:39:47
|
Update of /cvsroot/scummlinux/scummlinux/config In directory sc8-pr-cvs1:/tmp/cvs-serv896/config Modified Files: init Log Message: Index: init =================================================================== RCS file: /cvsroot/scummlinux/scummlinux/config/init,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** init 24 Jul 2003 14:07:41 -0000 1.6 --- init 24 Jul 2003 18:39:42 -0000 1.7 *************** *** 11,26 **** if test -e /proc/scsi/usb-storage-0; then ! mkdir -p /mnt/usb ! export SCUMMVM_SAVEPATH=/mnt/usb/ ! mount -t supermount -o dev=/dev/sda1 none /mnt/usb ! else ! mkdir -p /mnt/floppy ! fdlist > /dev/null 2>&1 ! if test $? -eq 0; then ! mount -t supermount -o dev=/dev/fd0 none /mnt/floppy ! export SCUMMVM_SAVEPATH=/mnt/floppy/ else ! export SCUMMVM_SAVEPATH=/etc/ ! fi fi --- 11,26 ---- if test -e /proc/scsi/usb-storage-0; then ! mkdir -p /mnt/usb ! export SCUMMVM_SAVEPATH=/mnt/usb/ ! mount -t supermount -o dev=/dev/sda1 none /mnt/usb else ! isfd /dev/fd0 ! if test $? -eq 0; then ! mkdir -p /mnt/floppy ! mount -t supermount -o dev=/dev/fd0 none /mnt/floppy ! export SCUMMVM_SAVEPATH=/mnt/floppy/ ! else ! export SCUMMVM_SAVEPATH=/etc/ ! fi fi *************** *** 34,38 **** setmixer vol 90 pcm 80 mic 0 line 0 ! while true; do scummvm -gadvmame2x -l/etc/scummvm.conf done --- 34,38 ---- setmixer vol 90 pcm 80 mic 0 line 0 ! while ! test -e /etc/halt; do scummvm -gadvmame2x -l/etc/scummvm.conf done |
From: <yo...@us...> - 2003-07-24 18:39:47
|
Update of /cvsroot/scummlinux/scummlinux/packages/initrd In directory sc8-pr-cvs1:/tmp/cvs-serv896/packages/initrd Modified Files: build linuxrc Log Message: Index: build =================================================================== RCS file: /cvsroot/scummlinux/scummlinux/packages/initrd/build,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** build 22 Jul 2003 11:24:24 -0000 1.1.1.1 --- build 24 Jul 2003 18:39:43 -0000 1.2 *************** *** 40,43 **** --- 40,44 ---- $SCRIPTS/install busybox || exit 1 $SCRIPTS/install iscd || exit 1 + $SCRIPTS/install halt || exit 1 cp $PACKAGES/initrd/linuxrc $INSTALL Index: linuxrc =================================================================== RCS file: /cvsroot/scummlinux/scummlinux/packages/initrd/linuxrc,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** linuxrc 23 Jul 2003 13:50:14 -0000 1.5 --- linuxrc 24 Jul 2003 18:39:43 -0000 1.6 *************** *** 70,72 **** /bin/busybox umount /proc /bin/busybox chroot /mnt/ramfs /sbin/init </dev/tty1 >/dev/tty1 2>&1 ! /bin/busybox halt --- 70,72 ---- /bin/busybox umount /proc /bin/busybox chroot /mnt/ramfs /sbin/init </dev/tty1 >/dev/tty1 2>&1 ! /usr/bin/halt |
From: <yo...@us...> - 2003-07-24 14:47:57
|
Update of /cvsroot/scummlinux/scummlinux/packages/fdutils In directory sc8-pr-cvs1:/tmp/cvs-serv23156/packages/fdutils Modified Files: build Log Message: Compile fdutils against uClibc Index: build =================================================================== RCS file: /cvsroot/scummlinux/scummlinux/packages/fdutils/build,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** build 24 Jul 2003 11:10:24 -0000 1.1 --- build 24 Jul 2003 14:47:54 -0000 1.2 *************** *** 5,14 **** $SCRIPTS/build uClibc || exit 1 CWD=`pwd` cd "`ls -d $BUILD/fdutils*`" && \ ./configure && \ ! make LDFLAGS=-static compile && \ ! upx -9 src/fdmount && \ cd "$CWD" && \ exit 0 --- 5,14 ---- $SCRIPTS/build uClibc || exit 1 + export UCLIBC_GCC_DLOPT="-Wl,--dynamic-linker,/lib/ld-uClibc.so.0" CWD=`pwd` cd "`ls -d $BUILD/fdutils*`" && \ ./configure && \ ! make CC="`ls $ROOT/$BUILD/uClibc-*/build/usr/bin/gcc`" compile && \ cd "$CWD" && \ exit 0 |
From: <yo...@us...> - 2003-07-24 14:07:44
|
Update of /cvsroot/scummlinux/scummlinux/config In directory sc8-pr-cvs1:/tmp/cvs-serv17699/config Modified Files: init Log Message: hiding some error messages Index: init =================================================================== RCS file: /cvsroot/scummlinux/scummlinux/config/init,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** init 24 Jul 2003 11:10:24 -0000 1.5 --- init 24 Jul 2003 14:07:41 -0000 1.6 *************** *** 16,20 **** else mkdir -p /mnt/floppy ! fdlist if test $? -eq 0; then mount -t supermount -o dev=/dev/fd0 none /mnt/floppy --- 16,20 ---- else mkdir -p /mnt/floppy ! fdlist > /dev/null 2>&1 if test $? -eq 0; then mount -t supermount -o dev=/dev/fd0 none /mnt/floppy |
From: <yo...@us...> - 2003-07-24 13:53:38
|
Update of /cvsroot/scummlinux/scummlinux/packages/scummvm In directory sc8-pr-cvs1:/tmp/cvs-serv15671/packages/scummvm Modified Files: url Log Message: Index: url =================================================================== RCS file: /cvsroot/scummlinux/scummlinux/packages/scummvm/url,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** url 24 Jul 2003 13:17:31 -0000 1.2 --- url 24 Jul 2003 13:53:34 -0000 1.3 *************** *** 1,2 **** http://scummvm.sourceforge.net/daily/scummvm-20030724.tar.bz2 ! SCUMM_SRCS/patch-scummvm-halt.tar.bz2 --- 1,2 ---- http://scummvm.sourceforge.net/daily/scummvm-20030724.tar.bz2 ! SCUMM_SRCS/patch-scummvm-halt.bz2 |
From: <yo...@us...> - 2003-07-24 13:20:26
|
Update of /cvsroot/scummlinux/scummlinux/packages/linux In directory sc8-pr-cvs1:/tmp/cvs-serv7929/packages/linux Modified Files: linux.conf Log Message: Removed unuseful kernel modules Index: linux.conf =================================================================== RCS file: /cvsroot/scummlinux/scummlinux/packages/linux/linux.conf,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** linux.conf 23 Jul 2003 10:41:24 -0000 1.2 --- linux.conf 24 Jul 2003 13:20:21 -0000 1.3 *************** *** 378,386 **** # IEEE 1394 (FireWire) support (EXPERIMENTAL) # - CONFIG_IEEE1394=y - CONFIG_IEEE1394_PCILYNX=y - CONFIG_IEEE1394_OHCI1394=y - # CONFIG_IEEE1394_VIDEO1394 is not set - CONFIG_IEEE1394_SBP2=y # CONFIG_IEEE1394_SBP2_PHYS_DMA is not set # CONFIG_IEEE1394_ETH1394 is not set --- 378,381 ---- *************** *** 575,579 **** # CONFIG_AUTOFS_FS is not set # CONFIG_AUTOFS4_FS is not set - CONFIG_REISERFS_FS=y # CONFIG_REISERFS_CHECK is not set # CONFIG_REISERFS_PROC_INFO is not set --- 570,573 ---- *************** *** 607,611 **** # CONFIG_MINIX_FS is not set # CONFIG_VXFS_FS is not set - CONFIG_NTFS_FS=y # CONFIG_NTFS_RW is not set # CONFIG_HPFS_FS is not set --- 601,604 ---- |
From: <yo...@us...> - 2003-07-24 13:17:40
|
Update of /cvsroot/scummlinux/scummlinux/packages/scummvm In directory sc8-pr-cvs1:/tmp/cvs-serv7351/packages/scummvm Modified Files: url Log Message: Now we shutdown on quit Index: url =================================================================== RCS file: /cvsroot/scummlinux/scummlinux/packages/scummvm/url,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** url 22 Jul 2003 13:04:31 -0000 1.1 --- url 24 Jul 2003 13:17:31 -0000 1.2 *************** *** 1 **** ! http://scummvm.sourceforge.net/daily/scummvm-20030722.tar.bz2 --- 1,2 ---- ! http://scummvm.sourceforge.net/daily/scummvm-20030724.tar.bz2 ! SCUMM_SRCS/patch-scummvm-halt.tar.bz2 |
From: <yo...@us...> - 2003-07-24 13:17:36
|
Update of /cvsroot/scummlinux/scummlinux/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv7351/scripts Modified Files: generator Log Message: Now we shutdown on quit Index: generator =================================================================== RCS file: /cvsroot/scummlinux/scummlinux/scripts/generator,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** generator 24 Jul 2003 11:10:24 -0000 1.7 --- generator 24 Jul 2003 13:17:32 -0000 1.8 *************** *** 16,19 **** --- 16,20 ---- $SCRIPTS/install setmixer generator || exit 1 $SCRIPTS/install tvout generator || exit 1 + $SCRIPTS/install halt generator || exit 1 $SCRIPTS/install scummvm generator || exit 1 $SCRIPTS/install fdutils generator || exit 1 |
From: <yo...@us...> - 2003-07-24 13:17:35
|
Update of /cvsroot/scummlinux/scummlinux/packages/halt In directory sc8-pr-cvs1:/tmp/cvs-serv7351/packages/halt Added Files: build url Log Message: Now we shutdown on quit --- NEW FILE: build --- #!/bin/sh . config/path $SCRIPTS/build uClibc || exit 1 export UCLIBC_GCC_DLOPT="-Wl,--dynamic-linker,/lib/ld-uClibc.so.0" CWD=`pwd` cd "`ls -d $BUILD/halt*`" && \ make CC="`ls $ROOT/$BUILD/uClibc-*/build/usr/bin/gcc`" && \ cd "$CWD" && \ exit 0 cd "$CWD" exit 1 --- NEW FILE: url --- SCUMM_SRCS/halt-0.0.2.tar.bz2 |
From: <yo...@us...> - 2003-07-24 13:14:18
|
Update of /cvsroot/scummlinux/scummlinux/packages/halt In directory sc8-pr-cvs1:/tmp/cvs-serv6961/packages/halt Log Message: Directory /cvsroot/scummlinux/scummlinux/packages/halt added to the repository |
From: <yo...@us...> - 2003-07-24 11:10:36
|
Update of /cvsroot/scummlinux/scummlinux/packages/fdutils In directory sc8-pr-cvs1:/tmp/cvs-serv22052/packages/fdutils Added Files: build install url Log Message: now working floppy/ramdisk/usb saving --- NEW FILE: build --- #!/bin/sh . config/path $SCRIPTS/build uClibc || exit 1 CWD=`pwd` cd "`ls -d $BUILD/fdutils*`" && \ ./configure && \ make LDFLAGS=-static compile && \ upx -9 src/fdmount && \ cd "$CWD" && \ exit 0 cd "$CWD" exit 1 --- NEW FILE: install --- #!/bin/sh . config/path cp $BUILD/fdutils*/src/fdmount $INSTALL/usr/bin/fdlist --- NEW FILE: url --- SCUMM_SRCS/fdutils-5.4.tar.gz |
From: <yo...@us...> - 2003-07-24 11:10:33
|
Update of /cvsroot/scummlinux/scummlinux/config In directory sc8-pr-cvs1:/tmp/cvs-serv22052/config Modified Files: init Log Message: now working floppy/ramdisk/usb saving Index: init =================================================================== RCS file: /cvsroot/scummlinux/scummlinux/config/init,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** init 23 Jul 2003 17:00:35 -0000 1.4 --- init 24 Jul 2003 11:10:24 -0000 1.5 *************** *** 16,21 **** --- 16,26 ---- else mkdir -p /mnt/floppy + fdlist + if test $? -eq 0; then mount -t supermount -o dev=/dev/fd0 none /mnt/floppy export SCUMMVM_SAVEPATH=/mnt/floppy/ + else + export SCUMMVM_SAVEPATH=/etc/ + fi fi |
From: <yo...@us...> - 2003-07-24 11:10:33
|
Update of /cvsroot/scummlinux/scummlinux/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv22052/scripts Modified Files: generator iso Log Message: now working floppy/ramdisk/usb saving Index: generator =================================================================== RCS file: /cvsroot/scummlinux/scummlinux/scripts/generator,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** generator 23 Jul 2003 19:07:15 -0000 1.6 --- generator 24 Jul 2003 11:10:24 -0000 1.7 *************** *** 17,20 **** --- 17,21 ---- $SCRIPTS/install tvout generator || exit 1 $SCRIPTS/install scummvm generator || exit 1 + $SCRIPTS/install fdutils generator || exit 1 export INSTALL=$GENERATOR_NAME/win32 Index: iso =================================================================== RCS file: /cvsroot/scummlinux/scummlinux/scripts/iso,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** iso 22 Jul 2003 11:24:26 -0000 1.1.1.1 --- iso 24 Jul 2003 11:10:24 -0000 1.2 *************** *** 20,23 **** --- 20,24 ---- $SCRIPTS/install setmixer || exit 1 $SCRIPTS/install scummvm || exit 1 + $SCRIPTS/install fdutils || exit 1 rm -rf $BUILD/ziso |
From: <yo...@us...> - 2003-07-24 11:09:45
|
Update of /cvsroot/scummlinux/scummlinux/packages/fdutils In directory sc8-pr-cvs1:/tmp/cvs-serv21743/packages/fdutils Log Message: Directory /cvsroot/scummlinux/scummlinux/packages/fdutils added to the repository |
From: <yo...@us...> - 2003-07-24 08:12:03
|
Update of /cvsroot/scummlinux/scummlinux/generator In directory sc8-pr-cvs1:/tmp/cvs-serv27856/generator Modified Files: generator.pl Log Message: Index: generator.pl =================================================================== RCS file: /cvsroot/scummlinux/scummlinux/generator/generator.pl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** generator.pl 23 Jul 2003 21:07:18 -0000 1.2 --- generator.pl 24 Jul 2003 08:12:00 -0000 1.3 *************** *** 26,35 **** foreach $file (@files) { $filecaps = uc($file); - #print "Copying $filecaps\n"; copy("$gamesloc/$game/$filecaps", "$gamesdest/$game") or copy("$gamesloc/$game/$file", "$gamesdest/$game") or die("Missing file $filecaps for the game $game\n"); } @sounds = glob("$gamesloc/$game/{track,monster}*"); foreach $sound (@sounds) { - #print "Copying $sound\n"; copy("$sound", "$gamesdest/$game"); } --- 26,33 ---- *************** *** 39,43 **** @lfls = glob("$gamesloc/$game/*.lfl") or die("Missing files for the game $game\n"); foreach $lfl (@lfls) { - #print "Copying $lfl\n"; copy("$lfl", "$gamesdest/$game"); } --- 37,40 ---- *************** *** 47,51 **** @files = glob("$gamesloc/$game/*.{flc,nut,la0,la1}") or die("Missing files for the game $game\n"); foreach $file (@files) { - #print "Copying $file\n"; copy("$file", "$gamesdest/$game"); } --- 44,47 ---- *************** *** 53,57 **** @files = glob("$gamesloc/$game/VIDEO/*") or die("Missing files for the game $game\n"); foreach $file (@files) { - #print "Copying $file\n"; copy("$file", "$gamesdest/$game/VIDEO"); } --- 49,52 ---- *************** *** 59,68 **** @files = glob("$gamesloc/$game/DATA/*") or die("Missing files for the game $game\n"); foreach $file (@files) { - #print "Copying $file\n"; copy("$file", "$gamesdest/$game/DATA"); } @sounds = glob("$gamesloc/$game/monster*"); foreach $sound (@sounds) { - #print "Copying $sound\n"; copy("$sound", "$gamesdest/$game"); } --- 54,61 ---- *************** *** 73,77 **** @files = glob("$gamesloc/$game/*.{flc,nut,la0,la1,trs,bun,bnd}") or die("Missing files for the game $game\n"); foreach $file (@files) { - #print "Copying $file\n"; copy("$file", "$gamesdest/$game"); } --- 66,69 ---- *************** *** 79,83 **** @files = glob("$gamesloc/$game/VIDEO/*") or die("Missing files for the game $game\n"); foreach $file (@files) { - #print "Copying $file\n"; copy("$file", "$gamesdest/$game/VIDEO"); } --- 71,74 ---- *************** *** 96,100 **** foreach $file (@files) { $filecaps = uc($file); - #print "Copying $filecaps\n"; copy("$gamesloc/$game/$filecaps", "$gamesdest/$game") or copy("$gamesloc/$game/$file", "$gamesdest/$game") or die("Missing file $file for the game $game\n"); } --- 87,90 ---- *************** *** 104,113 **** @lfls = glob("$gamesloc/$game/*.{lfl,lec}") or die("Missing files for the game $game\n"); foreach $lfl (@lfls) { - #print "Copying $lfl\n"; copy("$lfl", "$gamesdest/$game"); } @sounds = glob("$gamesloc/$game/track*"); foreach $sound (@sounds) { - #print "Copying $sound\n"; copy("$sound", "$gamesdest/$game"); } --- 94,101 ---- *************** *** 126,130 **** print scummvm "[scummvm]\n"; print scummvm "language=$language"; ! print scummvm "gfx_mode=advmame3x\n"; print scummvm "versioninfo=0.5.0pre-cvs\n"; print scummvm "fullscreen=true\n"; --- 114,118 ---- print scummvm "[scummvm]\n"; print scummvm "language=$language"; ! print scummvm "gfx_mode=advmame2x\n"; print scummvm "versioninfo=0.5.0pre-cvs\n"; print scummvm "fullscreen=true\n"; |
From: <yo...@us...> - 2003-07-23 21:07:23
|
Update of /cvsroot/scummlinux/scummlinux/generator In directory sc8-pr-cvs1:/tmp/cvs-serv29022/generator Modified Files: LANGUAGE generator.pl Log Message: fixing language? Index: LANGUAGE =================================================================== RCS file: /cvsroot/scummlinux/scummlinux/generator/LANGUAGE,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** LANGUAGE 22 Jul 2003 15:33:13 -0000 1.1 --- LANGUAGE 23 Jul 2003 21:07:18 -0000 1.2 *************** *** 1 **** ! en --- 1,2 ---- ! fr ! Index: generator.pl =================================================================== RCS file: /cvsroot/scummlinux/scummlinux/generator/generator.pl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** generator.pl 23 Jul 2003 19:11:04 -0000 1.1 --- generator.pl 23 Jul 2003 21:07:18 -0000 1.2 *************** *** 62,65 **** --- 62,71 ---- copy("$file", "$gamesdest/$game/DATA"); } + @sounds = glob("$gamesloc/$game/monster*"); + foreach $sound (@sounds) { + #print "Copying $sound\n"; + copy("$sound", "$gamesdest/$game"); + } + } *************** *** 78,81 **** --- 84,95 ---- } + if ($game eq "simon1dos") { + @files = glob("$gamesloc/$game/*") or die("Missing files for the game $game\n"); + foreach $file (@files) { + copy("$file", "$gamesdest/$game"); + } + } + + if ($game eq "sky") { @files = ("sky.dnr", "sky.dsk", "sky.rst"); *************** *** 110,119 **** close(LANG); ! print scummvm "[scummvm] ! language=$language ! gfx_mode=advmame3x ! versioninfo=0.5.0pre-cvs ! fullscreen=true ! "; close(scummvm); --- 124,132 ---- close(LANG); ! print scummvm "[scummvm]\n"; ! print scummvm "language=$language"; ! print scummvm "gfx_mode=advmame3x\n"; ! print scummvm "versioninfo=0.5.0pre-cvs\n"; ! print scummvm "fullscreen=true\n"; close(scummvm); |
From: <yo...@us...> - 2003-07-23 19:11:07
|
Update of /cvsroot/scummlinux/scummlinux/generator In directory sc8-pr-cvs1:/tmp/cvs-serv6064/generator Added Files: generator.exe generator.pl perl58.dll Log Message: moving generator files to good dir --- NEW FILE: generator.exe --- (This appears to be a binary file; contents omitted.) --- NEW FILE: generator.pl --- #!/usr/bin/perl use File::Copy; use File::Path; use File::Glob qw(:globally :nocase); $OS = $Config::Config{'osname'}; $gamesloc = "games"; $gamesdest = "iso/SCUMMLINUX/games"; $conf = "iso/SCUMMLINUX/etc/scummvm.conf"; opendir (GAMES_REP, $gamesloc) or die("Error: cannot open source directory $gamesloc"); @games = grep !/^\.\.?\z/, readdir GAMES_REP; closedir GAMES_REP; mkpath("$gamesdest"); open(scummvm, ">$conf"); foreach $game (@games) { $i++; opendir (THISGAME_REP, "$gamesloc/$game"); print "\nFound $game, copying files..\n"; mkpath("$gamesdest/$game"); if ($game eq "monkey1" || $game eq "monkey2" || $game eq "samnmax" || $game eq "atlantis" || $game eq "tentacle") { @files = ("$game.000", "$game.001"); foreach $file (@files) { $filecaps = uc($file); #print "Copying $filecaps\n"; copy("$gamesloc/$game/$filecaps", "$gamesdest/$game") or copy("$gamesloc/$game/$file", "$gamesdest/$game") or die("Missing file $filecaps for the game $game\n"); } @sounds = glob("$gamesloc/$game/{track,monster}*"); foreach $sound (@sounds) { #print "Copying $sound\n"; copy("$sound", "$gamesdest/$game"); } } if ($game eq "indy3" || $game eq "loom" || $game eq "maniac" || $game eq "indy3ega" || $game eq "zak") { @lfls = glob("$gamesloc/$game/*.lfl") or die("Missing files for the game $game\n"); foreach $lfl (@lfls) { #print "Copying $lfl\n"; copy("$lfl", "$gamesdest/$game"); } } if ($game eq "ft") { @files = glob("$gamesloc/$game/*.{flc,nut,la0,la1}") or die("Missing files for the game $game\n"); foreach $file (@files) { #print "Copying $file\n"; copy("$file", "$gamesdest/$game"); } mkpath("$gamesdest/$game/VIDEO/"); @files = glob("$gamesloc/$game/VIDEO/*") or die("Missing files for the game $game\n"); foreach $file (@files) { #print "Copying $file\n"; copy("$file", "$gamesdest/$game/VIDEO"); } mkpath("$gamesdest/$game/DATA/"); @files = glob("$gamesloc/$game/DATA/*") or die("Missing files for the game $game\n"); foreach $file (@files) { #print "Copying $file\n"; copy("$file", "$gamesdest/$game/DATA"); } } if ($game eq "dig") { @files = glob("$gamesloc/$game/*.{flc,nut,la0,la1,trs,bun,bnd}") or die("Missing files for the game $game\n"); foreach $file (@files) { #print "Copying $file\n"; copy("$file", "$gamesdest/$game"); } mkpath("$gamesdest/$game/VIDEO/"); @files = glob("$gamesloc/$game/VIDEO/*") or die("Missing files for the game $game\n"); foreach $file (@files) { #print "Copying $file\n"; copy("$file", "$gamesdest/$game/VIDEO"); } } if ($game eq "sky") { @files = ("sky.dnr", "sky.dsk", "sky.rst"); foreach $file (@files) { $filecaps = uc($file); #print "Copying $filecaps\n"; copy("$gamesloc/$game/$filecaps", "$gamesdest/$game") or copy("$gamesloc/$game/$file", "$gamesdest/$game") or die("Missing file $file for the game $game\n"); } } if ($game eq "monkeyega" || $game eq "loomcd" || $game eq "zak256" || $game eq "monkeyvga") { @lfls = glob("$gamesloc/$game/*.{lfl,lec}") or die("Missing files for the game $game\n"); foreach $lfl (@lfls) { #print "Copying $lfl\n"; copy("$lfl", "$gamesdest/$game"); } @sounds = glob("$gamesloc/$game/track*"); foreach $sound (@sounds) { #print "Copying $sound\n"; copy("$sound", "$gamesdest/$game"); } } closedir THISGAME_REP; print scummvm "[$game]\n"; print scummvm "amiga=false\n"; print scummvm "path=/mnt/cdrom/games/$game\n\n"; } open(LANG, "LANGUAGE") or die("Error: LANGUAGE file missing !"); $language = <LANG>; close(LANG); print scummvm "[scummvm] language=$language gfx_mode=advmame3x versioninfo=0.5.0pre-cvs fullscreen=true "; close(scummvm); if ($i < 1) { die("Error: no game found! You must copy your games in the $gamesloc directory. Read the README for more help.\n"); } rmtree("ziso",0,0); mkpath("ziso"); if ($OS eq "MSWin32") { $command = 'win32\\mkzftree iso/SCUMMLINUX ziso/SCUMMLINUX'; } else { $command = 'mkzftree iso/SCUMMLINUX ziso/SCUMMLINUX'; } print "Creating zisofs file tree, this may take some time..\n"; system($command); @files = glob("iso/SCUMMLINUX/isolinux/*"); foreach $file (@files) { copy("$file", "ziso/SCUMMLINUX/isolinux"); } open(VERSION, "VERSION") or die("Error: VERSION file missing !"); $vers = <VERSION>; close(VERSION); if ($OS eq "MSWin32") { $command = "win32\\mkisofs -quiet -no-pad -V ScummLinux -volset ScummLinux -P \"ScummVM\" -p \"ScummVM\" -A \"ScummLinux\" -z -D -r -J -b isolinux/isolinux.bin -c isolinux/boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table ziso/SCUMMLINUX > scummlinux-$vers.iso"; } else { $command = "mkisofs -quiet -no-pad -V ScummLinux -volset ScummLinux -P ScummVM -p ScummVM -A ScummLinux -z -D -r -J -b isolinux/isolinux.bin -c isolinux/boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table ziso/SCUMMLINUX > scummlinux-`cat VERSION`.iso"; } print "Creating ISO image, this may take some time..\n\n"; system($command); rmtree("ziso",0,0); rmtree("iso/SCUMMLINUX/games",0,0); print "\n --- Your ScummLinux iso is ready to burn ! --- \n"; --- NEW FILE: perl58.dll --- (This appears to be a binary file; contents omitted.) |
From: <yo...@us...> - 2003-07-23 19:07:18
|
Update of /cvsroot/scummlinux/scummlinux/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv5660/scripts Modified Files: generator Log Message: moving generator files to good dir Index: generator =================================================================== RCS file: /cvsroot/scummlinux/scummlinux/scripts/generator,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** generator 22 Jul 2003 17:57:15 -0000 1.5 --- generator 23 Jul 2003 19:07:15 -0000 1.6 *************** *** 24,30 **** mkdir -p $GENERATOR_NAME/games cp COPYING $GENERATOR_NAME/COPYING - cp $PACKAGES/builder/LANGUAGE $GENERATOR_NAME - cp $PACKAGES/builder/generator.pl $GENERATOR_NAME - cp $PACKAGES/builder/generator.exe $GENERATOR_NAME echo `cat VERSION`-custom > $GENERATOR_NAME/VERSION tar czf $GENERATOR_NAME.tar.gz $GENERATOR_NAME --- 24,27 ---- |
From: <yo...@us...> - 2003-07-23 19:07:18
|
Update of /cvsroot/scummlinux/scummlinux/packages/builder In directory sc8-pr-cvs1:/tmp/cvs-serv5660/packages/builder Removed Files: LANGUAGE generator.exe generator.pl Log Message: moving generator files to good dir --- LANGUAGE DELETED --- --- generator.exe DELETED --- --- generator.pl DELETED --- |
From: <yo...@us...> - 2003-07-23 17:00:38
|
Update of /cvsroot/scummlinux/scummlinux/config In directory sc8-pr-cvs1:/tmp/cvs-serv32640/config Modified Files: init Log Message: Index: init =================================================================== RCS file: /cvsroot/scummlinux/scummlinux/config/init,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** init 23 Jul 2003 13:26:17 -0000 1.3 --- init 23 Jul 2003 17:00:35 -0000 1.4 *************** *** 30,34 **** while true; do ! scummvm -qfr -gadvmame2x -l/etc/scummvm.conf done --- 30,34 ---- while true; do ! scummvm -gadvmame2x -l/etc/scummvm.conf done |
From: <yo...@us...> - 2003-07-23 13:50:20
|
Update of /cvsroot/scummlinux/scummlinux/packages/initrd In directory sc8-pr-cvs1:/tmp/cvs-serv32448/packages/initrd Modified Files: linuxrc Log Message: Index: linuxrc =================================================================== RCS file: /cvsroot/scummlinux/scummlinux/packages/initrd/linuxrc,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** linuxrc 23 Jul 2003 13:18:47 -0000 1.4 --- linuxrc 23 Jul 2003 13:50:14 -0000 1.5 *************** *** 18,23 **** /bin/busybox mount -t proc none /proc - /bin/busybox echo "60 searching cdrom drives" > /proc/progress - for DEV in /dev/scd*; do NUM=`/bin/busybox echo $DEV | /bin/busybox sed 's%/dev/scd\(.*\)%\1%'` --- 18,21 ---- |