1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-30 21:49:25 +00:00
freebsd-ports/games/crossfire/Makefile

91 lines
2.9 KiB
Makefile
Raw Normal View History

# New ports collection makefile for: crossfire
# Date created: So 27 Okt 1996 12:25:55 MET
# Whom: Andreas Klemm <andreas@klemm.gtn.com>
#
1999-08-25 06:06:33 +00:00
# $FreeBSD$
#
PORTNAME= crossfire
PORTVERSION= ${MAJ}.${MIN}.${PL}
CATEGORIES= games
MASTER_SITES= ${MASTER_SITE_LOCAL} \
ftp://ftp.real-time.com/pub/games/crossfire/ \
ftp://ftp.ifi.uio.no/pub/crossfire/ \
ftp://ftp.pyramid.com/pub/crossfire/ \
ftp://ftp.sunet.se/pub/unix/games/crossfire/ \
ftp://ftp.cs.titech.ac.jp/pub/games/crossfire/
MASTER_SITE_SUBDIR= andreas
1997-01-03 08:49:05 +00:00
DISTFILES= ${CF_SOURCES} ${CF_DOC} ${CF_MAPS} ${CF_SOUNDS} \
${CF_ARCH} ${CF_CLSERV}
MAINTAINER= ports@FreeBSD.org
1997-01-03 08:49:05 +00:00
BUILD_DEPENDS= rplay:${PORTSDIR}/audio/rplay
EXTRACT_ONLY= ${CF_SOURCES} ${CF_DOC}
1997-10-13 20:31:28 +00:00
USE_PERL5= yes
1997-01-03 08:49:05 +00:00
USE_IMAKE= yes
(1) Add new variable, XFREE86_VERSION, to specify which version of XFree86 (3 or 4) to depend to when USE_XLIB is set. XFREE86_VERSION defaults to 3 for now, but adventurous users can override it in /etc/make.conf. When XFREE86_VERSION=3, USE_XLIB will add a dependency to x11/XFree86; when it is set to 4, the dependency will be to x11/XFree86-4-libraries. When XFREE86_VERSION=4, the PKG_IGNORE_DEPENDS and ALWAYS_BUILD_DEPENDS hacks to avoid messing with XFree86 are turned off. Since XFree86 version 4 includes some software that used to be separate ports, when XFREE86_VERSION=3 the following variables are provided: USE_DGS LIB_DEPENDS on x11/dgs USE_FREETYPE LIB_DEPENDS on print/freetype USE_MESA LIB_DEPENDS on graphics/Mesa3 USE_XPM LIB_DEPENDS on graphics/xpm When XFREE86_VERSION=4, these variables have no effect. The LIB_DEPENDS in the tree for the above four ports have all been converted to the USE_* counterparts. For your information, this is the count of the number of ports: USE_DGS 0 USE_FREETYPE 16 USE_MESA 36 USE_XPM 236 There is a new variable, XAWVER, which is set to 6 when XFREE86_VERSION=3 and 7 when XFREE86_VERSION=4. This is also passed to PLIST_SUB so ports that build Xaw based shared libraries can use this variable to substitute the shlib version number. There is also a provision of using a separate mtree file for XFREE86_VERSION=4, but that part is not enabled yet. Reviewed by: the ports list Tested by: make index (XFREE86_VERSION=3 only) (2) Add hebrew to list of valid categories. Submitted by: nbm
2000-08-03 09:28:57 +00:00
USE_XPM= yes
PREFIX= ${LOCALBASE}
MAN6= crossfire.6 crossedit.6
1997-01-03 08:49:05 +00:00
.include <bsd.port.pre.mk>
.if ${XFREE86_VERSION} == 4
BUILD_DEPENDS+= bdftopcf:${PORTSDIR}/x11/XFree86-4-clients
RUN_DEPENDS= mkfontdir:${PORTSDIR}/x11/XFree86-4-clients
.endif
# Do you want to be able to rebuild documentation after installing the game
# to produce Postscript documentation with colored icons ?! You have to go
# into the workdir and to build everything manually.
# You need TeX to do this ! Please read the README's !
WANT_CF_ARCH= NO
MAJ= 0
MIN= 94
PL= 3
CF_SOURCES= crossfire-${MAJ}.${MIN}.${PL}.tar.gz
CF_MAPS= crossfire-${MAJ}.${MIN}.${PL}.maps.tar.gz
# crossfire doc ready for use
CF_DOC= crossfire-${MAJ}.${MIN}.${PL}.doc.tar.gz
# no newer sounds available
CF_SOUNDS= crossfire-${MAJ}.92.7.sounds.tar.gz
.if ${WANT_CF_ARCH} == YES || ${WANT_CF_ARCH} == yes
# only for rebuild of doc
CF_ARCH= crossfire-${MAJ}.${MIN}.${PL}.arch.tar.gz
.endif
#CF_CLSERV= eutl.tar.gz # only for client/server
CFDIR= ${PREFIX}/lib/crossfire # crossfire base directory
# If you want to re-make playbook and spoiler you need the ARCH
# files and a TeX version with a ,great' amount of max_mem
# (I had to rebuild teTeX, that already is in fact ,BigTeX')
.if ${WANT_CF_ARCH} == YES || ${WANT_CF_ARCH} == yes
post-configure:
(cd ${CFDIR}; tar -xzf ${DISTDIR}/${CF_ARCH})
.endif
post-install:
1997-01-25 12:27:16 +00:00
@(cd ${CFDIR}/lib; tar -xzf ${DISTDIR}/${CF_MAPS})
@(cd ${CFDIR}; tar -xzf ${DISTDIR}/${CF_SOUNDS})
@${MKDIR} ${PREFIX}/share/doc/crossfire
@${CP} -r ${WRKDIR}/crossfire-${MAJ}.${MIN}.${PL}-doc/* \
${PREFIX}/share/doc/crossfire
1999-08-22 19:01:07 +00:00
@${TOUCH} ${CFDIR}/lib/bookarch
@${CHMOD} 664 ${CFDIR}/lib/bookarch
@${TOUCH} ${CFDIR}/lib/forbid
@${CHMOD} 664 ${CFDIR}/lib/forbid
@${TOUCH} ${CFDIR}/lib/players/.keep_me
@${TOUCH} ${CFDIR}/lib/unique-items/.keep_me
@${CHOWN} -R root.games ${CFDIR}
1999-08-22 19:01:07 +00:00
@${CHMOD} 0664 ${CFDIR}/lib/highscore
@${CHOWN} root.games ${PREFIX}/bin/crossfire
@${CHMOD} 2555 ${PREFIX}/bin/crossfire
${ECHO} "Note: to start crossfire in clientmode"
${ECHO} " crossfire -xpm"
${ECHO} "Note: don't forget to update ${PREFIX}/etc/rplay.conf"
${ECHO} " with new sounds in ${CFDIR}/sounds"
.include <bsd.port.post.mk>