blob: 59dbaa09e4a4df7c218f9bf7403f018f46f95923 (
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
|
# New ports collection makefile for: jfk
# Date created: 8 September 2002
# Whom: Stefan Farfeleder <e0026813@stud3.tuwien.ac.at>
#
# $FreeBSD$
#
PORTNAME= jfk
PORTVERSION= 0.1.1
PORTREVISION= 8
CATEGORIES= games
MASTER_SITES= http://relax.ath.cx/jfk/
MAINTAINER= ports@FreeBSD.org
COMMENT= A multiplayer 2D shoot'em up game
GNU_CONFIGURE= yes
USE_SDL= image sdl
SUB_FILES= pkg-message
.include <bsd.port.pre.mk>
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/src/client/jfkclient ${PREFIX}/bin
${INSTALL_PROGRAM} ${WRKSRC}/src/server/jfkserver ${PREFIX}/bin
.for file in art levels
@(cd ${WRKSRC}/${file}; ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} install)
.endfor
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
.for file in controls.txt jfkclient.sample jfkserver.sample
${INSTALL_MAN} ${WRKSRC}/doc/${file} ${DOCSDIR}
.endfor
.endif
post-install:
@${CAT} ${PKGMESSAGE}
.include <bsd.port.post.mk>
|