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

Collapse All | Expand All

(-)adgali/Makefile (-5 / +1 lines)
Lines 5-19 Link Here
5
PORTVERSION=	0.2.4
5
PORTVERSION=	0.2.4
6
PORTREVISION=	15
6
PORTREVISION=	15
7
CATEGORIES=	games devel
7
CATEGORIES=	games devel
8
MASTER_SITES=	http://adgali.apiou.org/download/
8
MASTER_SITES=	http://www.sourcefiles.org/Programming/Libraries/Games/
9
9
10
MAINTAINER=	ports@FreeBSD.org
10
MAINTAINER=	ports@FreeBSD.org
11
COMMENT=	Open source game library useful for 2D game development
11
COMMENT=	Open source game library useful for 2D game development
12
12
13
BROKEN=		unfetchable
14
DEPRECATED=	Broken for more than 6 months
15
EXPIRATION_DATE=	2016-07-04
16
17
LICENSE=	GPLv2+
13
LICENSE=	GPLv2+
18
LICENSE_FILE=	${WRKSRC}/COPYING
14
LICENSE_FILE=	${WRKSRC}/COPYING
19
15
(-)adgali/files/patch-agl_imglist.c (-3 / +3 lines)
Lines 1-6 Link Here
1
--- tools/agl_imglist.c.orig	Fri Aug 20 22:20:31 2004
1
--- tools/agl_imglist.c.orig	2003-06-23 23:58:48 UTC
2
+++ tools/agl_imglist.c	Fri Aug 20 22:20:48 2004
2
+++ tools/agl_imglist.c
3
@@ -137,6 +137,7 @@
3
@@ -137,6 +137,7 @@ main(int argc, char **argv)
4
 				x++;
4
 				x++;
5
 			}
5
 			}
6
 		      next:
6
 		      next:
(-)adgali/files/patch-src-input-fontio_agl_bfontio.c (-3 / +3 lines)
Lines 1-6 Link Here
1
--- src/input/fontio/agl_bfontio.c	2007-12-12 23:43:53.000000000 +0100
1
--- src/input/fontio/agl_bfontio.c.orig	2003-06-23 23:58:47 UTC
2
+++ src/input/fontio/agl_bfontio.c.orig	2007-12-12 23:43:41.000000000 +0100
2
+++ src/input/fontio/agl_bfontio.c
3
@@ -387,7 +387,7 @@
3
@@ -387,7 +387,7 @@ agl_bfntclose(agl_font * fnt)
4
 	return 0;
4
 	return 0;
5
 }
5
 }
6
 
6
 
(-)adgali/files/patch-src-input-fontio_agl_ttfio.c (-3 / +3 lines)
Lines 1-6 Link Here
1
--- src/input/fontio/agl_ttfio.c.orig	2007-12-12 23:42:15.000000000 +0100
1
--- src/input/fontio/agl_ttfio.c.orig	2003-12-29 19:07:52 UTC
2
+++ src/input/fontio/agl_ttfio.c	2007-12-12 23:43:00.000000000 +0100
2
+++ src/input/fontio/agl_ttfio.c
3
@@ -481,7 +481,7 @@
3
@@ -481,7 +481,7 @@ agl_ttfexit(agl_module * pmod)
4
 	return 1;
4
 	return 1;
5
 }
5
 }
6
 
6
 
(-)adgali/files/patch-src-input-imageio-agl_pngio.c (-6 / +6 lines)
Lines 1-6 Link Here
1
--- src/input/imageio/agl_pngio.c.orig	2003-06-24 01:58:47.000000000 +0200
1
--- src/input/imageio/agl_pngio.c.orig	2003-06-23 23:58:47 UTC
2
+++ src/input/imageio/agl_pngio.c	2012-05-01 09:02:25.000000000 +0200
2
+++ src/input/imageio/agl_pngio.c
3
@@ -65,7 +65,7 @@
3
@@ -65,7 +65,7 @@ agl_ispng(agl_ios * ops)
4
 	unsigned char buf[8];
4
 	unsigned char buf[8];
5
 
5
 
6
 	if (agl_ios_read(ops, buf, 1, 8, NULL) == 8)
6
 	if (agl_ios_read(ops, buf, 1, 8, NULL) == 8)
Lines 9-15 Link Here
9
 	return 0;
9
 	return 0;
10
 }
10
 }
11
 
11
 
12
@@ -106,7 +106,7 @@
12
@@ -106,7 +106,7 @@ agl_loadpng(agl_ios * ops)
13
 	}
13
 	}
14
 
14
 
15
 	/* standard png error handler */
15
 	/* standard png error handler */
Lines 18-24 Link Here
18
 	{
18
 	{
19
 		agl_error("Error reading the PNG file");
19
 		agl_error("Error reading the PNG file");
20
 		png_destroy_read_struct(&png_ptr, &info_ptr, NULL);
20
 		png_destroy_read_struct(&png_ptr, &info_ptr, NULL);
21
@@ -131,7 +131,7 @@
21
@@ -131,7 +131,7 @@ agl_loadpng(agl_ios * ops)
22
 	/* see pnglib for these calls */
22
 	/* see pnglib for these calls */
23
 
23
 
24
 	if (color_type == PNG_COLOR_TYPE_GRAY && bit_depth < 8)
24
 	if (color_type == PNG_COLOR_TYPE_GRAY && bit_depth < 8)
Lines 27-33 Link Here
27
 
27
 
28
 	if (png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS))
28
 	if (png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS))
29
 		png_set_tRNS_to_alpha(png_ptr);
29
 		png_set_tRNS_to_alpha(png_ptr);
30
@@ -171,7 +171,7 @@
30
@@ -171,7 +171,7 @@ agl_loadpng(agl_ios * ops)
31
 		*rowp = (png_bytep) pixelp;
31
 		*rowp = (png_bytep) pixelp;
32
 	/* standard png error handler redeclared to free the agl image if an
32
 	/* standard png error handler redeclared to free the agl image if an
33
 	 * error occurs */
33
 	 * error occurs */
(-)adgali/files/patch-src_agl_main.c (-3 / +3 lines)
Lines 1-6 Link Here
1
--- src/agl_main.c.orig	2007-12-12 23:45:13.000000000 +0100
1
--- src/agl_main.c.orig	2003-06-23 23:58:47 UTC
2
+++ src/agl_main.c	2007-12-12 23:47:00.000000000 +0100
2
+++ src/agl_main.c
3
@@ -65,7 +65,8 @@
3
@@ -65,7 +65,8 @@ agl_init(agl_handle * phandle)
4
 	if (agl_initparachute() < 0)
4
 	if (agl_initparachute() < 0)
5
 		return -1;
5
 		return -1;
6
 
6
 

Return to bug 210033