freebsd-ports/games/linux-savage/pkg-install
Jose Alonso Cardenas Marquez eedfe0b3ee - Update to SFE mod (It's the final version of previous SET mod)
- Remove savage_server support
- Add MASTER_SITES entries
- Bump PORTREVISION
- More information at http://www.notforidiots.com/SFE/
2007-09-08 23:53:17 +00:00

18 lines
414 B
Bash

#!/bin/sh
[ "$2" != "POST-INSTALL" ] && exit 0
scripts_file=$PKG_PREFIX/lib/linux-savage/scripts.log
startup_file=$PKG_PREFIX/lib/linux-savage/game/startup.cfg
if ! [ -e $scripts_file ]; then
touch $scripts_file
chown root:wheel $scripts_file 2>/dev/null
chmod 666 $scripts_file
fi
if ! [ -e $startup_file ]; then
touch $startup_file
chown root:wheel $startup_file 2>/dev/null
chmod 666 $startup_file
fi