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

(-)math/blas/Makefile (-4 / +4 lines)
Lines 11-30 Link Here
11
CATEGORIES=	math
11
CATEGORIES=	math
12
MASTER_SITES=	ftp://netlib.bell-labs.com/netlib/blas/ \
12
MASTER_SITES=	ftp://netlib.bell-labs.com/netlib/blas/ \
13
		ftp://www.hensa.ac.uk/mirrors/netlib/blas/ \
13
		ftp://www.hensa.ac.uk/mirrors/netlib/blas/ \
14
		ftp://elib.zib-berlin.de/pub/blas/
14
		http://www.netlib.org/blas/
15
EXTRACT_SUFX=	.tgz
15
EXTRACT_SUFX=	.tgz
16
16
17
MAINTAINER=	ports@FreeBSD.org
17
MAINTAINER=	ports@FreeBSD.org
18
18
19
WRKSRC=		${WRKDIR}
19
NO_WRKSUBDIR=	yes
20
20
21
.include <bsd.port.pre.mk>
21
.include <bsd.port.pre.mk>
22
22
23
pre-build:
23
pre-build:
24
	${CP} ${FILESDIR}/makefile.lib ${WRKDIR}/Makefile
24
	${CP} ${FILESDIR}/makefile.lib ${WRKSRC}/Makefile
25
25
26
post-install:
26
post-install:
27
	${LDCONFIG} -m ${PREFIX}/lib
27
	${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m ${PREFIX}/lib
28
.if ${PORTOBJFORMAT} == "aout"
28
.if ${PORTOBJFORMAT} == "aout"
29
	${LN} -sf libblas.so.1.0 ${PREFIX}/lib/libblas.so
29
	${LN} -sf libblas.so.1.0 ${PREFIX}/lib/libblas.so
30
.endif
30
.endif
(-)math/blas/pkg/DESCR (+2 lines)
Lines 8-10 Link Here
8
8
9
A Fortran77 reference implementation of the BLAS is located in the blas
9
A Fortran77 reference implementation of the BLAS is located in the blas
10
directory of Netlib.
10
directory of Netlib.
11
12
WWW: http://www.netlib.org/blas/
(-)math/blas/scripts/uncomp (-6 lines)
Lines 1-6 Link Here
1
#!/bin/sh
2
outdir=$1
3
infile=$2
4
outfile=`basename $infile .gz`
5
echo Uncompressing $infile to $outdir/$outfile
6
zcat $infile > $outdir/$outfile

Return to bug 15468