View | Details | Raw Unified | Return to bug 170150 | Differences between
and this patch

Collapse All | Expand All

(-)games/uhexen2/Makefile (-50 / +65 lines)
Lines 6-66 Link Here
6
#
6
#
7
7
8
PORTNAME=	uhexen2
8
PORTNAME=	uhexen2
9
PORTVERSION=	1.5.1
9
PORTVERSION=	1.5.4
10
PORTREVISION=	1
11
CATEGORIES=	games
10
CATEGORIES=	games
12
MASTER_SITES=	SF/${PORTNAME}/Hammer%20of%20Thyrion/${PORTVERSION}/Source
11
MASTER_SITES=	SF/${PORTNAME}/Hammer%20of%20Thyrion/${PORTVERSION}/Source \
12
		SF/${PORTNAME}/Hexen2%20GameData/gamedata-1.26:data
13
DISTNAME=	hexen2source-${PORTVERSION}
13
DISTNAME=	hexen2source-${PORTVERSION}
14
EXTRACT_SUFX=	.tgz
14
EXTRACT_SUFX=	.tgz
15
DISTFILES=	${DISTNAME}${EXTRACT_SUFX}
15
DISTFILES=	${DISTNAME}${EXTRACT_SUFX} \
16
		gamedata-all-1.26${EXTRACT_SUFX}:data
16
DIST_SUBDIR=	${PORTNAME}
17
DIST_SUBDIR=	${PORTNAME}
17
18
18
MAINTAINER=	ports@FreeBSD.org
19
MAINTAINER=	ports@FreeBSD.org
19
COMMENT=	Hexen II source port supporting Linux/FreeBSD/Unix/Windows
20
COMMENT=	Hexen II source port supporting Linux/FreeBSD/Unix/Windows
20
21
21
LIB_DEPENDS=	mad.2:${PORTSDIR}/audio/libmad
22
LICENSE=	GPLv2 # (or later)
22
23
23
LICENSE_=	GPLv2 GPLv3
24
LIB_DEPENDS=	mad:${PORTSDIR}/audio/libmad \
24
LICENSE_COMB=	dual
25
		vorbis:${PORTSDIR}/audio/libvorbis
25
26
26
USE_GMAKE=	yes
27
OPTIONS_MULTI=		BIN
27
USE_GL=		yes
28
USE_SDL=	sdl mixer
29
WANT_GNOME=	yes
30
MAKE_JOBS_UNSAFE=	yes
31
32
OPTIONS_MULTI=	BIN
33
OPTIONS_MULTI_BIN=	HEXEN2 HW
28
OPTIONS_MULTI_BIN=	HEXEN2 HW
34
OPTIONS_DEFINE=	DEMO LAUNCHER_GTK1 LAUNCHER_GTK2 X86_ASM DOCS
29
OPTIONS_DEFINE=		LAUNCHER_GTK1 LAUNCHER_GTK2 LAUNCHER_GTK3 X86_ASM DOCS
35
OPTIONS_DEFAULT=	HEXEN2 HW LAUNCHER_GTK1 X86_ASM
30
OPTIONS_DEFAULT=	HEXEN2 HW LAUNCHER_GTK2 X86_ASM
36
DEMO_DESC=	Install demo version of the game data
31
HEXEN2_DESC=		Build Hexen II clients and servers
37
HEXEN2_DESC=	Build Hexen II clients and servers
32
HW_DESC=		Build HexenWorld clients and servers
38
HW_DESC=	Build HexenWorld clients and servers
39
LAUNCHER_GTK1_DESC=	Build graphical (GTK1) game launcher
33
LAUNCHER_GTK1_DESC=	Build graphical (GTK1) game launcher
40
LAUNCHER_GTK2_DESC=	Build graphical (GTK2) game launcher
34
LAUNCHER_GTK2_DESC=	Build graphical (GTK2) game launcher
41
X86_ASM_DESC=	Enable use of optimized x86 assembly code
35
LAUNCHER_GTK3_DESC=	Build graphical (GTK3) game launcher
36
X86_ASM_DESC=		Use optimized assembly code (x86 only)
42
37
43
PORTSCOUT=	skipb:yes
38
USE_SDL=	sdl
39
USE_GL=		gl
40
USE_GMAKE=	yes
41
MAKE_ENV=	X11BASE="${LOCALBASE}"
42
MAKE_JOBS_UNSAFE=yes
44
43
45
.include <bsd.port.pre.mk>
44
SUB_FILES=	pkg-message
46
45
47
.if ${PORT_OPTIONS:MDEMO}
46
PORTSCOUT=	skipb:yes
48
MASTER_SITES+=	SF/${PORTNAME}/Hammer%20of%20Thyrion/${PORTVERSION}/Linux-demo-version:demo
47
49
DISTFILES+=	hexen2demo-${PORTVERSION}-linux-i586${EXTRACT_SUFX}:demo
48
.include <bsd.port.options.mk>
50
MAKE_ENV+=	DEMO=yes
51
PLIST_SUB+=	DEMO="" \
52
		FULL="@comment "
53
UH2_DATA=	default.cfg hexen.rc pak0.pak progs.dat
54
UH2_DATADIR=	${WRKDIR}/hexen2demo-${PORTVERSION}
55
.else
56
MASTER_SITES+=	SF/${PORTNAME}/Hexen2%20GameData/gamedata-1.20:data
57
DISTFILES+=	gamedata-all-1.20${EXTRACT_SUFX}:data
58
PLIST_SUB+=	DEMO="@comment " \
59
		FULL=""
60
SUB_FILES+=	pkg-message
61
UH2_DATA=	default.cfg hexen.rc progs.dat progs2.dat strings.txt
62
UH2_DATADIR=	${WRKDIR}
63
.endif
64
49
65
.if ${PORT_OPTIONS:MHEXEN2}
50
.if ${PORT_OPTIONS:MHEXEN2}
66
MAKE_ENV+=	BUILD_HEXEN2=yes
51
MAKE_ENV+=	BUILD_HEXEN2=yes
Lines 72-86 Link Here
72
.endif
57
.endif
73
58
74
.if ${PORT_OPTIONS:MHW}
59
.if ${PORT_OPTIONS:MHW}
75
. if empty(PORT_OPTIONS:MDEMO)
76
MASTER_SITES+=	SF/${PORTNAME}/Hexen2%20GameData/hexenworld-pakfiles:hw
60
MASTER_SITES+=	SF/${PORTNAME}/Hexen2%20GameData/hexenworld-pakfiles:hw
77
DISTFILES+=	hexenworld-pakfiles-0.15${EXTRACT_SUFX}:hw
61
DISTFILES+=	hexenworld-pakfiles-0.15${EXTRACT_SUFX}:hw
78
. endif
79
MAKE_ENV+=	BUILD_HW=yes
62
MAKE_ENV+=	BUILD_HW=yes
80
PLIST_SUB+=	HW=""
63
PLIST_SUB+=	HW=""
81
UH2_BIN+=	engine/hexenworld/client/glhwcl \
64
UH2_BIN+=	engine/hexenworld/client/glhwcl \
65
		engine/hexenworld/client/hwcl \
82
		engine/hexenworld/server/hwsv \
66
		engine/hexenworld/server/hwsv \
83
		engine/hexenworld/client/hwcl
67
		hw_utils/hwmaster/hwmaster
84
.else
68
.else
85
PLIST_SUB+=	HW="@comment "
69
PLIST_SUB+=	HW="@comment "
86
.endif
70
.endif
Lines 101-129 Link Here
101
PLIST_SUB+=	LAUNCHER_GTK2="@comment "
85
PLIST_SUB+=	LAUNCHER_GTK2="@comment "
102
.endif
86
.endif
103
87
88
.if ${PORT_OPTIONS:MLAUNCHER_GTK3}
89
USE_GNOME+=	gtk30
90
MAKE_ENV+=	BUILD_LAUNCHER_GTK3=yes
91
PLIST_SUB+=	LAUNCHER_GTK3=""
92
.else
93
PLIST_SUB+=	LAUNCHER_GTK3="@comment "
94
.endif
95
96
.include <bsd.port.pre.mk>
97
104
.if ${PORT_OPTIONS:MX86_ASM} && ${ARCH} == "i386"
98
.if ${PORT_OPTIONS:MX86_ASM} && ${ARCH} == "i386"
105
BUILD_DEPENDS+=	nasm:${PORTSDIR}/devel/nasm
99
BUILD_DEPENDS+=	nasm:${PORTSDIR}/devel/nasm
106
MAKE_ENV+=	USE_X86_ASM=yes
100
MAKE_ENV+=	USE_X86_ASM=yes
101
.else
102
MAKE_ENV+=	USE_X86_ASM=no
107
.endif
103
.endif
108
104
109
post-extract:
105
post-extract:
110
	@${CP} ${FILESDIR}/${MAKEFILE} ${WRKSRC}
106
	@${CP} ${FILESDIR}/${MAKEFILE} ${WRKSRC}
111
107
108
post-patch:
109
.for f in engine/hexen2/Makefile engine/hexenworld/client/Makefile \
110
	engine/hexenworld/server/Makefile hw_utils/hwmaster/Makefile \
111
	launcher/Makefile libs/timidity/Makefile
112
	@${REINPLACE_CMD} -e \
113
		'/^USE_X86_ASM/s|^|#| ; \
114
		 /^CPU_X86/s|^|#| ; \
115
		 /^CFLAGS/s| -g | | ; \
116
		 /^CFLAGS/s| -O2 | | ; \
117
		 /^PTHREAD_LIBS/s|-lpthread|${PTHREAD_LIBS} |' ${WRKSRC}/${f}
118
.endfor
119
.for f in engine/h2shared/cd_bsd.c
120
	@${REINPLACE_CMD} -e \
121
		's|"acd0"|"cd0"|' ${WRKSRC}/${f}
122
.endfor
123
.for f in engine/hexen2/sys_unix.c engine/hexenworld/client/sys_unix.c
124
	@${REINPLACE_CMD} -e \
125
		'/parms.basedir/s|= cwd;|= "${DATADIR}";|' ${WRKSRC}/${f}
126
.endfor
127
112
do-install:
128
do-install:
113
.for f in ${UH2_BIN}
129
.for f in ${UH2_BIN}
114
	${INSTALL_PROGRAM} ${WRKSRC}/${f} ${PREFIX}/bin
130
	${INSTALL_PROGRAM} ${WRKSRC}/${f} ${PREFIX}/bin
115
.endfor
131
.endfor
116
	${MKDIR} ${DATADIR}/data1
132
	${MKDIR} ${DATADIR}/data1
117
.for f in ${UH2_DATA}
133
.for f in default.cfg hexen.rc progs.dat progs2.dat strings.txt
118
	${INSTALL_DATA} ${UH2_DATADIR}/data1/${f} ${DATADIR}/data1
134
	${INSTALL_DATA} ${WRKDIR}/data1/${f} ${DATADIR}/data1
119
.endfor
135
.endfor
120
.if empty(PORT_OPTIONS:MDEMO)
121
	${INSTALL_DATA} ${WRKDIR}/patchdat/data1/* ${DATADIR}/data1
136
	${INSTALL_DATA} ${WRKDIR}/patchdat/data1/* ${DATADIR}/data1
122
	${CP} -R ${WRKDIR}/portals ${DATADIR}
137
	@(cd ${WRKDIR} && ${COPYTREE_SHARE} portals ${DATADIR})
123
.endif
124
.if ${PORT_OPTIONS:MHW}
138
.if ${PORT_OPTIONS:MHW}
125
	${MKDIR} ${DATADIR}/hw
139
	${MKDIR} ${DATADIR}/hw
126
	${INSTALL_DATA} ${UH2_DATADIR}/hw/* ${DATADIR}/hw
140
	${INSTALL_DATA} ${WRKDIR}/hw/* ${DATADIR}/hw
127
.endif
141
.endif
128
.if ${PORT_OPTIONS:MLAUNCHER_GTK1}
142
.if ${PORT_OPTIONS:MLAUNCHER_GTK1}
129
	${INSTALL_PROGRAM} ${WRKSRC}/launcher/h2launcher.gtk1 ${PREFIX}/bin
143
	${INSTALL_PROGRAM} ${WRKSRC}/launcher/h2launcher.gtk1 ${PREFIX}/bin
Lines 131-146 Link Here
131
.if ${PORT_OPTIONS:MLAUNCHER_GTK2}
145
.if ${PORT_OPTIONS:MLAUNCHER_GTK2}
132
	${INSTALL_PROGRAM} ${WRKSRC}/launcher/h2launcher.gtk2 ${PREFIX}/bin
146
	${INSTALL_PROGRAM} ${WRKSRC}/launcher/h2launcher.gtk2 ${PREFIX}/bin
133
.endif
147
.endif
148
.if ${PORT_OPTIONS:MLAUNCHER_GTK3}
149
	${INSTALL_PROGRAM} ${WRKSRC}/launcher/h2launcher.gtk3 ${PREFIX}/bin
150
.endif
134
.if ${PORT_OPTIONS:MDOCS}
151
.if ${PORT_OPTIONS:MDOCS}
135
	${MKDIR} ${DOCSDIR}
152
	${MKDIR} ${DOCSDIR}
136
	${INSTALL_DATA} ${WRKSRC}/docs/* ${DOCSDIR}
153
	${INSTALL_DATA} ${WRKSRC}/docs/* ${DOCSDIR}
137
.endif
154
.endif
138
155
139
.if empty(PORT_OPTIONS:MDEMO)
140
post-install:
156
post-install:
141
	@${ECHO_CMD}
157
	@${ECHO_CMD}
142
	@${CAT} ${PKGMESSAGE}
158
	@${CAT} ${PKGMESSAGE}
143
	@${ECHO_CMD}
159
	@${ECHO_CMD}
144
.endif
145
160
146
.include <bsd.port.post.mk>
161
.include <bsd.port.post.mk>
(-)games/uhexen2/distinfo (-6 / +4 lines)
Lines 1-8 Link Here
1
SHA256 (uhexen2/hexen2source-1.5.1.tgz) = da805bb45d54bb0a65df36cbbeba494c055ff7dbfbbdb3f2acd835778c0ccc0b
1
SHA256 (uhexen2/hexen2source-1.5.4.tgz) = f8aa8309d0f84143cc88f2101ee578a4a328a4221bd5198530e868b06137df10
2
SIZE (uhexen2/hexen2source-1.5.1.tgz) = 2133252
2
SIZE (uhexen2/hexen2source-1.5.4.tgz) = 2196923
3
SHA256 (uhexen2/gamedata-all-1.20.tgz) = aabc82d364c0f6fd89a51262db1dc2d76e7d1066bd79b2eb76909a55e4d99e73
3
SHA256 (uhexen2/gamedata-all-1.26.tgz) = 5b01b49294c2158b7fdafda60dd370e60f37ddb1840f8056bee1ee7d15271a8d
4
SIZE (uhexen2/gamedata-all-1.20.tgz) = 3807819
4
SIZE (uhexen2/gamedata-all-1.26.tgz) = 3807789
5
SHA256 (uhexen2/hexenworld-pakfiles-0.15.tgz) = 49462cdf984deee7350d03c7d192d1c34d682647ffc9d06de4308e0a7c71c4d9
5
SHA256 (uhexen2/hexenworld-pakfiles-0.15.tgz) = 49462cdf984deee7350d03c7d192d1c34d682647ffc9d06de4308e0a7c71c4d9
6
SIZE (uhexen2/hexenworld-pakfiles-0.15.tgz) = 4948641
6
SIZE (uhexen2/hexenworld-pakfiles-0.15.tgz) = 4948641
7
SHA256 (uhexen2/hexen2demo-1.5.1-linux-i586.tgz) = 3a86f0cdeed6ec8a1be2565db418941ac9af450c1f95d475c340338b2035f737
8
SIZE (uhexen2/hexen2demo-1.5.1-linux-i586.tgz) = 19516960
(-)games/uhexen2/files/Makefile (-1 / +9 lines)
Lines 10-16 Link Here
10
	$(MAKE) -C engine/hexen2 glh2 clean
10
	$(MAKE) -C engine/hexen2 glh2 clean
11
endif
11
endif
12
ifeq ($(BUILD_HW),yes)
12
ifeq ($(BUILD_HW),yes)
13
	cd engine/hexenworld && ./build.sh
13
	$(MAKE) -C engine/hexenworld/server hwsv clean
14
	$(MAKE) -C engine/hexenworld/client hw localclean
15
	$(MAKE) -C engine/hexenworld/client glhw localclean
16
	$(MAKE) -C hw_utils/hwmaster hwmaster clean
14
endif
17
endif
15
ifeq ($(BUILD_LAUNCHER_GTK1),yes)
18
ifeq ($(BUILD_LAUNCHER_GTK1),yes)
16
	$(MAKE) -C launcher GTK1=yes
19
	$(MAKE) -C launcher GTK1=yes
Lines 22-24 Link Here
22
	cd launcher && mv h2launcher h2launcher.gtk2
25
	cd launcher && mv h2launcher h2launcher.gtk2
23
	$(MAKE) -C launcher clean
26
	$(MAKE) -C launcher clean
24
endif
27
endif
28
ifeq ($(BUILD_LAUNCHER_GTK3),yes)
29
	$(MAKE) -C launcher GTK3=yes
30
	cd launcher && mv h2launcher h2launcher.gtk3
31
	$(MAKE) -C launcher clean
32
endif
(-)games/uhexen2/files/patch-scripts__makefile.inc (-11 lines)
Lines 1-11 Link Here
1
--- scripts/makefile.inc.orig	2008-04-02 14:55:23.000000000 -0300
2
+++ scripts/makefile.inc	2008-04-21 15:18:12.000000000 -0300
3
@@ -29,7 +29,7 @@
4
 # Common paths:
5
 
6
 # X directory
7
-X11BASE ?=/usr/X11R6
8
+X11BASE ?=/usr/local
9
 
10
 # Local w32stuff directory:
11
 W32STUFF :=$(UHEXEN2_TOP)/w32stuff
(-)games/uhexen2/pkg-plist (-32 / +26 lines)
Lines 2-11 Link Here
2
%%HW%%bin/glhwcl
2
%%HW%%bin/glhwcl
3
%%LAUNCHER_GTK1%%bin/h2launcher.gtk1
3
%%LAUNCHER_GTK1%%bin/h2launcher.gtk1
4
%%LAUNCHER_GTK2%%bin/h2launcher.gtk2
4
%%LAUNCHER_GTK2%%bin/h2launcher.gtk2
5
%%LAUNCHER_GTK3%%bin/h2launcher.gtk3
5
%%HEXEN2%%bin/hexen2
6
%%HEXEN2%%bin/hexen2
6
%%HW%%bin/hwcl
7
%%HW%%bin/hwcl
8
%%HW%%bin/hwmaster
7
%%HW%%bin/hwsv
9
%%HW%%bin/hwsv
8
%%PORTDOCS%%%%DOCSDIR%%/ABOUT
10
%%PORTDOCS%%%%DOCSDIR%%/ABOUT
11
%%PORTDOCS%%%%DOCSDIR%%/AUTHORS
9
%%PORTDOCS%%%%DOCSDIR%%/BUGS
12
%%PORTDOCS%%%%DOCSDIR%%/BUGS
10
%%PORTDOCS%%%%DOCSDIR%%/CHANGES
13
%%PORTDOCS%%%%DOCSDIR%%/CHANGES
11
%%PORTDOCS%%%%DOCSDIR%%/CHANGES.old
14
%%PORTDOCS%%%%DOCSDIR%%/CHANGES.old
Lines 15-21 Link Here
15
%%PORTDOCS%%%%DOCSDIR%%/README
18
%%PORTDOCS%%%%DOCSDIR%%/README
16
%%PORTDOCS%%%%DOCSDIR%%/README.3dfx
19
%%PORTDOCS%%%%DOCSDIR%%/README.3dfx
17
%%PORTDOCS%%%%DOCSDIR%%/README.AoT
20
%%PORTDOCS%%%%DOCSDIR%%/README.AoT
18
%%PORTDOCS%%%%DOCSDIR%%/README.demo
19
%%PORTDOCS%%%%DOCSDIR%%/README.dos
21
%%PORTDOCS%%%%DOCSDIR%%/README.dos
20
%%PORTDOCS%%%%DOCSDIR%%/README.hwcl
22
%%PORTDOCS%%%%DOCSDIR%%/README.hwcl
21
%%PORTDOCS%%%%DOCSDIR%%/README.hwmaster
23
%%PORTDOCS%%%%DOCSDIR%%/README.hwmaster
Lines 23-68 Link Here
23
%%PORTDOCS%%%%DOCSDIR%%/README.launcher
25
%%PORTDOCS%%%%DOCSDIR%%/README.launcher
24
%%PORTDOCS%%%%DOCSDIR%%/README.music
26
%%PORTDOCS%%%%DOCSDIR%%/README.music
25
%%PORTDOCS%%%%DOCSDIR%%/README.win32
27
%%PORTDOCS%%%%DOCSDIR%%/README.win32
26
%%PORTDOCS%%%%DOCSDIR%%/ReleaseNotes-1.2.3
28
%%PORTDOCS%%%%DOCSDIR%%/ReleaseNotes
27
%%PORTDOCS%%%%DOCSDIR%%/ReleaseNotes-1.2.4a
29
%%PORTDOCS%%%%DOCSDIR%%/ReleaseNotes.old
28
%%PORTDOCS%%%%DOCSDIR%%/ReleaseNotes-1.3.0
29
%%PORTDOCS%%%%DOCSDIR%%/ReleaseNotes-1.4.0
30
%%PORTDOCS%%%%DOCSDIR%%/ReleaseNotes-1.4.1
31
%%PORTDOCS%%%%DOCSDIR%%/ReleaseNotes-1.4.2
32
%%PORTDOCS%%%%DOCSDIR%%/ReleaseNotes-1.4.3
33
%%PORTDOCS%%%%DOCSDIR%%/ReleaseNotes-1.5.0
34
%%PORTDOCS%%%%DOCSDIR%%/ReleaseNotes-1.5.1
35
%%PORTDOCS%%%%DOCSDIR%%/SrcNotes.txt
30
%%PORTDOCS%%%%DOCSDIR%%/SrcNotes.txt
36
%%PORTDOCS%%%%DOCSDIR%%/TODO
31
%%PORTDOCS%%%%DOCSDIR%%/TODO
32
%%DATADIR%%/data1/data1pk0.xd3
33
%%DATADIR%%/data1/data1pk1.xd3
37
%%DATADIR%%/data1/default.cfg
34
%%DATADIR%%/data1/default.cfg
38
%%DATADIR%%/data1/hexen.rc
35
%%DATADIR%%/data1/hexen.rc
39
%%DEMO%%%%DATADIR%%/data1/pak0.pak
40
%%FULL%%%%DATADIR%%/data1/data1pk0.xd3
41
%%FULL%%%%DATADIR%%/data1/data1pk1.xd3
42
%%DATADIR%%/data1/progs.dat
36
%%DATADIR%%/data1/progs.dat
43
%%FULL%%%%DATADIR%%/data1/progs2.dat
37
%%DATADIR%%/data1/progs2.dat
44
%%FULL%%%%DATADIR%%/data1/strings.txt
38
%%DATADIR%%/data1/strings.txt
45
%%HW%%%%DATADIR%%/hw/default.cfg
39
%%HW%%%%DATADIR%%/hw/default.cfg
46
%%HW%%%%DATADIR%%/hw/hwprogs.dat
40
%%HW%%%%DATADIR%%/hw/hwprogs.dat
47
%%HW%%%%DATADIR%%/hw/pak4.pak
41
%%HW%%%%DATADIR%%/hw/pak4.pak
48
%%FULL%%%%HW%%%%DATADIR%%/hw/pak4_readme.txt
42
%%HW%%%%DATADIR%%/hw/pak4_readme.txt
49
%%HW%%%%DATADIR%%/hw/strings.txt
43
%%HW%%%%DATADIR%%/hw/strings.txt
50
%%FULL%%%%HW%%%%DATADIR%%/hw/strings.txt.demo
44
%%HW%%%%DATADIR%%/hw/strings.txt.demo
51
%%FULL%%%%DATADIR%%/portals/default.cfg
45
%%DATADIR%%/portals/default.cfg
52
%%FULL%%%%DATADIR%%/portals/hexen.rc
46
%%DATADIR%%/portals/hexen.rc
53
%%FULL%%%%DATADIR%%/portals/infolist.txt
47
%%DATADIR%%/portals/infolist.txt
54
%%FULL%%%%DATADIR%%/portals/maplist.txt
48
%%DATADIR%%/portals/maplist.txt
55
%%FULL%%%%DATADIR%%/portals/progs.dat
49
%%DATADIR%%/portals/maps/README.txt
56
%%FULL%%%%DATADIR%%/portals/puzzles.txt
50
%%DATADIR%%/portals/maps/tibet2.ent
57
%%FULL%%%%DATADIR%%/portals/strings.txt
51
%%DATADIR%%/portals/maps/tibet2.txt
58
%%FULL%%%%DATADIR%%/portals/maps/README.txt
52
%%DATADIR%%/portals/maps/tibet9.ent
59
%%FULL%%%%DATADIR%%/portals/maps/tibet2.ent
53
%%DATADIR%%/portals/maps/tibet9.txt
60
%%FULL%%%%DATADIR%%/portals/maps/tibet2.txt
54
%%DATADIR%%/portals/progs.dat
61
%%FULL%%%%DATADIR%%/portals/maps/tibet9.ent
55
%%DATADIR%%/portals/puzzles.txt
62
%%FULL%%%%DATADIR%%/portals/maps/tibet9.txt
56
%%DATADIR%%/portals/strings.txt
63
%%PORTDOCS%%@dirrm %%DOCSDIR%%
57
@dirrm %%DATADIR%%/portals/maps
64
%%FULL%%@dirrm %%DATADIR%%/portals/maps
58
@dirrm %%DATADIR%%/portals
65
%%FULL%%@dirrm %%DATADIR%%/portals
66
%%HW%%@dirrm %%DATADIR%%/hw
59
%%HW%%@dirrm %%DATADIR%%/hw
67
@dirrm %%DATADIR%%/data1
60
@dirrm %%DATADIR%%/data1
68
@dirrm %%DATADIR%%
61
@dirrm %%DATADIR%%
62
%%PORTDOCS%%@dirrm %%DOCSDIR%%

Return to bug 170150