# ChangeLog for games-emulation/virtualjaguar
# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-emulation/virtualjaguar/ChangeLog,v 1.9 2007/02/21 23:33:06 peper Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/virtualjaguar/ChangeLog,v 1.10 2007/03/07 16:14:26 wolf31o2 Exp $
+
+ 07 Mar 2007; Chris Gianelloni <wolf31o2@gentoo.org> files/virtualjaguar:
+ Change all instances of [ to [[.
21 Feb 2007; Piotr Jaroszyński <peper@gentoo.org> ChangeLog:
Transition to Manifest2.
# Script for launching virtualjaguar
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-emulation/virtualjaguar/files/virtualjaguar,v 1.4 2004/12/12 06:49:55 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/virtualjaguar/files/virtualjaguar,v 1.5 2007/03/07 16:14:26 wolf31o2 Exp $
source /sbin/functions.sh
shopt -s nullglob
-if [ ! -d ~/.vj/bios ] ; then
+if [[ ! -d ~/.vj/bios ]] ; then
mkdir -p ~/.vj/bios
fi
-if [ ! -d ~/.vj/eeproms ] ; then
+if [[ ! -d ~/.vj/eeproms ]] ; then
mkdir -p ~/.vj/eeproms
fi
-if [ ! -d ~/.vj/ROMs ] ; then
+if [[ ! -d ~/.vj/ROMs ]] ; then
mkdir -p ~/.vj/ROMs
fi
cd ~/.vj
# check for bios
-if [ -z "`cd ./bios && ls`" ] ; then
+if [[ -z "`cd ./bios && ls`" ]] ; then
# if the bios directory is empty, then ... well ...
echo
eerror " Put your BIOS file into ~/.vj/bios/"
# ChangeLog for games-emulation/xmess
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-emulation/xmess/ChangeLog,v 1.57 2007/02/21 23:34:06 peper Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/xmess/ChangeLog,v 1.58 2007/03/07 16:10:15 wolf31o2 Exp $
+
+ 07 Mar 2007; Chris Gianelloni <wolf31o2@gentoo.org> xmess-0.83.1.ebuild,
+ xmess-0.105.ebuild, xmess-0.106.ebuild:
+ Change all instances of [ to [[.
21 Feb 2007; Piotr Jaroszyński <peper@gentoo.org> ChangeLog:
Transition to Manifest2.
-# Copyright 1999-2006 Gentoo Foundation
+# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-emulation/xmess/xmess-0.105.ebuild,v 1.2 2006/12/01 22:04:28 wolf31o2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/xmess/xmess-0.105.ebuild,v 1.3 2007/03/07 16:10:15 wolf31o2 Exp $
inherit flag-o-matic toolchain-funcs eutils games
#disp=1
ewarn "GGI support is currently (${PV}) broken :("
fi
- if [ ${disp} -eq 0 ] || use opengl || use X || use dga || use xv ; then
+ if [[ ${disp} -eq 0 ]] || use opengl || use X || use dga || use xv ; then
emake DISPLAY_METHOD=x11 || die "emake failed (x11)"
fi
}
#disp=1
ewarn "GGI support is currently (${PV}) broken :("
fi
- if [ ${disp} -eq 0 ] || use opengl || use X || use dga || use xv ; then
+ if [[ ${disp} -eq 0 ]] || use opengl || use X || use dga || use xv ; then
make DISPLAY_METHOD=x11 install || die "install failed (x11)"
fi
exeinto "${GAMES_LIBDIR}/${PN}"
# default to sdl since the client is a bit more featureful
if use sdl ; then
dosym "${TARGET}.SDL" "${GAMES_BINDIR}/${TARGET}"
- elif [ ${disp} -eq 0 ] || use opengl || use X || use dga || use xv ; then
+ elif [[ ${disp} -eq 0 ]] || use opengl || use X || use dga || use xv ; then
dosym "${TARGET}.x11" "${GAMES_BINDIR}/${TARGET}"
elif use svga ; then
dosym ${TARGET}.svgalib "${GAMES_BINDIR}/${TARGET}"
-# Copyright 1999-2006 Gentoo Foundation
+# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-emulation/xmess/xmess-0.106.ebuild,v 1.5 2006/12/01 22:04:28 wolf31o2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/xmess/xmess-0.106.ebuild,v 1.6 2007/03/07 16:10:15 wolf31o2 Exp $
inherit flag-o-matic toolchain-funcs eutils games
#disp=1
ewarn "GGI support is currently (${PV}) broken :("
fi
- if [ ${disp} -eq 0 ] || use opengl || use X || use dga || use xv ; then
+ if [[ ${disp} -eq 0 ]] || use opengl || use X || use dga || use xv ; then
emake DISPLAY_METHOD=x11 || die "emake failed (x11)"
fi
}
#disp=1
ewarn "GGI support is currently (${PV}) broken :("
fi
- if [ ${disp} -eq 0 ] || use opengl || use X || use dga || use xv ; then
+ if [[ ${disp} -eq 0 ]] || use opengl || use X || use dga || use xv ; then
make DISPLAY_METHOD=x11 install || die "install failed (x11)"
fi
exeinto "${GAMES_LIBDIR}/${PN}"
# default to sdl since the client is a bit more featureful
if use sdl ; then
dosym "${TARGET}.SDL" "${GAMES_BINDIR}/${TARGET}"
- elif [ ${disp} -eq 0 ] || use opengl || use X || use dga || use xv ; then
+ elif [[ ${disp} -eq 0 ]] || use opengl || use X || use dga || use xv ; then
dosym "${TARGET}.x11" "${GAMES_BINDIR}/${TARGET}"
elif use svga ; then
dosym ${TARGET}.svgalib "${GAMES_BINDIR}/${TARGET}"
-# Copyright 1999-2006 Gentoo Foundation
+# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-emulation/xmess/xmess-0.83.1.ebuild,v 1.8 2006/12/01 22:04:28 wolf31o2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/xmess/xmess-0.83.1.ebuild,v 1.9 2007/03/07 16:10:15 wolf31o2 Exp $
inherit flag-o-matic toolchain-funcs eutils games
case ${ARCH} in
x86|ia64) append-flags -Wno-unused -fomit-frame-pointer -fstrict-aliasing -fstrength-reduce -ffast-math
- [ $(gcc-major-version) -eq 3 ] \
+ [[ $(gcc-major-version) -eq 3 ]] \
&& append-flags -falign-functions=2 -falign-jumps=2 -falign-loops=2 \
|| append-flags -malign-functions=2 -malign-jumps=2 -malign-loops=2
;;
emake DISPLAY_METHOD=xgl || die "emake failed (xgl)"
disp=1
fi
- if [ ${disp} -eq 0 ] || use X || use dga || use xv ; then
+ if [[ ${disp} -eq 0 ]] || use X || use dga || use xv ; then
emake DISPLAY_METHOD=x11 || die "emake failed (x11)"
fi
}
make DISPLAY_METHOD=xgl install || die "install failed (xgl)"
disp=1
fi
- if [ ${disp} -eq 0 ] || use X || use dga || use xv ; then
+ if [[ ${disp} -eq 0 ]] || use X || use dga || use xv ; then
make DISPLAY_METHOD=x11 install || die "install failed (x11)"
fi
if use opengl ; then
dosym "${TARGET}.xgl" "${GAMES_BINDIR}/${TARGET}"
- elif [ ${disp} -eq 0 ] || use X || use dga || use xv ; then
+ elif [[ ${disp} -eq 0 ]] || use X || use dga || use xv ; then
dosym "${TARGET}.x11" "${GAMES_BINDIR}/${TARGET}"
elif use sdl ; then
dosym "${TARGET}.SDL" "${GAMES_BINDIR}/${TARGET}"