summaryrefslogtreecommitdiff
path: root/games/crossfire-server/Makefile
blob: 7849df09287d7d57aed6ae3ba1c6bbc9ecdb44f8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# New ports collection makefile for:	crossfire
# Date created:         So  27 Okt 1996 12:25:55 MET
# Whom:                 Andreas Klemm <andreas@klemm.gtn.com>
#
# $FreeBSD$
#

PORTNAME=	crossfire
PORTVERSION=	${MAJ}.${MIN}.${PL}
CATEGORIES=	games
MASTER_SITES=	ftp://ftp.ifi.uio.no/pub/crossfire/old/ \
		ftp://ftp.sunet.se/pub/unix/games/crossfire/old/
DISTFILES=	${CF_SOURCES} ${CF_DOC} ${CF_MAPS} ${CF_SOUNDS} \
		${CF_ARCH} ${CF_CLSERV}

MAINTAINER=	ports@FreeBSD.org

BUILD_DEPENDS=	rplay:${PORTSDIR}/audio/rplay

EXTRACT_ONLY=	${CF_SOURCES} ${CF_DOC}
USE_PERL5=	yes
USE_IMAKE=	yes
USE_XPM=	yes
PREFIX=		${LOCALBASE}
MAN6=		crossfire.6 crossedit.6

.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:
	@(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
	@${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}
	@${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>