blob: 1f7759602c7edf6cd9c93df3592e94b01b0b5bf9 (
plain)
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
|
# $NetBSD: Makefile,v 1.1.1.1 2010/02/03 11:19:12 wiz Exp $
#
# This number is rather arbitrary and only for pkgsrc's benefit.
DISTNAME= marathon-trilogy-1.0
CATEGORIES= games
# The original Bungie trilogy series
DISTFILES= M1A1.zip Marathon2.zip MarathonInfinity.zip
MASTER_SITES= http://trilogyrelease.bungie.org/files/
EXTRACT_SUFX= .zip
MAINTAINER= christtrekker@users.sourceforge.net
HOMEPAGE= http://trilogyrelease.bungie.org/
COMMENT= Bungie game data files, playable with the Aleph One engine
LICENSE= generic-nonlicense
# There is no true dependency on Aleph One. These scenarios cannot be
# played without it, though.
#DEPENDS+= alephone-[0-9]*:../../games/alephone
PKG_DESTDIR_SUPPORT= user-destdir
SCENARIO_BASE= share/AlephOne/Scenarios
.for scenario in 1 2 Infinity
INSTALLATION_DIRS+= ${SCENARIO_BASE}/${scenario} ${SCENARIO_BASE}/${scenario}/Physics\ Models ${SCENARIO_BASE}/${scenario}/Scripts ${SCENARIO_BASE}/${scenario}/Themes ${SCENARIO_BASE}/${scenario}/Tracks
.endfor
NO_CONFIGURE= yes
NO_BUILD= yes
post-extract:
${FIND} ${WRKDIR} -name CVS -print | ${XARGS} -I repl ${RM} -rf "repl"
${FIND} ${WRKDIR}/M1A1 -type f -exec ${CHMOD} 0644 {} \;
${FIND} ${WRKDIR}/Marathon\ 2 -type f -exec ${CHMOD} 0644 {} \;
${FIND} ${WRKDIR}/Marathon\ Infinity -type f -exec ${CHMOD} 0644 {} \;
do-install:
#install the files into the Scenarios dir
#there is no ${INSTALL_...} command with recursive abilities...
${CP} -r ${WRKDIR}/M1A1/* ${DESTDIR}${PREFIX}/${SCENARIO_BASE}/1
${CP} -r ${WRKDIR}/Marathon\ 2/* ${DESTDIR}${PREFIX}/${SCENARIO_BASE}/2
${CP} -r ${WRKDIR}/Marathon\ Infinity/* ${DESTDIR}${PREFIX}/${SCENARIO_BASE}/Infinity
.include "../../mk/bsd.pkg.mk"
|