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

(-)Makefile (-11 / +24 lines)
Lines 10-16 Link Here
10
CATEGORIES=	x11-toolkits
10
CATEGORIES=	x11-toolkits
11
MASTER_SITES=	${MASTER_SITE_EASYSW}
11
MASTER_SITES=	${MASTER_SITE_EASYSW}
12
MASTER_SITE_SUBDIR=	fltk/snapshots
12
MASTER_SITE_SUBDIR=	fltk/snapshots
13
DISTNAME=	fltk-2.0.x-${SNAPSHOT}
13
DISTNAME=	fltk-2.0.x-alpha-${SNAPSHOT}
14
14
15
MAINTAINER=	tmseck@web.de
15
MAINTAINER=	tmseck@web.de
16
COMMENT=	Fast Light Toolkit version 2 (development snapshot)
16
COMMENT=	Fast Light Toolkit version 2 (development snapshot)
Lines 28-34 Link Here
28
LIB_DEPENDS=	png.6:${PORTSDIR}/graphics/png \
28
LIB_DEPENDS=	png.6:${PORTSDIR}/graphics/png \
29
		jpeg.11:${PORTSDIR}/graphics/jpeg
29
		jpeg.11:${PORTSDIR}/graphics/jpeg
30
30
31
SNAPSHOT=	r7725
31
SNAPSHOT=	r9166
32
32
33
OPTIONS=	FLTK_THREADS "Install with threads support" on \
33
OPTIONS=	FLTK_THREADS "Install with threads support" on \
34
		FLTK_CAIRO "Use cairo as graphics backend" off \
34
		FLTK_CAIRO "Use cairo as graphics backend" off \
Lines 84-98 Link Here
84
.endif
84
.endif
85
85
86
.if defined(WITH_FLTK_EXAMPLES) && !defined (NOPORTEXAMPLES)
86
.if defined(WITH_FLTK_EXAMPLES) && !defined (NOPORTEXAMPLES)
87
example_apps=	ansiwidget arc bitmap boxtype browser button buttons cairo \
87
example_apps=	ansiwidget arc \
88
		checkers clock color_chooser cube CubeView cursor curve \
88
		bitmap boxtype browser button buttons \
89
		demo doublebuffer drawing drawtiming editor exception \
89
		cairo callbacks checkers clock color_chooser cube \
90
		file_chooser fonts fractals fullscreen gl_overlay glpuzzle \
90
		CubeView cursor curve \
91
		hello image inactive input keyboard label line_style list \
91
		demo doublebuffer drawing drawtiming \
92
		list_visuals mandelbrot menu message monitors navigation \
92
		editor exception \
93
		output pack pixmap progress qubix radio resizable resizealign \
93
		file_chooser fonts fractals fullscreen \
94
		scroll shape sizes symbols tabs threads tile timer \
94
		gl_overlay glpuzzle \
95
		utf valuators wizard
95
		hello \
96
		image image_transform inactive input \
97
		keyboard \
98
		label line_style list list_visuals \
99
		mandelbrot menu message monitors \
100
		navigation \
101
		output \
102
		pack pixmap progress \
103
		qubix \
104
		radio resizable resizealign \
105
		scroll shape sizes subwindow symbols \
106
		tabs threads tile timer \
107
		utf \
108
		valuators wizard
96
example_data=	demo.menu
109
example_data=	demo.menu
97
example_img=	images/ulon.bmp
110
example_img=	images/ulon.bmp
98
PORTEXAMPLES=	*
111
PORTEXAMPLES=	*
(-)distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (fltk-2.0.x-r7725.tar.bz2) = 45a064cb882b7c84026722936c92d0b689f686159a55f68662b3b3080ac37a66
1
SHA256 (fltk-2.0.x-alpha-r9166.tar.bz2) = e68c3ef3599c3e215db4011c3e68f61b155e7c05e2f220c188f14adb0a8d604b
2
SIZE (fltk-2.0.x-r7725.tar.bz2) = 2529067
2
SIZE (fltk-2.0.x-alpha-r9166.tar.bz2) = 2656645
(-)files/patch-images-fl_png.cxx (-11 lines)
Lines 1-11 Link Here
1
--- images/fl_png.cxx.orig	2007-04-16 16:48:06.000000000 +0200
2
+++ images/fl_png.cxx	2010-03-29 19:55:26.000000000 +0200
3
@@ -62,7 +62,7 @@
4
 #if !HAVE_LIBPNG
5
   return 0;
6
 #else
7
-  return png_check_sig((png_byte*)datas, (int)size)!=0;
8
+  return !png_sig_cmp((png_byte*)datas, 0, (int)size)!=0;
9
 #endif
10
 }
11

Return to bug 162297