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

(-)graphics/kdc2tiff/Makefile (-2 / +2 lines)
Lines 6-12 Link Here
6
#
6
#
7
7
8
PORTNAME=	kdc2tiff
8
PORTNAME=	kdc2tiff
9
PORTVERSION=	0.32
9
PORTVERSION=	0.34
10
CATEGORIES=	graphics
10
CATEGORIES=	graphics
11
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
11
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
12
MASTER_SITE_SUBDIR=	${PORTNAME}
12
MASTER_SITE_SUBDIR=	${PORTNAME}
Lines 20-25 Link Here
20
USE_GMAKE=	yes
20
USE_GMAKE=	yes
21
GNU_CONFIGURE=	yes
21
GNU_CONFIGURE=	yes
22
CONFIGURE_ENV=	CPPFLAGS="-I${LOCALBASE}/include" \
22
CONFIGURE_ENV=	CPPFLAGS="-I${LOCALBASE}/include" \
23
		LIBS="-L${LOCALBASE}/lib"
23
		LDFLAGS="-L${LOCALBASE}/lib"
24
24
25
.include <bsd.port.mk>
25
.include <bsd.port.mk>
(-)graphics/kdc2tiff/distinfo (-1 / +1 lines)
Line 1 Link Here
1
MD5 (kdc2tiff-0.32.tar.gz) = b24af53e97a047eaf1a92cbe1da44a17
1
MD5 (kdc2tiff-0.34.tar.gz) = 16208a5e07926d1f7aa21779014d1a53
(-)graphics/kdc2tiff/files/patch-GFilter.cpp (-11 lines)
Lines 1-11 Link Here
1
--- GFilter.cpp.orig	Mon Dec 23 04:20:42 2002
2
+++ GFilter.cpp	Mon Dec 23 04:21:00 2002
3
@@ -26,7 +26,7 @@
4
   green = *(short*)(((char*)table)+(green&0xFFFE));
5
   blue = *(short*)(((char*)table)+(blue&0xFFFE));
6
 }
7
-void GFilter_GammaCorrection::setGammaCorrection(float gamma=1) {
8
+void GFilter_GammaCorrection::setGammaCorrection(float gamma) {
9
   // create table
10
   if (table)
11
     delete[] table;
(-)graphics/kdc2tiff/files/patch-GICBayer.cpp (-29 lines)
Lines 1-29 Link Here
1
--- GICBayer.cpp.orig	Mon Dec 23 04:19:54 2002
2
+++ GICBayer.cpp	Mon Dec 23 04:20:21 2002
3
@@ -236,7 +236,7 @@
4
 
5
 GICBayer_Green::GICBayer_Green(const unsigned char* imagedata, 
6
 			       int width, int height, 
7
-			       float maxerr=0)
8
+			       float maxerr)
9
   : GImageComponent(width,height,maxerr) {
10
 
11
   /* initialize arrays
12
@@ -428,7 +428,7 @@
13
 GICBayer_Red::GICBayer_Red(const unsigned char* imagedata, 
14
 				   int width, int height, 
15
 				   GImageComponent& green,
16
-				   float maxerr=0)
17
+				   float maxerr)
18
   : GImageComponent(width,height,maxerr) {
19
 
20
   if ((green.getWidth()!=w)||(green.getHeight()!=h)) {
21
@@ -617,7 +617,7 @@
22
 GICBayer_Blue::GICBayer_Blue(const unsigned char* imagedata, 
23
 			     int width, int height, 
24
 			     GImageComponent& green,
25
-			     float maxerr=0)
26
+			     float maxerr)
27
   : GImageComponent(width,height,maxerr) {
28
 
29
   if ((green.getWidth()!=w)||(green.getHeight()!=h)) {
(-)graphics/kdc2tiff/files/patch-GImageComponent.cpp (-11 lines)
Lines 1-11 Link Here
1
--- GImageComponent.cpp.orig	Mon Dec 23 04:19:27 2002
2
+++ GImageComponent.cpp	Mon Dec 23 04:19:39 2002
3
@@ -283,7 +283,7 @@
4
 
5
 GImageComponent0::GImageComponent0(const unsigned char* imagedata, 
6
 				   int width, int height, 
7
-				   float maxerr=0)
8
+				   float maxerr)
9
   : GImageComponent(width,height,maxerr) {
10
 
11
   int itter;

Return to bug 59754