View | Details | Raw Unified | Return to bug 209296
Collapse All | Expand All

(-)games/quakeforge/Makefile (-92 / +92 lines)
Lines 2-12 Link Here
2
# $FreeBSD: head/games/quakeforge/Makefile 412346 2016-04-01 14:00:51Z mat $
2
# $FreeBSD: head/games/quakeforge/Makefile 412346 2016-04-01 14:00:51Z mat $
3
3
4
PORTNAME=	quakeforge
4
PORTNAME=	quakeforge
5
PORTVERSION=	0.5.5
5
PORTVERSION=	0.7.2
6
PORTREVISION=	16
7
CATEGORIES=	games
6
CATEGORIES=	games
8
MASTER_SITES=	SF/quake/quake/${PORTVERSION}:sf
7
MASTER_SITES=	SF/quake/quake/${PORTVERSION}
9
DISTFILES=	${DISTNAME}${EXTRACT_SUFX}:sf
8
DISTFILES=	${DISTNAME}${EXTRACT_SUFX}
10
DIST_SUBDIR=	${PORTNAME}
9
DIST_SUBDIR=	${PORTNAME}
11
EXTRACT_ONLY=	${DISTNAME}${EXTRACT_SUFX}
10
EXTRACT_ONLY=	${DISTNAME}${EXTRACT_SUFX}
12
11
Lines 18-125 Link Here
18
17
19
LIB_DEPENDS=	libpng.so:graphics/png
18
LIB_DEPENDS=	libpng.so:graphics/png
20
19
20
USES=		bison compiler:c11 gmake libtool localbase tar:bzip2
21
USE_CSTD=	gnu89
21
GNU_CONFIGURE=	yes
22
GNU_CONFIGURE=	yes
23
CONFIGURE_ENV=	Z_CFLAGS=" " Z_LIBS="-lz"
24
CONFIGURE_ARGS=	--disable-alsa \
25
		--disable-debug \
26
		--disable-optimize \
27
		--disable-static \
28
		--enable-xdg \
29
		--with-cpp="${CPP} %d %i %o" \
30
		--with-global-cfg=${PREFIX}/etc/quakeforge.conf \
31
		--with-ipv6 \
32
		--with-sharepath=${Q1DIR}
22
INSTALL_TARGET=	install-strip
33
INSTALL_TARGET=	install-strip
23
USES=		bison compiler:nestedfct gmake libtool tar:bzip2
24
USE_LDCONFIG=	yes
34
USE_LDCONFIG=	yes
25
35
26
CONFIGURE_ARGS+=--with-global-cfg=${PREFIX}/etc/quakeforge.conf \
36
SUB_FILES=	pkg-message
27
		--with-sharepath=${DATADIR} \
28
		--disable-debug \
29
		--disable-optimize
30
31
OPTIONS_DEFINE=		CLIENTS OPTIMIZED_CFLAGS SDL SERVERS SKYBOXES VORBIS \
32
			XMMS DOCS
33
37
34
OPTIONS_DEFAULT=	CLIENTS SERVERS DOCS
38
OPTIONS_DEFINE=		CLIENTS DOCS FLAC JACK OPTIMIZED_CFLAGS SDL SERVERS \
39
			SKYBOXES VORBIS XMMS XXF86DGA XXF86VM
40
OPTIONS_DEFAULT=	CLIENTS SERVERS
41
OPTIONS_SUB=		yes
35
42
36
CLIENTS_DESC=		Clients
43
CLIENTS_DESC=		Clients
37
SDL_DESC=		SDL client
44
CLIENTS_BUILD_DEPENDS=	icotool:graphics/icoutils
45
CLIENTS_LIB_DEPENDS=	libsamplerate.so:audio/libsamplerate \
46
			libcurl.so:ftp/curl
47
CLIENTS_USES=		pkgconfig
48
CLIENTS_USE=		gl=glu xorg=xext
49
CLIENTS_CONFIGURE_OFF=	--with-clients=""
50
CLIENTS_VERS=		INSTALLS_ICONS=yes
51
FLAC_LIB_DEPENDS=	libFLAC.so:audio/flac
52
FLAC_CONFIGURE_ON=	--with-libFLAC=${LOCALBASE}
53
FLAC_CONFIGURE_OFF=	--disable-flac
54
FLAC_IMPLIES=		CLIENTS
55
JACK_LIB_DEPENDS=	libjack.so:audio/jack
56
JACK_CONFIGURE_OFF=	--disable-jack
57
JACK_IMPLIES=		CLIENTS
58
OPTIMIZED_CFLAGS_CFLAGS=\
59
			-O3 -funroll-loops -fomit-frame-pointer -fno-common \
60
			-fexpensive-optimizations -fstrict-aliasing -ffast-math
61
SDL_USE=		sdl=sdl
62
SDL_CONFIGURE_ON=	--with-sdl-prefix=${LOCALBASE}
63
SDL_CONFIGURE_OFF=	--disable-sdl
64
SDL_IMPLIES=		CLIENTS
38
SERVERS_DESC=		Dedicated servers
65
SERVERS_DESC=		Dedicated servers
66
SERVERS_USES=		ncurses
67
SERVERS_CONFIGURE_OFF=	--with-servers=""
39
SKYBOXES_DESC=		Install skyboxes pak
68
SKYBOXES_DESC=		Install skyboxes pak
40
VORBIS_DESC=		Ogg Vorbis support in clients
69
SKYBOXES_MASTER_SITES=	http://www.quakeforge.net/files/:qf
41
XMMS_DESC=		XMMS support in clients
70
SKYBOXES_DISTFILES=	skyboxes.pak:qf
42
71
VORBIS_LIB_DEPENDS=	libvorbis.so:audio/libvorbis
43
SUB_FILES=	pkg-message
72
VORBIS_CONFIGURE_ON=	--with-ogg=${LOCALBASE} --with-vorbis=${LOCALBASE}
44
73
VORBIS_CONFIGURE_OFF=	--disable-vorbis
45
DATADIR=	${Q1DIR}
74
VORBIS_IMPLIES=		CLIENTS
75
XMMS_DESC=		Sound support via XMMS
76
XMMS_LIB_DEPENDS=	libxmms.so:multimedia/xmms
77
XMMS_CONFIGURE_ON=	--enable-xmms --with-xmms-prefix=${LOCALBASE}
78
XMMS_IMPLIES=		CLIENTS
79
XXF86DGA_DESC=		XFree86 DGA Extension support
80
XXF86DGA_USE=		xorg=xxf86dga
81
XXF86DGA_CONFIGURE_OFF=	--disable-dga
82
XXF86DGA_IMPLIES=	CLIENTS
83
XXF86VM_DESC=		XFree86 Vidmode Extension support
84
XXF86VM_USE=		xorg=xxf86vm
85
XXF86VM_CONFIGURE_OFF=	--disable-vidmode
86
XXF86VM_IMPLIES=	CLIENTS
46
87
47
.include "${.CURDIR}/../quake-data/Makefile.include"
48
.include <bsd.port.options.mk>
88
.include <bsd.port.options.mk>
49
89
50
.if ${PORT_OPTIONS:MCLIENTS}
51
USE_GL=		yes
52
USE_XORG=	x11 xt
53
PLIST_SUB+=	CLIENTS=""
54
55
.if ${PORT_OPTIONS:MSDL}
56
USE_SDL=	sdl
57
CONFIGURE_ARGS+=--with-sdl=${LOCALBASE}
58
PLIST_SUB+=	SDL=""
59
.else
60
CONFIGURE_ARGS+=--disable-sdl
61
PLIST_SUB+=	SDL="@comment "
62
.endif
63
64
.if ${PORT_OPTIONS:MVORBIS}
65
LIB_DEPENDS+=	libvorbis.so:audio/libvorbis
66
CONFIGURE_ARGS+=--with-ogg=${LOCALBASE} --with-vorbis=${LOCALBASE}
67
PLIST_SUB+=	VORBIS=""
68
.else
69
CONFIGURE_ARGS+=--disable-ogg --disable-vorbis
70
PLIST_SUB+=	VORBIS="@comment "
71
.endif
72
73
.if ${PORT_OPTIONS:MXMMS}
74
LIB_DEPENDS+=	libxmms.so:multimedia/xmms
75
CONFIGURE_ARGS+=--with-xmms-prefix=${LOCALBASE}
76
PLIST_SUB+=	XMMS=""
77
.else
78
CONFIGURE_ARGS+=--disable-xmms
79
PLIST_SUB+=	XMMS="@comment "
80
.endif
81
82
.else
83
CONFIGURE_ARGS+=--with-clients=""
84
PLIST_SUB+=	CLIENTS="@comment "
85
.endif
86
87
.if ${PORT_OPTIONS:MOPTIMIZED_CFLAGS}
88
CFLAGS+=	-O3 -funroll-loops -fomit-frame-pointer -fno-common \
89
		-fexpensive-optimizations -fstrict-aliasing -ffast-math
90
.endif
91
92
.if ${PORT_OPTIONS:MSERVERS}
93
PLIST_SUB+=	SERVERS=""
94
.else
95
CONFIGURE_ARGS+=--with-servers=""
96
PLIST_SUB+=	SERVERS="@comment "
97
.endif
98
99
.if ${PORT_OPTIONS:MSKYBOXES}
100
MASTER_SITES+=	http://www.quakeforge.net/files/:qf
101
DISTFILES+=	skyboxes.pak:qf
102
PLIST_SUB+=	SKYBOXES=""
103
.else
104
PLIST_SUB+=	SKYBOXES="@comment "
105
.endif
106
107
post-patch:
90
post-patch:
108
	@${REINPLACE_CMD} -e 's,\*gzfile,gzfile,' ${WRKSRC}/libs/util/quakeio.c
91
	@${REINPLACE_CMD} -e \
109
	@${REINPLACE_CMD} -e 's,-no-undefined,& -L${LOCALBASE}/lib,' \
92
		's|^Z_LIBS=""|| ; \
110
		${WRKSRC}/libs/image/Makefile.in
93
		 /if test/s|==|=| ; \
94
		 /for qf_t in/s|,qwaq,|,|' \
95
		${WRKSRC}/configure
96
	@${REINPLACE_CMD} -e \
97
		'/^pkgdatadir/s|@libdir@|@prefix@/libdata|' \
98
		${WRKSRC}/pkg-config/Makefile.in
99
100
post-build-CLIENTS-on:
101
.for i in 16 32
102
	@${MKDIR} ${WRKDIR}/icons/hicolor/${i}x${i}/apps
103
	icotool -x -o ${WRKDIR}/icons/hicolor/${i}x${i}/apps/quake.png \
104
		-w ${i} -b 8 ${WRKSRC}/doc/qf.ico
105
.endfor
111
106
112
post-install:
107
post-install:
113
.if ${PORT_OPTIONS:MSKYBOXES}
108
	(cd ${WRKSRC}/doc/man && ${INSTALL_MAN} quakeforge.1 \
114
	${INSTALL_DATA} ${DISTDIR}/${DIST_SUBDIR}/skyboxes.pak \
109
		${STAGEDIR}${MANPREFIX}/man/man1)
115
		${STAGEDIR}${DATADIR}/QF
110
116
.endif
111
post-install-CLIENTS-on:
117
	@${MKDIR} ${STAGEDIR}${DOCSDIR}
112
	@(cd ${WRKDIR} && ${COPYTREE_SHARE} icons \
118
.for f in *.txt *.q1 *.q2 *.ico *.gif *.fig *.h CodingStyle
113
		${STAGEDIR}${PREFIX}/share)
119
	${INSTALL_DATA} ${WRKSRC}/doc/${f} ${STAGEDIR}${DOCSDIR}
114
120
.endfor
115
post-install-DOCS-on:
121
.for d in config data ideas
116
	@(cd ${WRKSRC}/doc && ${COPYTREE_SHARE} "config gib" \
122
	${CP} -a ${WRKSRC}/doc/${d} ${STAGEDIR}${DOCSDIR}
117
		${STAGEDIR}${DOCSDIR})
123
.endfor
118
119
post-install-SKYBOXES-on:
120
	@${MKDIR} ${STAGEDIR}${Q1DIR}/QF
121
	(cd ${DISTDIR}/${DIST_SUBDIR} && ${INSTALL_DATA} skyboxes.pak \
122
		${STAGEDIR}${Q1DIR}/QF)
124
123
124
.include "${.CURDIR}/../quake-data/Makefile.include"
125
.include <bsd.port.mk>
125
.include <bsd.port.mk>
(-)games/quakeforge/distinfo (-2 / +2 lines)
Lines 1-4 Link Here
1
SHA256 (quakeforge/quakeforge-0.5.5.tar.bz2) = 9ff29340f571fc26d19992a32f58e767e1b811248688f383083bc2ccb263ec6a
1
SHA256 (quakeforge/quakeforge-0.7.2.tar.bz2) = 1ddc8c963b23bd648d94af48062ab0448345761defeceaef7c62be55c4a28d7a
2
SIZE (quakeforge/quakeforge-0.5.5.tar.bz2) = 1954072
2
SIZE (quakeforge/quakeforge-0.7.2.tar.bz2) = 2887823
3
SHA256 (quakeforge/skyboxes.pak) = 6d32738cf1b8fa19a61fab22d19a1372d388070c87182fa00ac58a908f7dae27
3
SHA256 (quakeforge/skyboxes.pak) = 6d32738cf1b8fa19a61fab22d19a1372d388070c87182fa00ac58a908f7dae27
4
SIZE (quakeforge/skyboxes.pak) = 1934684
4
SIZE (quakeforge/skyboxes.pak) = 1934684
(-)games/quakeforge/files/patch-configure (-28 lines)
Lines 1-28 Link Here
1
--- configure.orig	Sun May  2 17:53:17 2004
2
+++ configure	Fri Dec 29 17:54:22 2006
3
@@ -22733,7 +22733,7 @@
4
 int
5
 main ()
6
 {
7
-void *(*foo)(size_t) = alloca;
8
+int *foo = alloca(sizeof(int));
9
   ;
10
   return 0;
11
 }
12
@@ -34649,16 +34649,6 @@
13
 done
14
  ;;
15
     default ) chmod +x RPM/build_rpm
16
-	if test -n "$AR" -a "$AR" != "ar"; then
17
-		sed -e 's/^AR="ar"$/AR="'$AR'"/' libtool > libtool.qf
18
-		if cmp -s libtool.qf libtool; then
19
-			echo libtool is unchanged
20
-			rm -f libtool.qf
21
-		else
22
-			rm -f libtool
23
-			mv libtool.qf libtool
24
-		fi
25
-	fi
26
  ;;
27
   esac
28
 done
(-)games/quakeforge/files/patch-include-netmain.h (-11 lines)
Lines 1-11 Link Here
1
--- include/netmain.h.orig	Wed Feb 12 22:08:55 2003
2
+++ include/netmain.h	Thu Jan 22 17:33:55 2004
3
@@ -34,7 +34,8 @@
4
 
5
 struct qsockaddr
6
 {
7
-	short qsa_family;
8
+	unsigned char dummy;
9
+	unsigned char qsa_family;
10
 	unsigned char qsa_data[14];
11
 };
(-)games/quakeforge/files/patch-include__QF__console.h (-9 lines)
Lines 1-9 Link Here
1
--- ./include/QF/console.h.orig	Fri Jul 25 19:21:42 2003
2
+++ ./include/QF/console.h	Sun Dec 17 15:59:27 2006
3
@@ -141,6 +141,4 @@
4
 void Menu_Enter (void);
5
 void Menu_Leave (void);
6
 
7
-extern struct cvar_s *con_size;
8
-
9
 #endif // __console_h
(-)games/quakeforge/files/patch-include__QF__sound.h (-34 lines)
Lines 1-34 Link Here
1
--- ./include/QF/sound.h.orig	Tue Jan 20 23:52:07 2004
2
+++ ./include/QF/sound.h	Sun Dec 17 15:50:06 2006
3
@@ -112,31 +112,14 @@
4
 // number of times S_Update() is called per second.
5
 //
6
 
7
-extern qboolean 		fakedma;
8
 extern int 			fakedma_updates;
9
 extern unsigned paintedtime;
10
-extern unsigned soundtime;
11
-extern vec3_t listener_origin;
12
-extern vec3_t listener_forward;
13
-extern vec3_t listener_right;
14
-extern vec3_t listener_up;
15
-extern vec_t sound_nominal_clip_dist;
16
 
17
 extern	struct cvar_s *snd_loadas8bit;
18
-extern	struct cvar_s *bgmvolume;
19
 extern	struct cvar_s *volume;
20
 
21
-extern	struct cvar_s *snd_mixahead;
22
-extern	struct cvar_s	*snd_device;
23
-extern	struct cvar_s	*snd_rate;
24
-extern	struct cvar_s	*snd_bits;
25
-extern	struct cvar_s	*snd_stereo;
26
 extern	struct cvar_s	*snd_interp;
27
 extern	struct cvar_s *snd_stereo_phase_separation;
28
-
29
-extern qboolean	snd_initialized;
30
-
31
-extern int		snd_blocked;
32
 
33
 void S_LocalSound (const char *s);
34
 
(-)games/quakeforge/files/patch-include__context_x11.h (-15 lines)
Lines 1-15 Link Here
1
--- ./include/context_x11.h.orig	Sun Mar 21 02:39:59 2004
2
+++ ./include/context_x11.h	Sun Dec 17 16:04:17 2006
3
@@ -51,12 +51,10 @@
4
 extern Window	x_root;
5
 extern Window	x_win;
6
 extern XVisualInfo *x_visinfo;
7
-extern vec3_t	x_gamma;
8
 extern int		x_screen;
9
 extern int		x_shmeventtype;
10
 extern Time		x_time;
11
 extern Time		x_mouse_time;
12
-extern qboolean doShm;
13
 extern qboolean oktodraw;
14
 extern qboolean x_have_focus;
15
 
(-)games/quakeforge/files/patch-libs__console__server.c (-11 lines)
Lines 1-11 Link Here
1
--- ./libs/console/server.c.orig	Tue Jan 27 02:23:36 2004
2
+++ ./libs/console/server.c	Sun Dec 17 15:53:42 2006
3
@@ -70,7 +70,7 @@
4
 
5
 #include "compat.h"
6
 
7
-static console_data_t con_data;
8
+console_data_t con_data;
9
 
10
 static QFile  *log_file;
11
 static cvar_t *sv_logfile;
(-)games/quakeforge/files/patch-libs__gib__gib_classes.c (-27 lines)
Lines 1-27 Link Here
1
--- ./libs/gib/gib_classes.c.orig	Fri Nov 28 23:01:31 2003
2
+++ ./libs/gib/gib_classes.c	Sun Dec 17 15:56:41 2006
3
@@ -192,7 +192,7 @@
4
 	unsigned int size;
5
 	unsigned int i = 0;
6
 	
7
-	static qboolean
8
+	qboolean
9
 	iterator (gib_class_t *class, void *unused)
10
 	{
11
 		reply[i++] = class->name;
12
@@ -610,13 +610,13 @@
13
 	gib_classdesc_t desc;
14
 	enum {CLASS, INSTANCE} mode = INSTANCE;
15
 	
16
-	static void
17
+	void
18
 	mtabfree (void *mtab, void *unused)
19
 	{
20
 		free (mtab);
21
 	}
22
 
23
-	static const char *
24
+	const char *
25
 	fname (const char *str)
26
 	{
27
 		if (mode == INSTANCE)
(-)games/quakeforge/files/patch-libs__gib__gib_function.c (-20 lines)
Lines 1-20 Link Here
1
--- ./libs/gib/gib_function.c.orig	Fri Apr  9 15:18:19 2004
2
+++ ./libs/gib/gib_function.c	Sun Dec 17 15:57:10 2006
3
@@ -169,7 +169,7 @@
4
 	gib_var_t  *var;
5
 	static char argss[] = "args";
6
 
7
-	static qboolean 
8
+	qboolean 
9
 	iterate (char *arg, llist_node_t *node)
10
 	{	
11
 		var = GIB_Var_Get_Complex (&GIB_DATA(cbuf)->locals, &zero,
12
@@ -207,7 +207,7 @@
13
 	gib_var_t  *var;
14
 	static char argss[] = "args";
15
 
16
-	static qboolean 
17
+	qboolean 
18
 	iterate (char *arg, llist_node_t *node)
19
 	{	
20
 		var = GIB_Var_Get_Complex (&GIB_DATA(cbuf)->locals, &zero,
(-)games/quakeforge/files/patch-libs__gib__gib_thread.c (-11 lines)
Lines 1-11 Link Here
1
--- ./libs/gib/gib_thread.c.orig	Thu Sep 11 03:03:10 2003
2
+++ ./libs/gib/gib_thread.c	Sun Dec 17 15:57:31 2006
3
@@ -89,7 +89,7 @@
4
 void
5
 GIB_Thread_Execute (void)
6
 {
7
-	static qboolean iterator (cbuf_t *cbuf, llist_node_t *node)
8
+	qboolean iterator (cbuf_t *cbuf, llist_node_t *node)
9
 	{
10
 		if (GIB_DATA(cbuf)->program)
11
 			Cbuf_Execute_Stack (cbuf);
(-)games/quakeforge/files/patch-libs__models__gl_skin.c (+30 lines)
Line 0 Link Here
1
--- libs/models/gl_skin.c.orig	2013-01-23 03:10:55 UTC
2
+++ libs/models/gl_skin.c
3
@@ -230,19 +230,20 @@ gl_Skin_SetupSkin (skin_t *skin, int cma
4
 	int         changed;
5
 	glskin_t   *s;
6
 
7
+	skin->texnum = 0;
8
+	skin->auxtex = 0;
9
+	if (!cmap) {
10
+		return;
11
+	}
12
 	// simplify cmap usage (texture offset/array index)
13
 	cmap--;
14
 	s = skins + cmap;
15
 	changed = (s->tex != skin->texels);
16
 	s->tex = skin->texels;
17
 	if (!changed) {
18
-		skin->texnum = 0;
19
-		skin->auxtex = 0;
20
-		if (cmap >= 0) {
21
-			skin->texnum = skin_textures + cmap;
22
-			if (s->fb)
23
-				skin->auxtex = skin_fb_textures + cmap;
24
-		}
25
+		skin->texnum = skin_textures + cmap;
26
+		if (s->fb)
27
+			skin->auxtex = skin_fb_textures + cmap;
28
 		return;
29
 	}
30
 	if (s->tex)
(-)games/quakeforge/files/patch-nq__source__sys_sdl.c (-20 lines)
Lines 1-20 Link Here
1
--- nq/source/sys_sdl.c.orig	Tue Jan 20 00:47:26 2004
2
+++ nq/source/sys_sdl.c	Sat Dec 30 16:44:41 2006
3
@@ -63,6 +63,7 @@
4
 #include "QF/console.h"
5
 #include "QF/qargs.h"
6
 #include "QF/sys.h"
7
+#include "QF/progs.h"
8
 
9
 #include "client.h"
10
 #include "compat.h"
11
@@ -106,6 +107,9 @@
12
 	fcntl (0, F_SETFL, fcntl (0, F_GETFL, 0) & ~O_NONBLOCK);
13
 #endif
14
 }
15
+
16
+extern void Key_Progs_Init (progs_t *pr);
17
+void (*x)() = Key_Progs_Init;
18
 
19
 #ifndef SDL_main
20
 # define SDL_main main
(-)games/quakeforge/files/patch-nq__source__sys_unix.c (-12 lines)
Lines 1-12 Link Here
1
--- ./nq/source/sys_unix.c.orig	Wed Jan 15 12:31:28 2003
2
+++ ./nq/source/sys_unix.c	Sun Dec 17 15:50:06 2006
3
@@ -69,6 +69,9 @@
4
 	fcntl (0, F_SETFL, fcntl (0, F_GETFL, 0) & ~O_NONBLOCK);
5
 }
6
 
7
+extern void Key_Progs_Init (progs_t *pr);
8
+void (*x)() = Key_Progs_Init;
9
+
10
 int
11
 main (int c, const char *v[])
12
 {
(-)games/quakeforge/files/patch-qw__source__cl_chat.c (-44 lines)
Lines 1-44 Link Here
1
--- ./qw/source/cl_chat.c.orig	Fri Jul 18 03:27:26 2003
2
+++ ./qw/source/cl_chat.c	Sun Dec 17 16:05:14 2006
3
@@ -66,7 +66,7 @@
4
 static void
5
 CL_Ignore_Sanity_Check (void)
6
 {
7
-	static qboolean iterator (ignore_t *ig, llist_node_t *node)
8
+	qboolean iterator (ignore_t *ig, llist_node_t *node)
9
 	{
10
 		if (cl.players[ig->slot].userid != ig->uid) // We got out of sync somehow
11
 			llist_remove (node);
12
@@ -80,12 +80,12 @@
13
 {
14
 	CL_Ignore_Sanity_Check ();
15
 	if (Cmd_Argc () == 1) {
16
-		static qboolean live_iterator (ignore_t *ig, llist_node_t *node)
17
+		qboolean live_iterator (ignore_t *ig, llist_node_t *node)
18
 		{
19
 			Sys_Printf ("%5i - %s\n", ig->uid, Info_ValueForKey (cl.players[ig->slot].userinfo, "name"));
20
 			return true;
21
 		}
22
-		static qboolean dead_iterator (ignore_t *ig, llist_node_t *node)
23
+		qboolean dead_iterator (ignore_t *ig, llist_node_t *node)
24
 		{
25
 			Sys_Printf ("%s\n", ig->lastname);
26
 			return true;
27
@@ -145,7 +145,7 @@
28
 	dstring_t *test = dstring_newstr ();
29
 	qboolean allowed = true;
30
 
31
-	static qboolean iterator (ignore_t *ig, llist_node_t *node)
32
+	qboolean iterator (ignore_t *ig, llist_node_t *node)
33
 	{
34
 		if (cl.players[ig->slot].userid != ig->uid) { // We got out of sync somehow
35
 			llist_remove (node);
36
@@ -183,7 +183,7 @@
37
 {
38
 	ignore_t *found = 0;
39
 
40
-	static qboolean iterator (ignore_t *ig, llist_node_t *node)
41
+	qboolean iterator (ignore_t *ig, llist_node_t *node)
42
 	{
43
 		if (!strcmp (ig->lastname, name)) {
44
 			found = ig;
(-)games/quakeforge/files/patch-qw__source__cl_http.c (+11 lines)
Line 0 Link Here
1
--- qw/source/cl_http.c.orig	2013-01-23 03:10:55 UTC
2
+++ qw/source/cl_http.c
3
@@ -114,7 +114,7 @@ CL_HTTP_Update (void)
4
 				Sys_Printf ("download failed: %ld\n", response_code);
5
 				CL_FailDownload ();
6
 			}
7
-			curl_multi_remove_handle (multi_handle, easy_handle);
8
+			CL_HTTP_Reset ();
9
 		}
10
 	}
11
 }
(-)games/quakeforge/files/patch-qw__source__cl_sys_sdl.c (-20 lines)
Lines 1-20 Link Here
1
--- qw/source/cl_sys_sdl.c.orig	Tue Jan 20 00:47:27 2004
2
+++ qw/source/cl_sys_sdl.c	Sat Dec 30 16:44:37 2006
3
@@ -63,6 +63,7 @@
4
 #include "QF/console.h"
5
 #include "QF/qargs.h"
6
 #include "QF/sys.h"
7
+#include "QF/progs.h"
8
 
9
 #include "client.h"
10
 #include "compat.h"
11
@@ -107,6 +108,9 @@
12
 	fcntl (0, F_SETFL, fcntl (0, F_GETFL, 0) & ~O_NONBLOCK);
13
 #endif
14
 }
15
+
16
+extern void Key_Progs_Init (progs_t *pr);
17
+void (*x)() = Key_Progs_Init;
18
 
19
 #ifndef SDL_main
20
 # define SDL_main main
(-)games/quakeforge/files/patch-qw__source__cl_sys_unix.c (-20 lines)
Lines 1-20 Link Here
1
--- qw/source/cl_sys_unix.c.orig	Tue Feb 11 19:48:57 2003
2
+++ qw/source/cl_sys_unix.c	Sat Dec 30 16:44:33 2006
3
@@ -56,6 +56,7 @@
4
 #include "QF/console.h"
5
 #include "QF/qargs.h"
6
 #include "QF/sys.h"
7
+#include "QF/progs.h"
8
 
9
 #include "host.h"
10
 #include "netchan.h"
11
@@ -72,6 +73,9 @@
12
 }
13
 
14
 int         skipframes;
15
+
16
+extern void Key_Progs_Init (progs_t *pr);
17
+void (*x)() = Key_Progs_Init;
18
 
19
 int
20
 main (int c, const char *v[])
(-)games/quakeforge/files/patch-tools__qfcc__include__method.h (-9 lines)
Lines 1-9 Link Here
1
--- ./tools/qfcc/include/method.h.orig	Wed Feb  4 01:49:46 2004
2
+++ ./tools/qfcc/include/method.h	Sun Dec 17 16:07:08 2006
3
@@ -99,6 +99,4 @@
4
 
5
 struct expr_s *method_check_params (method_t *method, struct expr_s *args);
6
 
7
-extern struct hashtab_s *known_methods;
8
-
9
 #endif//__method_h
(-)games/quakeforge/files/patch-tools__qfcc__source__diagnostic.c (+13 lines)
Line 0 Link Here
1
--- tools/qfcc/source/diagnostic.c.orig	2013-01-23 03:10:55 UTC
2
+++ tools/qfcc/source/diagnostic.c
3
@@ -103,9 +103,7 @@ debug (expr_t *e, const char *fmt, ...)
4
 		return;
5
 
6
 	va_start (args, fmt);
7
-	if (options.notices.promote) {
8
-		_warning (e, fmt, args);
9
-	} else {
10
+	{
11
 		string_t    file = pr.source_file;
12
 		int         line = pr.source_line;
13
 
(-)games/quakeforge/files/patch-tools__qfcc__source__statements.c (+15 lines)
Line 0 Link Here
1
--- tools/qfcc/source/statements.c.orig	2013-01-23 03:10:55 UTC
2
+++ tools/qfcc/source/statements.c
3
@@ -1306,8 +1306,11 @@ move_labels (sblock_t *dst, sblock_t *sr
4
 
5
 	if (!src_labels)
6
 		return;
7
-	while (src_labels->next)
8
+	src_labels->dest = dst;
9
+	while (src_labels->next) {
10
 		src_labels = src_labels->next;
11
+		src_labels->dest = dst;
12
+	}
13
 	src_labels->next = dst->labels;
14
 	dst->labels = src->labels;
15
 	src->labels = 0;
(-)games/quakeforge/files/patch-tools__qfcc__source__switch.c (+13 lines)
Line 0 Link Here
1
--- tools/qfcc/source/switch.c.orig	2013-01-23 03:10:55 UTC
2
+++ tools/qfcc/source/switch.c
3
@@ -383,6 +383,10 @@ switch_expr (switch_block_t *switch_bloc
4
 	int         saved_line = pr.source_line;
5
 	string_t    saved_file = pr.source_file;
6
 
7
+	if (switch_block->test->type == ex_error) {
8
+		return switch_block->test;
9
+	}
10
+
11
 	pr.source_line = sw_val->line = switch_block->test->line;
12
 	pr.source_file = sw_val->file = switch_block->test->file;
13
 
(-)games/quakeforge/pkg-plist (-201 / +170 lines)
Lines 1-115 Link Here
1
bin/bsp2img
1
bin/bsp2img
2
%%SERVERS%%bin/hw-master
2
%%SERVERS%%bin/hw-master
3
%%CLIENTS%%bin/nq-glx
4
%%CLIENTS%%%%SDL%%bin/nq-sdl
3
%%CLIENTS%%%%SDL%%bin/nq-sdl
5
%%CLIENTS%%%%SDL%%bin/nq-sdl32
6
%%SERVERS%%bin/nq-server
4
%%SERVERS%%bin/nq-server
7
%%CLIENTS%%%%SDL%%bin/nq-sgl
8
%%CLIENTS%%bin/nq-x11
5
%%CLIENTS%%bin/nq-x11
9
bin/pak
6
bin/pak
10
bin/qfbsp
7
bin/qfbsp
11
bin/qfcc
8
bin/qfcc
12
bin/qflight
9
bin/qflight
10
bin/qflmp
13
bin/qfmodelgen
11
bin/qfmodelgen
14
bin/qfpreqcc
12
bin/qfpreqcc
15
bin/qfprogs
13
bin/qfprogs
14
bin/qfspritegen
16
bin/qfvis
15
bin/qfvis
17
bin/qfwavinfo
16
bin/qfwavinfo
18
%%SERVERS%%bin/qtv
17
%%SERVERS%%bin/qtv
19
%%CLIENTS%%bin/qw-client-glx
20
%%CLIENTS%%%%SDL%%bin/qw-client-sdl
18
%%CLIENTS%%%%SDL%%bin/qw-client-sdl
21
%%CLIENTS%%%%SDL%%bin/qw-client-sdl32
22
%%CLIENTS%%%%SDL%%bin/qw-client-sgl
23
%%CLIENTS%%bin/qw-client-x11
19
%%CLIENTS%%bin/qw-client-x11
24
%%SERVERS%%bin/qw-master
20
%%SERVERS%%bin/qw-master
25
%%SERVERS%%bin/qw-server
21
%%SERVERS%%bin/qw-server
26
bin/wad
22
bin/wad
27
bin/zpak
23
bin/zpak
28
%%CLIENTS%%lib/libQFcd.a
24
include/QF/GL/ati.h
29
%%CLIENTS%%lib/libQFcd.so
25
include/QF/GL/defines.h
30
%%CLIENTS%%lib/libQFcd.so.1
26
include/QF/GL/extensions.h
31
%%CLIENTS%%lib/libQFcd.so.1.0.0
27
include/QF/GL/funcs.h
32
lib/libQFconsole.a
28
include/QF/GL/qf_draw.h
33
lib/libQFconsole.so
29
include/QF/GL/qf_explosions.h
34
lib/libQFconsole.so.1
30
include/QF/GL/qf_funcs_list.h
35
lib/libQFconsole.so.1.0.0
31
include/QF/GL/qf_iqm.h
36
lib/libQFgamecode.a
32
include/QF/GL/qf_lightmap.h
37
lib/libQFgamecode.so
33
include/QF/GL/qf_rlight.h
38
lib/libQFgamecode.so.1
34
include/QF/GL/qf_rmain.h
39
lib/libQFgamecode.so.1.0.0
35
include/QF/GL/qf_rsurf.h
40
lib/libQFgamecode_builtins.a
36
include/QF/GL/qf_sky.h
41
lib/libQFgamecode_builtins.so
37
include/QF/GL/qf_textures.h
42
lib/libQFgamecode_builtins.so.1
38
include/QF/GL/qf_vid.h
43
lib/libQFgamecode_builtins.so.1.0.0
39
include/QF/GL/types.h
44
lib/libQFgib.a
40
include/QF/GLSL/defines.h
45
lib/libQFgib.so
41
include/QF/GLSL/funcs.h
46
lib/libQFgib.so.1
42
include/QF/GLSL/qf_alias.h
47
lib/libQFgib.so.1.0.0
43
include/QF/GLSL/qf_bsp.h
48
lib/libQFimage.a
44
include/QF/GLSL/qf_draw.h
49
lib/libQFimage.so
45
include/QF/GLSL/qf_funcs_list.h
50
lib/libQFimage.so.1
46
include/QF/GLSL/qf_iqm.h
51
lib/libQFimage.so.1.0.0
47
include/QF/GLSL/qf_lightmap.h
52
%%CLIENTS%%lib/libQFjs.a
48
include/QF/GLSL/qf_particles.h
53
%%CLIENTS%%lib/libQFjs.so
49
include/QF/GLSL/qf_textures.h
54
%%CLIENTS%%lib/libQFjs.so.1
50
include/QF/GLSL/qf_vid.h
55
%%CLIENTS%%lib/libQFjs.so.1.0.0
51
include/QF/GLSL/types.h
56
lib/libQFmodels.a
52
include/QF/alloc.h
57
lib/libQFmodels.so
58
lib/libQFmodels.so.1
59
lib/libQFmodels.so.1.0.0
60
%%CLIENTS%%lib/libQFmodels_gl.a
61
%%CLIENTS%%lib/libQFmodels_gl.so
62
%%CLIENTS%%lib/libQFmodels_gl.so.1
63
%%CLIENTS%%lib/libQFmodels_gl.so.1.0.0
64
%%CLIENTS%%lib/libQFmodels_sw.a
65
%%CLIENTS%%lib/libQFmodels_sw.so
66
%%CLIENTS%%lib/libQFmodels_sw.so.1
67
%%CLIENTS%%lib/libQFmodels_sw.so.1.0.0
68
%%CLIENTS%%lib/libQFrenderer_gl.a
69
%%CLIENTS%%lib/libQFrenderer_gl.so
70
%%CLIENTS%%lib/libQFrenderer_gl.so.1
71
%%CLIENTS%%lib/libQFrenderer_gl.so.1.0.0
72
%%CLIENTS%%%%SDL%%lib/libQFrenderer_sw32.a
73
%%CLIENTS%%%%SDL%%lib/libQFrenderer_sw32.so
74
%%CLIENTS%%%%SDL%%lib/libQFrenderer_sw32.so.1
75
%%CLIENTS%%%%SDL%%lib/libQFrenderer_sw32.so.1.0.0
76
lib/libQFruamoko.a
77
lib/libQFruamoko.so
78
lib/libQFruamoko.so.1
79
lib/libQFruamoko.so.1.0.0
80
%%CLIENTS%%lib/libQFsound.a
81
%%CLIENTS%%lib/libQFsound.so
82
%%CLIENTS%%lib/libQFsound.so.1
83
%%CLIENTS%%lib/libQFsound.so.1.0.0
84
lib/libQFutil.a
85
lib/libQFutil.so
86
lib/libQFutil.so.1
87
lib/libQFutil.so.1.0.0
88
%%CLIENTS%%lib/quakeforge/cd_file.a
89
%%CLIENTS%%lib/quakeforge/cd_file.so
90
%%CLIENTS%%%%SDL%%lib/quakeforge/cd_sdl.a
91
%%CLIENTS%%%%SDL%%lib/quakeforge/cd_sdl.so
92
%%CLIENTS%%%%XMMS%%lib/quakeforge/cd_xmms.a
93
%%CLIENTS%%%%XMMS%%lib/quakeforge/cd_xmms.so
94
lib/quakeforge/console_client.a
95
lib/quakeforge/console_client.so
96
lib/quakeforge/console_server.a
97
lib/quakeforge/console_server.so
98
%%CLIENTS%%lib/quakeforge/snd_output_disk.a
99
%%CLIENTS%%lib/quakeforge/snd_output_disk.so
100
%%CLIENTS%%lib/quakeforge/snd_output_oss.a
101
%%CLIENTS%%lib/quakeforge/snd_output_oss.so
102
%%CLIENTS%%%%SDL%%lib/quakeforge/snd_output_sdl.a
103
%%CLIENTS%%%%SDL%%lib/quakeforge/snd_output_sdl.so
104
%%CLIENTS%%lib/quakeforge/snd_render_default.a
105
%%CLIENTS%%lib/quakeforge/snd_render_default.so
106
lib/ruamoko/libcsqc.a
107
lib/ruamoko/libgui.a
108
lib/ruamoko/libnq.a
109
lib/ruamoko/libqw.a
110
lib/ruamoko/libr.a
111
%%DATADIR%%/QF/menu.dat.gz
112
%%SKYBOXES%%%%DATADIR%%/QF/skyboxes.pak
113
include/QF/bspfile.h
53
include/QF/bspfile.h
114
include/QF/cbuf.h
54
include/QF/cbuf.h
115
include/QF/cdaudio.h
55
include/QF/cdaudio.h
Lines 130-142 Link Here
130
include/QF/in_event.h
70
include/QF/in_event.h
131
include/QF/info.h
71
include/QF/info.h
132
include/QF/input.h
72
include/QF/input.h
73
include/QF/iqm.h
133
include/QF/joystick.h
74
include/QF/joystick.h
134
include/QF/keys.h
75
include/QF/keys.h
135
include/QF/link.h
76
include/QF/link.h
136
include/QF/llist.h
77
include/QF/llist.h
137
include/QF/locs.h
78
include/QF/locs.h
79
include/QF/math/dual.h
80
include/QF/math/half.h
81
include/QF/math/matrix3.h
82
include/QF/math/matrix4.h
83
include/QF/math/quaternion.h
84
include/QF/math/vector.h
138
include/QF/mathlib.h
85
include/QF/mathlib.h
139
include/QF/mdfour.h
86
include/QF/mdfour.h
87
include/QF/mersenne.h
140
include/QF/model.h
88
include/QF/model.h
141
include/QF/modelgen.h
89
include/QF/modelgen.h
142
include/QF/msg.h
90
include/QF/msg.h
Lines 145-150 Link Here
145
include/QF/pakfile.h
93
include/QF/pakfile.h
146
include/QF/pcx.h
94
include/QF/pcx.h
147
include/QF/plugin.h
95
include/QF/plugin.h
96
include/QF/plugin/cd.h
97
include/QF/plugin/console.h
98
include/QF/plugin/general.h
99
include/QF/plugin/input.h
100
include/QF/plugin/snd_output.h
101
include/QF/plugin/snd_render.h
102
include/QF/plugin/vid_render.h
148
include/QF/png.h
103
include/QF/png.h
149
include/QF/pr_comp.h
104
include/QF/pr_comp.h
150
include/QF/pr_debug.h
105
include/QF/pr_debug.h
Lines 161-166 Link Here
161
include/QF/riff.h
116
include/QF/riff.h
162
include/QF/ruamoko.h
117
include/QF/ruamoko.h
163
include/QF/screen.h
118
include/QF/screen.h
119
include/QF/script.h
120
include/QF/set.h
164
include/QF/sizebuf.h
121
include/QF/sizebuf.h
165
include/QF/skin.h
122
include/QF/skin.h
166
include/QF/sound.h
123
include/QF/sound.h
Lines 173-299 Link Here
173
include/QF/ver_check.h
130
include/QF/ver_check.h
174
include/QF/vid.h
131
include/QF/vid.h
175
include/QF/view.h
132
include/QF/view.h
133
include/QF/vrect.h
176
include/QF/wad.h
134
include/QF/wad.h
177
include/QF/wadfile.h
135
include/QF/wadfile.h
136
include/QF/winding.h
178
include/QF/zone.h
137
include/QF/zone.h
179
include/QF/GL/ati.h
138
%%CLIENTS%%lib/libQFcd.so
180
include/QF/GL/defines.h
139
%%CLIENTS%%lib/libQFcd.so.1
181
include/QF/GL/extensions.h
140
%%CLIENTS%%lib/libQFcd.so.1.0.0
182
include/QF/GL/funcs.h
141
%%SERVERS%%lib/libQFconsole.so
183
include/QF/GL/qf_explosions.h
142
%%SERVERS%%lib/libQFconsole.so.1
184
include/QF/GL/qf_funcs_list.h
143
%%SERVERS%%lib/libQFconsole.so.1.0.0
185
include/QF/GL/qf_lightmap.h
144
lib/libQFgib.so
186
include/QF/GL/qf_noisetextures.h
145
lib/libQFgib.so.1
187
include/QF/GL/qf_rlight.h
146
lib/libQFgib.so.1.0.0
188
include/QF/GL/qf_rmain.h
147
lib/libQFimage.so
189
include/QF/GL/qf_rsurf.h
148
lib/libQFimage.so.1
190
include/QF/GL/qf_screen.h
149
lib/libQFimage.so.1.0.0
191
include/QF/GL/qf_sky.h
150
%%CLIENTS%%lib/libQFjs.so
192
include/QF/GL/qf_textures.h
151
%%CLIENTS%%lib/libQFjs.so.1
193
include/QF/GL/qf_vid.h
152
%%CLIENTS%%lib/libQFjs.so.1.0.0
194
include/QF/GL/types.h
153
lib/libQFmodels.so
195
include/QF/plugin/cd.h
154
lib/libQFmodels.so.1
196
include/QF/plugin/console.h
155
lib/libQFmodels.so.1.0.0
197
include/QF/plugin/general.h
156
lib/libQFruamoko.so
198
include/QF/plugin/input.h
157
lib/libQFruamoko.so.1
199
include/QF/plugin/snd_output.h
158
lib/libQFruamoko.so.1.0.0
200
include/QF/plugin/snd_render.h
159
%%CLIENTS%%lib/libQFsound.so
201
include/QF/ruamoko/Array.h
160
%%CLIENTS%%lib/libQFsound.so.1
202
include/QF/ruamoko/AutoreleasePool.h
161
%%CLIENTS%%lib/libQFsound.so.1.0.0
203
include/QF/ruamoko/Entity.h
162
lib/libQFutil.so
204
include/QF/ruamoko/List.h
163
lib/libQFutil.so.1
205
include/QF/ruamoko/ListNode.h
164
lib/libQFutil.so.1.0.0
206
include/QF/ruamoko/Object.h
165
%%CLIENTS%%%%VORBIS%%lib/quakeforge/plugins/cd_file.so
207
include/QF/ruamoko/Stack.h
166
%%CLIENTS%%%%SDL%%lib/quakeforge/plugins/cd_sdl.so
208
include/QF/ruamoko/cbuf.h
167
%%CLIENTS%%%%XMMS%%lib/quakeforge/plugins/cd_xmms.so
209
include/QF/ruamoko/cmd.h
168
%%CLIENTS%%lib/quakeforge/plugins/console_client.so
210
include/QF/ruamoko/crudefile.h
169
%%SERVERS%%lib/quakeforge/plugins/console_server.so
211
include/QF/ruamoko/cvar.h
170
%%CLIENTS%%lib/quakeforge/plugins/snd_output_oss.so
212
include/QF/ruamoko/debug.h
171
%%CLIENTS%%%%SDL%%lib/quakeforge/plugins/snd_output_sdl.so
213
include/QF/ruamoko/draw.h
172
%%CLIENTS%%lib/quakeforge/plugins/snd_render_default.so
214
include/QF/ruamoko/entities.h
173
%%CLIENTS%%%%JACK%%lib/quakeforge/plugins/snd_render_jack.so
215
include/QF/ruamoko/file.h
174
%%CLIENTS%%lib/quakeforge/plugins/vid_render_gl.so
216
include/QF/ruamoko/gib.h
175
%%CLIENTS%%lib/quakeforge/plugins/vid_render_glsl.so
217
include/QF/ruamoko/hash.h
176
%%CLIENTS%%lib/quakeforge/plugins/vid_render_sw.so
218
include/QF/ruamoko/infokey.h
177
%%CLIENTS%%lib/quakeforge/plugins/vid_render_sw32.so
219
include/QF/ruamoko/key.h
178
libdata/pkgconfig/qfcc.pc
220
include/QF/ruamoko/math.h
179
libdata/pkgconfig/quakeforge.pc
221
include/QF/ruamoko/message.h
222
include/QF/ruamoko/nq_message.h
223
include/QF/ruamoko/physics.h
224
include/QF/ruamoko/plist.h
225
include/QF/ruamoko/qfile.h
226
include/QF/ruamoko/qfs.h
227
include/QF/ruamoko/qw_message.h
228
include/QF/ruamoko/qw_physics.h
229
include/QF/ruamoko/qw_sys.h
230
include/QF/ruamoko/server.h
231
include/QF/ruamoko/sound.h
232
include/QF/ruamoko/string.h
233
include/QF/ruamoko/system.h
234
include/QF/ruamoko/gui/Group.h
235
include/QF/ruamoko/gui/InputLine.h
236
include/QF/ruamoko/gui/Pic.h
237
include/QF/ruamoko/gui/Point.h
238
include/QF/ruamoko/gui/Rect.h
239
include/QF/ruamoko/gui/Size.h
240
include/QF/ruamoko/gui/Slider.h
241
include/QF/ruamoko/gui/Text.h
242
include/QF/ruamoko/gui/View.h
243
man/man1/pak.1.gz
180
man/man1/pak.1.gz
244
man/man1/qfcc.1.gz
181
man/man1/qfcc.1.gz
245
man/man1/qflight.1.gz
182
man/man1/qflight.1.gz
246
man/man1/qfvis.1.gz
183
man/man1/qfvis.1.gz
184
man/man1/quakeforge.1.gz
247
man/man1/wad.1.gz
185
man/man1/wad.1.gz
248
%%PORTDOCS%%%%DOCSDIR%%/3dfx.txt
186
man/man1/zpak.1.gz
249
%%PORTDOCS%%%%DOCSDIR%%/CodingStyle
187
%%CLIENTS%%%%SDL%%share/applications/quakeforge-nq-sdl.desktop
250
%%PORTDOCS%%%%DOCSDIR%%/glqnotes.txt
188
%%CLIENTS%%share/applications/quakeforge-nq-x11.desktop
251
%%PORTDOCS%%%%DOCSDIR%%/net_DoS_protection.txt
189
%%CLIENTS%%%%SDL%%share/applications/quakeforge-qw-sdl.desktop
252
%%PORTDOCS%%%%DOCSDIR%%/progdefs.q1
190
%%CLIENTS%%share/applications/quakeforge-qw-x11.desktop
253
%%PORTDOCS%%%%DOCSDIR%%/progdefs.q2
254
%%PORTDOCS%%%%DOCSDIR%%/qe3.ico
255
%%PORTDOCS%%%%DOCSDIR%%/qf-client-3dfx-cvar.txt
256
%%PORTDOCS%%%%DOCSDIR%%/qf-client-glx-cvar.txt
257
%%PORTDOCS%%%%DOCSDIR%%/qf-client-sdl-cvar.txt
258
%%PORTDOCS%%%%DOCSDIR%%/qf-client-sgl-cvar.txt
259
%%PORTDOCS%%%%DOCSDIR%%/qf-client-svga-cvar.txt
260
%%PORTDOCS%%%%DOCSDIR%%/qf-client-x11-cmd.txt
261
%%PORTDOCS%%%%DOCSDIR%%/qf-client-x11-cvar.txt
262
%%PORTDOCS%%%%DOCSDIR%%/qf-server-cmd.txt
263
%%PORTDOCS%%%%DOCSDIR%%/qf-server-cvar.txt
264
%%PORTDOCS%%%%DOCSDIR%%/quake.gif
265
%%PORTDOCS%%%%DOCSDIR%%/quake.ico
266
%%PORTDOCS%%%%DOCSDIR%%/readme.txt
267
%%PORTDOCS%%%%DOCSDIR%%/skybox.fig
268
%%PORTDOCS%%%%DOCSDIR%%/template.h
269
%%PORTDOCS%%%%DOCSDIR%%/timestamps.txt
270
%%PORTDOCS%%%%DOCSDIR%%/wqreadme.txt
271
%%PORTDOCS%%%%DOCSDIR%%/config/glspeed-v1.cfg
272
%%PORTDOCS%%%%DOCSDIR%%/config/glspeed-v3.cfg
273
%%PORTDOCS%%%%DOCSDIR%%/config/swspeed.cfg
274
%%PORTDOCS%%%%DOCSDIR%%/config/gib/adjustvolume.gib
191
%%PORTDOCS%%%%DOCSDIR%%/config/gib/adjustvolume.gib
275
%%PORTDOCS%%%%DOCSDIR%%/config/gib/infobot.gib
192
%%PORTDOCS%%%%DOCSDIR%%/config/gib/infobot.gib
276
%%PORTDOCS%%%%DOCSDIR%%/config/gib/ln.gib
193
%%PORTDOCS%%%%DOCSDIR%%/config/gib/ln.gib
277
%%PORTDOCS%%%%DOCSDIR%%/config/gib/qfadmin.gib
194
%%PORTDOCS%%%%DOCSDIR%%/config/gib/qfadmin.gib
278
%%PORTDOCS%%%%DOCSDIR%%/config/gib/sshot.gib
195
%%PORTDOCS%%%%DOCSDIR%%/config/gib/sshot.gib
279
%%PORTDOCS%%%%DOCSDIR%%/config/gib/zoom.gib
196
%%PORTDOCS%%%%DOCSDIR%%/config/gib/zoom.gib
280
%%PORTDOCS%%%%DOCSDIR%%/data/comexp.txt
197
%%PORTDOCS%%%%DOCSDIR%%/config/glspeed-v1.cfg
281
%%PORTDOCS%%%%DOCSDIR%%/data/help.txt
198
%%PORTDOCS%%%%DOCSDIR%%/config/glspeed-v3.cfg
282
%%PORTDOCS%%%%DOCSDIR%%/data/licinfo.txt
199
%%PORTDOCS%%%%DOCSDIR%%/config/swspeed.cfg
283
%%PORTDOCS%%%%DOCSDIR%%/data/manual.txt
200
%%PORTDOCS%%%%DOCSDIR%%/gib/GIB.lyx
284
%%PORTDOCS%%%%DOCSDIR%%/data/order.txt
201
%%PORTDOCS%%%%DOCSDIR%%/gib/break.gib
285
%%PORTDOCS%%%%DOCSDIR%%/data/readme.txt
202
%%PORTDOCS%%%%DOCSDIR%%/gib/continue.gib
286
%%PORTDOCS%%%%DOCSDIR%%/data/rlicnse.txt
203
%%PORTDOCS%%%%DOCSDIR%%/gib/curly.gib
287
%%PORTDOCS%%%%DOCSDIR%%/data/slicnse.txt
204
%%PORTDOCS%%%%DOCSDIR%%/gib/examples.sh
288
%%PORTDOCS%%%%DOCSDIR%%/data/techinfo.txt
205
%%PORTDOCS%%%%DOCSDIR%%/gib/for.gib
289
%%PORTDOCS%%%%DOCSDIR%%/data/docs/install
206
%%PORTDOCS%%%%DOCSDIR%%/gib/gib_head.eps
290
%%PORTDOCS%%%%DOCSDIR%%/data/docs/install.q2mission
207
%%PORTDOCS%%%%DOCSDIR%%/gib/if-chain.gib
291
%%PORTDOCS%%%%DOCSDIR%%/data/docs/install.quake
208
%%PORTDOCS%%%%DOCSDIR%%/gib/if-else.gib
292
%%PORTDOCS%%%%DOCSDIR%%/data/docs/install.quake2
209
%%PORTDOCS%%%%DOCSDIR%%/gib/if-simple.gib
293
%%PORTDOCS%%%%DOCSDIR%%/data/docs/readme
210
%%PORTDOCS%%%%DOCSDIR%%/gib/while.gib
294
%%PORTDOCS%%%%DOCSDIR%%/data/docs/readme.glquake
211
%%CLIENTS%%share/icons/hicolor/32x32/apps/quake.png
295
%%PORTDOCS%%%%DOCSDIR%%/data/docs/readme.squake
212
%%CLIENTS%%share/icons/hicolor/16x16/apps/quake.png
296
%%PORTDOCS%%%%DOCSDIR%%/data/docs/readme.x11
213
share/qfcc/include/Array.h
297
%%PORTDOCS%%%%DOCSDIR%%/ideas/quakedownload.txt
214
share/qfcc/include/AutoreleasePool.h
298
%%PORTDOCS%%%%DOCSDIR%%/ideas/rhamph.txt
215
share/qfcc/include/Entity.h
299
%%PORTDOCS%%%%DOCSDIR%%/ideas/serverlist.txt
216
share/qfcc/include/Object.h
217
share/qfcc/include/PropertyList.h
218
share/qfcc/include/Protocol.h
219
share/qfcc/include/Set.h
220
share/qfcc/include/cbuf.h
221
share/qfcc/include/cmd.h
222
share/qfcc/include/crudefile.h
223
share/qfcc/include/cvar.h
224
share/qfcc/include/debug.h
225
share/qfcc/include/draw.h
226
share/qfcc/include/entities.h
227
share/qfcc/include/file.h
228
share/qfcc/include/gib.h
229
share/qfcc/include/gui/Group.h
230
share/qfcc/include/gui/InputLine.h
231
share/qfcc/include/gui/Pic.h
232
share/qfcc/include/gui/Point.h
233
share/qfcc/include/gui/Rect.h
234
share/qfcc/include/gui/Size.h
235
share/qfcc/include/gui/Slider.h
236
share/qfcc/include/gui/Text.h
237
share/qfcc/include/gui/View.h
238
share/qfcc/include/hash.h
239
share/qfcc/include/infokey.h
240
share/qfcc/include/key.h
241
share/qfcc/include/math.h
242
share/qfcc/include/message.h
243
share/qfcc/include/msgbuf.h
244
share/qfcc/include/nq_message.h
245
share/qfcc/include/physics.h
246
share/qfcc/include/plist.h
247
share/qfcc/include/qfile.h
248
share/qfcc/include/qfs.h
249
share/qfcc/include/qw_message.h
250
share/qfcc/include/qw_physics.h
251
share/qfcc/include/qw_sys.h
252
share/qfcc/include/runtime.h
253
share/qfcc/include/script.h
254
share/qfcc/include/server.h
255
share/qfcc/include/sound.h
256
share/qfcc/include/string.h
257
share/qfcc/include/sv_sound.h
258
share/qfcc/include/system.h
259
share/qfcc/lib/libcsqc.a
260
share/qfcc/lib/libgui.a
261
share/qfcc/lib/libnq.a
262
share/qfcc/lib/libqw.a
263
share/qfcc/lib/libr.a
264
share/qfcc/lib/libscheme.a
265
%%Q1DIR%%/QF/menu.dat.gz
266
%%Q1DIR%%/QF/menu.plist
267
%%Q1DIR%%/QF/menu.sym.gz
268
%%SKYBOXES%%%%Q1DIR%%/QF/skyboxes.pak

Return to bug 209296