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

(-)Makefile (-1 / +2 lines)
Lines 8-13 Link Here
8
8
9
PORTNAME?=	R
9
PORTNAME?=	R
10
PORTVERSION=	2.13.1
10
PORTVERSION=	2.13.1
11
PORTREVISION=	1
11
CATEGORIES=	math lang
12
CATEGORIES=	math lang
12
MASTER_SITES=	http://cran.r-project.org/src/base/R-2/ \
13
MASTER_SITES=	http://cran.r-project.org/src/base/R-2/ \
13
		ftp://cran.r-project.org/pub/R/src/base/R-2/ \
14
		ftp://cran.r-project.org/pub/R/src/base/R-2/ \
Lines 99-105 Link Here
99
.if defined(WITH_ATLAS)
100
.if defined(WITH_ATLAS)
100
LIB_DEPENDS+=		atlas.2:${PORTSDIR}/math/atlas
101
LIB_DEPENDS+=		atlas.2:${PORTSDIR}/math/atlas
101
BLAS?=			-lf77blas -latlas
102
BLAS?=			-lf77blas -latlas
102
LAPACK?=		-lalapack -lcblas
103
LAPACK?=		-llapack -lcblas
103
.else
104
.else
104
BLAS?=			no
105
BLAS?=			no
105
LAPACK?=		no
106
LAPACK?=		no
(-)files/patch-src__modules__X11__devX11.c (+20 lines)
Added Link Here
1
--- src/modules/X11/devX11.c.orig	2010-08-20 07:05:35.000000000 +0200
2
+++ src/modules/X11/devX11.c	2010-08-20 08:36:40.000000000 +0200
3
@@ -2528,12 +2528,12 @@
4
 	dd->polygon = X11_Polygon;
5
 	dd->metricInfo = X11_MetricInfo;
6
 	dd->hasTextUTF8 = FALSE;
7
-    	dd->eventHelper = X11_eventHelper;
8
-    	dd->canGenMouseDown = TRUE;
9
-	dd->canGenMouseUp = TRUE;
10
-	dd->canGenMouseMove = TRUE;
11
-	dd->canGenKeybd = TRUE;
12
     }
13
+    dd->eventHelper = X11_eventHelper;
14
+    dd->canGenMouseDown = TRUE;
15
+    dd->canGenMouseUp = TRUE;
16
+    dd->canGenMouseMove = TRUE;
17
+    dd->canGenKeybd = TRUE;
18
 
19
     dd->activate = X11_Activate;
20
     dd->close = X11_Close;

Return to bug 159876