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

(-)octave/Makefile (-2 / +3 lines)
Lines 6-12 Link Here
6
#
6
#
7
7
8
PORTNAME=	octave
8
PORTNAME=	octave
9
PORTVERSION=	2.1.30
9
PORTVERSION=	2.1.39
10
CATEGORIES=	math
10
CATEGORIES=	math
11
MASTER_SITES=	ftp://ftp.che.wisc.edu/pub/octave/bleeding-edge/ \
11
MASTER_SITES=	ftp://ftp.che.wisc.edu/pub/octave/bleeding-edge/ \
12
		ftp://ftp.eos.hokudai.ac.jp/pub/GNU/misc/octave/bleeding-edge/
12
		ftp://ftp.eos.hokudai.ac.jp/pub/GNU/misc/octave/bleeding-edge/
Lines 16-21 Link Here
16
USE_BZIP2=	yes
16
USE_BZIP2=	yes
17
BUILD_DEPENDS=	gnuplot:${PORTSDIR}/math/gnuplot
17
BUILD_DEPENDS=	gnuplot:${PORTSDIR}/math/gnuplot
18
RUN_DEPENDS=	gnuplot:${PORTSDIR}/math/gnuplot
18
RUN_DEPENDS=	gnuplot:${PORTSDIR}/math/gnuplot
19
LIB_DEPENDS=    fftw.2:${PORTSDIR}/math/fftw
19
20
20
.include <bsd.port.pre.mk>
21
.include <bsd.port.pre.mk>
21
22
Lines 29-35 Link Here
29
30
30
USE_GMAKE=	yes
31
USE_GMAKE=	yes
31
GNU_CONFIGURE=	yes
32
GNU_CONFIGURE=	yes
32
CONFIGURE_ARGS=	--disable-shared --host=${GNU_HOST}
33
CONFIGURE_ARGS=	--disable-shared --with-fftw --host=${GNU_HOST}
33
34
34
.if ${OSVERSION} < 400004
35
.if ${OSVERSION} < 400004
35
CONFIGURE_ARGS+=	--with-f2c
36
CONFIGURE_ARGS+=	--with-f2c
(-)octave/distinfo (-1 / +1 lines)
Line 1 Link Here
1
MD5 (octave-2.1.30.tar.bz2) = a4b60bb9942947b9a22795bef61cfb2b
1
MD5 (octave-2.1.39.tar.bz2) = ab7f7e4d1a0d1032d260eb85ca4c571e
(-)octave/files/patch-ah (+14 lines)
Line 0 Link Here
1
--- glob/glob.h.orig	Sun Nov 10 15:32:00 2002
2
+++ glob/glob.h	Sun Nov 10 15:32:49 2002
3
@@ -48,7 +48,11 @@
4
 /* We need `size_t' for the following definitions.  */
5
 #ifndef __size_t
6
 # if defined __GNUC__ && __GNUC__ >= 2
7
+#ifndef __FreeBSD__
8
 typedef __SIZE_TYPE__ __size_t;
9
+#else
10
+#include <sys/types.h>
11
+#endif
12
 # else
13
 /* This is a guess.  */
14
 /*hb

Return to bug 45201