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

(-)Makefile (-2 / +2 lines)
Lines 6-17 Link Here
6
#
6
#
7
7
8
PORTNAME=       ccmath
8
PORTNAME=       ccmath
9
PORTVERSION=	2.2.0
9
PORTVERSION=	2.2.1
10
CATEGORIES=     math
10
CATEGORIES=     math
11
MASTER_SITES=	${MASTER_SITE_SUNSITE}
11
MASTER_SITES=	${MASTER_SITE_SUNSITE}
12
MASTER_SITE_SUBDIR=	libs
12
MASTER_SITE_SUBDIR=	libs
13
13
14
MAINTAINER=	greid@ukug.uk.freebsd.org
14
MAINTAINER=	greid@FreeBSD.org
15
COMMENT=	A mathematics library with many different functions
15
COMMENT=	A mathematics library with many different functions
16
16
17
INSTALLS_SHLIB=	yes
17
INSTALLS_SHLIB=	yes
(-)distinfo (-1 / +1 lines)
Line 1 Link Here
1
MD5 (ccmath-2.2.0.tar.gz) = 96d9b148d4dc06dba82441006b39a3d3
1
MD5 (ccmath-2.2.1.tar.gz) = 4d875071c7114839546c815cc2b7732c
(-)pkg-plist (-16 / +16 lines)
Lines 1-19 Link Here
1
include/ccmath.h
1
include/ccmath.h
2
lib/libccm.a
2
lib/libccm.a
3
lib/libccm.so
3
lib/libccm.so
4
%%PORTDOCS%%share/doc/ccmath/C00-intro
4
%%PORTDOCS%%%%DOCSDIR%%/C00-intro
5
%%PORTDOCS%%share/doc/ccmath/C01-matrix
5
%%PORTDOCS%%%%DOCSDIR%%/C01-matrix
6
%%PORTDOCS%%share/doc/ccmath/C02-intg
6
%%PORTDOCS%%%%DOCSDIR%%/C02-intg
7
%%PORTDOCS%%share/doc/ccmath/C03-geom
7
%%PORTDOCS%%%%DOCSDIR%%/C03-geom
8
%%PORTDOCS%%share/doc/ccmath/C04-cfit
8
%%PORTDOCS%%%%DOCSDIR%%/C04-cfit
9
%%PORTDOCS%%share/doc/ccmath/C05-roots
9
%%PORTDOCS%%%%DOCSDIR%%/C05-roots
10
%%PORTDOCS%%share/doc/ccmath/C06-fft
10
%%PORTDOCS%%%%DOCSDIR%%/C06-fft
11
%%PORTDOCS%%share/doc/ccmath/C07-simu
11
%%PORTDOCS%%%%DOCSDIR%%/C07-simu
12
%%PORTDOCS%%share/doc/ccmath/C08-statf
12
%%PORTDOCS%%%%DOCSDIR%%/C08-statf
13
%%PORTDOCS%%share/doc/ccmath/C09-sfunc
13
%%PORTDOCS%%%%DOCSDIR%%/C09-sfunc
14
%%PORTDOCS%%share/doc/ccmath/C10-sort
14
%%PORTDOCS%%%%DOCSDIR%%/C10-sort
15
%%PORTDOCS%%share/doc/ccmath/C11-tseries
15
%%PORTDOCS%%%%DOCSDIR%%/C11-tseries
16
%%PORTDOCS%%share/doc/ccmath/C12-complex
16
%%PORTDOCS%%%%DOCSDIR%%/C12-complex
17
%%PORTDOCS%%share/doc/ccmath/C13-xarm
17
%%PORTDOCS%%%%DOCSDIR%%/C13-xarm
18
%%PORTDOCS%%share/doc/ccmath/C14-util
18
%%PORTDOCS%%%%DOCSDIR%%/C14-util
19
%%PORTDOCS%%@dirrm share/doc/ccmath
19
%%PORTDOCS%%@dirrm %%DOCSDIR%%
(-)files/patch-ab (-11 lines)
Removed Link Here
1
--- tseries/sany.c.orig	Wed Mar  7 16:20:33 2001
2
+++ tseries/sany.c	Wed Mar  7 16:20:40 2001
3
@@ -5,7 +5,7 @@
4
  *  public license (LGPL). ( See the lgpl.license file for details.)
5
  * ------------------------------------------------------------------------
6
  */
7
-#include "ccmath.h"
8
+#include "../ccmath.h"
9
 int sany(double *x,int n,double *pm,double *cd,double *ci,
10
        int nd,int ms,int lag)
11
 { struct complex *pc,*p,**qc,**q;
(-)files/patch-ac (-3 / +8 lines)
Lines 1-6 Link Here
1
--- makelibs.sh.orig	Wed Mar  7 16:18:01 2001
1
--- makelibs.sh.orig	Sat Oct 18 22:13:50 2003
2
+++ makelibs.sh	Wed Mar  7 16:18:36 2001
2
+++ makelibs.sh	Sat Oct 18 22:15:05 2003
3
@@ -9,23 +9,19 @@
3
@@ -10,13 +10,11 @@
4
 LST="cfit complex fft geom intg matrix roots sfunc simu sort statf tseries util xarm"
4
 LST="cfit complex fft geom intg matrix roots sfunc simu sort statf tseries util xarm"
5
 MDR=`pwd`
5
 MDR=`pwd`
6
 LSOD=$MDR/tmp
6
 LSOD=$MDR/tmp
Lines 14-19 Link Here
14
+    cc -c $CFLAGS *.c
14
+    cc -c $CFLAGS *.c
15
     mv *.o $LSOD
15
     mv *.o $LSOD
16
   done
16
   done
17
 
18
@@ -27,14 +25,12 @@
19
 mv *.o $LSOD
20
 cd $MDR
21
 
17
-if [ $F = "y" ]
22
-if [ $F = "y" ]
18
-  then cd $MDR/matrix
23
-  then cd $MDR/matrix
19
-    cc -c -O3 solv.s
24
-    cc -c -O3 solv.s

Return to bug 58209