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

(-)/root/ports/fltk/Makefile (-9 / +4 lines)
Lines 7-20 Link Here
7
7
8
PORTNAME=	fltk
8
PORTNAME=	fltk
9
PORTVERSION=	${VERSION}
9
PORTVERSION=	${VERSION}
10
PORTREVISION=	1
10
PORTREVISION=	2
11
CATEGORIES=	x11-toolkits
11
CATEGORIES=	x11-toolkits
12
MASTER_SITES=	http://ftp.easysw.com/pub/fltk/%SUBDIR%/ \
12
MASTER_SITES=	${MASTER_SITE_EASYSW}
13
		ftp://ftp.easysw.com/pub/fltk/%SUBDIR%/ \
14
		ftp://ftp3.easysw.com/pub/fltk/%SUBDIR%/ \
15
		http://mirror.nu6.org/ftp.easysw.com/pub/fltk/%SUBDIR%/ \
16
		http://ftp.funet.fi/pub/mirrors/ftp.easysw.com/pub/fltk/%SUBDIR%/ \
17
		http://ftp.rz.tu-bs.de/pub/mirror/ftp.easysw.com/ftp/pub/fltk/%SUBDIR%/
18
MASTER_SITE_SUBDIR=	${VERSION}
13
MASTER_SITE_SUBDIR=	${VERSION}
19
.ifdef WITH_THREADS
14
.ifdef WITH_THREADS
20
PKGNAMESUFFIX=	-threads
15
PKGNAMESUFFIX=	-threads
Lines 39-45 Link Here
39
34
40
VERSION=	1.1.7
35
VERSION=	1.1.7
41
USE_BZIP2=	yes
36
USE_BZIP2=	yes
42
INSTALLS_SHLIB=	yes
37
USE_LDCONFIG=	yes
43
GNU_CONFIGURE=	yes
38
GNU_CONFIGURE=	yes
44
CONFIGURE_TARGET=	--build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
39
CONFIGURE_TARGET=	--build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
45
CONFIGURE_ARGS+=--enable-shared --enable-xft
40
CONFIGURE_ARGS+=--enable-shared --enable-xft
Lines 56-62 Link Here
56
.include <bsd.port.pre.mk>
51
.include <bsd.port.pre.mk>
57
52
58
.if ${OSVERSION} < 500000 && defined(WITH_THREADS)
53
.if ${OSVERSION} < 500000 && defined(WITH_THREADS)
59
IGNORE=	"does not work on FreeBSD 4.x, because threading is not activated"
54
IGNORE=	does not work on FreeBSD 4.x, because threading is not activated
60
.endif
55
.endif
61
56
62
pre-everything::
57
pre-everything::
(-)/root/ports/fltk/files/patch-FL-Fl_Spinner.H (+14 lines)
Line 0 Link Here
1
--- FL/Fl_Spinner.H.orig	Sun Jan 14 12:57:46 2007
2
+++ FL/Fl_Spinner.H	Sun Jan 14 12:58:41 2007
3
@@ -127,9 +127,9 @@
4
 
5
   const char	*format() { return (format_); }
6
   void		format(const char *f) { format_ = f; update(); }
7
-  double	maxinum() const { return (maximum_); }
8
+  double	maximum() const { return (maximum_); }
9
   void		maximum(double m) { maximum_ = m; }
10
-  double	mininum() const { return (minimum_); }
11
+  double	minimum() const { return (minimum_); }
12
   void		minimum(double m) { minimum_ = m; }
13
   void		range(double a, double b) { minimum_ = a; maximum_ = b; }
14
   void		resize(int X, int Y, int W, int H) {

Return to bug 107901