mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-20 04:02:27 +00:00
896219d57f
Warsow is a full free multiplayer first person shooter with cartoon design, using qfusion (a cool improvement to the Quake 2 engine). Highlights: - Besides classical trix coming from Quake scene, like Circle Jump, Strafe Jump, Double Jump, Bunny Hopping, etc., Warsow features its own Special Moves - Special moves of Warsow are Wall jumps, Dashes, Dodges, Ramp slides. All of them can be performed with a single key (spacebar by default) - All this brings huge depth of interactivity in 3D environment, really skilled gameplay, endless learning curves - Client and dedicated server - Load Quake 3 maps - Add bots - And more WWW: http://www.warsow.net/ PR: ports/88903 Submitted by: Jose Alonso Cardenas Marquez <acardenas@bsd.org.pe>
12 lines
225 B
Bash
12 lines
225 B
Bash
#!/bin/sh
|
|
|
|
[ "$2" != "POST-INSTALL" ] && exit 0
|
|
|
|
config_file=$PKG_PREFIX/lib/warsow/basewsw/config.cfg
|
|
|
|
if ! [ -e $config_file ]; then
|
|
touch $config_file
|
|
chown root:wheel $config_file 2>/dev/null
|
|
chmod 666 $config_file
|
|
fi
|