diff options
author | andreas <andreas@FreeBSD.org> | 1997-09-18 22:21:06 +0800 |
---|---|---|
committer | andreas <andreas@FreeBSD.org> | 1997-09-18 22:21:06 +0800 |
commit | 4d164db3125ec84c1e022b48e175db1f0a3b7d64 (patch) | |
tree | 1db0392d6e918df7fa86e1ef7bbfa28837bc7c83 /games/crossfire-client/Makefile | |
parent | 0aa4519643fcee86514c399ed6126e3b31056736 (diff) | |
download | freebsd-ports-gnome-4d164db3125ec84c1e022b48e175db1f0a3b7d64.tar.gz freebsd-ports-gnome-4d164db3125ec84c1e022b48e175db1f0a3b7d64.tar.zst freebsd-ports-gnome-4d164db3125ec84c1e022b48e175db1f0a3b7d64.zip |
many changes by Dave:
- Fix the password problem so passwords are actually checked.
- Change some default options like SAVE_HOMEDIR, XPM_PIX (you hade
the port requiring xpm but CF wasn't configured to link it in),
ForceCCOPTIONS, EXPLORE_MODE, etc.
- Remove the empty ${CFDIR}/lib/shutdown from the Makefile and the
PLIST. This file just causes the program to exit without saying
why until the user manually removes the file.
- Fix "crossfire -o" to call uname correctly.
- Set logfile to be line buffered (instead of block buffered) since they
hardly ever call fflush(3).
Submitted by: Dave Chapeskie <dchapes@golden.net>
Diffstat (limited to 'games/crossfire-client/Makefile')
-rw-r--r-- | games/crossfire-client/Makefile | 23 |
1 files changed, 3 insertions, 20 deletions
diff --git a/games/crossfire-client/Makefile b/games/crossfire-client/Makefile index d0a1bddb745a..4fda9055df0e 100644 --- a/games/crossfire-client/Makefile +++ b/games/crossfire-client/Makefile @@ -3,7 +3,7 @@ # Date created: So 27 Okt 1996 12:25:55 MET # Whom: Andreas Klemm <andreas@klemm.gtn.com> # -# $Id: Makefile,v 1.15 1997/05/29 09:40:30 andreas Exp $ +# $Id: Makefile,v 1.16 1997/07/18 05:04:10 asami Exp $ # DISTNAME= crossfire-0.93.0 @@ -16,7 +16,7 @@ MASTER_SITES= ftp://ra.pyramid.com/pub/crossfire/ \ DISTFILES= ${CF_SOURCES} ${CF_DOC} ${CF_MAPS} ${CF_SOUNDS} \ ${CF_ARCH} ${CF_CLSERV} -MAINTAINER= andreas@klemm.gtn.com +MAINTAINER= andreas@FreeBSD.ORG BUILD_DEPENDS= rplay:${PORTSDIR}/audio/rplay LIB_DEPENDS= Xpm\\.4\\.:${PORTSDIR}/graphics/xpm @@ -37,7 +37,7 @@ CF_MAPS= crossfire-0.93.0.maps.tar.gz CF_DOC= crossfire-0.93.0.doc.tar.gz # crossfire doc ready for use CF_SOUNDS= crossfire-0.92.7.sounds.tar.gz # no newer sounds available .if ${WANT_CF_ARCH} == YES || ${WANT_CF_ARCH} == yes -CF_ARCH= crossfire-0.93.0.arch.tar.gz # only for rebuild of doc +CF_ARCH= crossfire-0.93.5.arch.tar.gz # only for rebuild of doc .endif #CF_CLSERV= eutl.tar.gz # only for client/server CFDIR= ${PREFIX}/crossfire # crossfire base directory @@ -57,8 +57,6 @@ post-install: @${CP} -r ${WRKDIR}/crossfire-0.93.0-doc/* ${CFDIR}/doc @touch ${PREFIX}/crossfire/lib/bookarch @chmod 664 ${PREFIX}/crossfire/lib/bookarch - @touch ${PREFIX}/crossfire/lib/shutdown - @chmod 664 ${PREFIX}/crossfire/lib/shutdown @touch ${PREFIX}/crossfire/lib/forbid @chmod 664 ${PREFIX}/crossfire/lib/forbid @touch ${PREFIX}/crossfire/lib/players/.keep_me @@ -67,20 +65,5 @@ post-install: @chmod 0664 ${PREFIX}/crossfire/lib/highscore @/usr/sbin/chown games.games ${PREFIX}/bin/crossfire @chmod 6555 ${PREFIX}/bin/crossfire - @echo "" - @echo "======================================================" - @echo "===== ATTENTION BEFORE PLAYING =======================" - @echo "======================================================" - @echo "Create a players directory before playing crossfire, " - @echo "otherwise crossfire cannot save your player character !" - @echo "Type the following command as user in your login directory:" - @echo "" - @echo " $ mkdir players" - @echo "" - @echo "Read the docu, which is available in Postscript and HTML" - @echo "format in the directory ${CFDIR}/doc" - @echo "It is a good idea to install a WWW Browser like Mosaic" - @echo "and to set some bookmarks that point to the different" - @echo "files." .include <bsd.port.mk> |