# xmame-extras .ebuild file by Per Wigren S=${WORKDIR}/${P} DESCRIPTION="Samples, artwork, datfiles and PD-ROMs for MAME" HOMEPAGE="http://x.mame.net" DEPEND="app-emulation/xmame app-arch/unzip net-misc/wget" src_install () { # Download Public Domain-ROMs... mkdir -p ${D}/usr/lib/xmame/roms cd ${D}/usr/lib/xmame/roms wget http://www.mame.net/roms/gridlee.zip http://www.mame.net/roms/polyplay.zip http://www.mame.net/roms/robby.zip # Download samples mkdir -p ${D}/usr/lib/xmame/samples cd ${D}/usr/lib/xmame/samples SAMPLES="astrob astrof berzerk blockade boothill bosco carnival congo cosmicg depthch dkong dkongjr elim2 galaga gaplus gorf hyperspt invinco mario monsterb natodef phoenix polepos pulsar punchout qbert rallyx reactor ripoff sharkatt solarq spacfury invaders spaceod panic spacewar starcas starcrus startrek sbasketb tacscan tankbatt targ thehand thief trackfld turbo vanguard warrior wow xevoius zaxxon zektor" for GAME in $SAMPLES; do wget -c http://www.mame.net/samples/$GAME.zip done # Download artwork mkdir -p ${D}/usr/lib/xmame/artwork cd ${D}/usr/lib/xmame/artwork ARTWORK="armora astdelux bzone demon dotron llander spcenctr spacewar videopin warrior" for GAME in $ARTWORK; do wget -c http://www.mame.net/artwork/$GAME.zip done # Download various files... ;) cd ${D}/usr/lib/xmame/ wget -c http://cheat.retrogames.com/cheat.zip && \ unzip cheat.zip cheat.dat && rm -f cheat.zip wget -c http://www.mame.net/zips/hsdat7.zip && \ unzip hsdat7.zip hiscore.dat && rm -f hsdat7.zip wget -c http://www.mameworld.net/mameinfo/download/Mameinfo375.zip && \ unzip Mameinfo375.zip mameinfo.dat && rm -f Mameinfo375.zip wget -c http://fandemame.rcroms.com/Téléchargement/history.dat0.57d.zip && \ unzip history.dat0.57d.zip history.dat && rm -f history.dat0.57d.zip }