1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00
freebsd-ports/math/bihar/Makefile
Gerald Pfeifer 3be3e90f93 Update to libmpc version 1.0.1 which brings the following fixes:
- Switched to automake 1.11.6, see CVE-2012-3386.
 - #14669: Fixed extraction of CC from gmp.h.
 - Fixed case of intermediate zero real or imaginary part in mpc_fma,
   found by hydra with GMP_CHECK_RANDOMIZE=1346362345.

This is on top of the following changes from version 1.0

 - Licence change towards LGPLv3+ for the code and GFDLv1.3+ (with no
   invariant sections) for the documentation.
 - 100% of all lines are covered by tests
 - Renamed functions
   . mpc_mul_2exp to mpc_mul_2ui
   . mpc_div_2exp to mpc_div_2ui
 - 0^0, which returned (NaN,NaN) previously, now returns (1,+0).
 - Removed compatibility with K&R compilers, which was untestable due
   to lack of such compilers.
 - New functions
   . mpc_log10
   . mpc_mul_2si, mpc_div_2si
 - Speed-ups
   . mpc_fma
 - Bug fixes
   . mpc_div and mpc_norm now return a value indicating the effective
     rounding direction, as the other functions.
   . mpc_mul, mpc_sqr and mpc_norm now return correct results even if
     there are over- or underflows during the computation.
   . mpc_asin, mpc_proj, mpc_sqr: Wrong result when input variable has
     infinite part and equals output variable is corrected.
   . mpc_fr_sub: Wrong return value for imaginary part is corrected.

Convert to the new LIB_DEPENDS standard and remove hard-coded
.so versions from a couple of dependent ports.

Bump PORTREVISIONS of all dependent ports.

PR:		183141
Approved by:	portmgr (bdrewery)
2013-10-26 00:52:33 +00:00

62 lines
2.0 KiB
Makefile

# Created by: Pedro Giffuni S.
# $FreeBSD$
PORTNAME= bihar
PORTVERSION= 1.0
PORTREVISION= 5
CATEGORIES= math
MASTER_SITES= NL
DISTFILES= dbihar.f dbipl.f dbiplr.f dbisld.f dbislf.f dbmult.f dbplrm.f \
dcfftb.f dcfftf.f dcffti.f dcftb1.f dcftf1.f dcfti1.f dcmult.f \
dconju.f dcosqb.f dcosqf.f dcosqi.f dcost.f dcosti.f dcsqb1.f \
dcsqf1.f defft1.f defftb.f defftf.f deffti.f dftrnx.f dftrny.f \
dhzeri.f dhzero.f dlmult.f dlplrm.f dmatge.f dpentf.f dpmult.f \
dpplrm.f dpreco.f dpssb.f dpssb2.f dpssb3.f dpssb4.f dpssb5.f \
dpssf.f dpssf2.f dpssf3.f dpssf4.f dpssf5.f dradb2.f dradb3.f \
dradb4.f dradb5.f dradbg.f dradf2.f dradf3.f dradf4.f dradf5.f \
dradfg.f drfftb.f drfftf.f drffti.f drftb1.f drftf1.f drfti1.f \
dsinqb.f dsinqf.f dsinqi.f dsint.f dsinti.f dstart.f dtrigi.f \
dupdat.f sbihar.f sbipl.f sbiplr.f sbisld.f sbislf.f sbmult.f \
sbplrm.f scfftb.f scfftf.f scffti.f scftb1.f scftf1.f scfti1.f \
scmult.f sconju.f scosqb.f scosqf.f scosqi.f scost.f scosti.f \
scsqb1.f scsqf1.f sefft1.f sefftb.f sefftf.f seffti.f sftrnx.f \
sftrny.f shzeri.f shzero.f slmult.f slplrm.f smatge.f spentf.f \
spmult.f spplrm.f spreco.f spssb.f spssb2.f spssb3.f spssb4.f \
spssb5.f spssf.f spssf2.f spssf3.f spssf4.f spssf5.f sradb2.f \
sradb3.f sradb4.f sradb5.f sradbg.f sradf2.f sradf3.f sradf4.f \
sradf5.f sradfg.f srfftb.f srfftf.f srffti.f srftb1.f srftf1.f \
srfti1.f ssinqb.f ssinqf.f ssinqi.f ssint.f ssinti.f sstart.f \
strigi.f supdat.f
.if !defined(NOPORTDOCS)
DISTFILES+= fft.doc
.endif
DIST_SUBDIR= ${PORTNAME}
EXTRACT_ONLY= #empty
MAINTAINER= bf@FreeBSD.org
COMMENT= Biharmonic equation in rectangular geometry and polar coordinates
LIB_DEPENDS= linpack.3:${PORTSDIR}/math/linpack
NO_STAGE= yes
NO_WRKSUBDIR= yes
USE_LDCONFIG= yes
USE_FORTRAN= yes
.if !defined(NOPORTDOCS)
PORTDOCS= fft.doc
post-install:
@${MKDIR} ${DOCSDIR}
@${INSTALL_DATA} ${WRKSRC}/fft.doc ${DOCSDIR}
.endif
post-extract:
@(cd ${_DISTDIR}; ${CP} ${DISTFILES} ${WRKSRC})
pre-build:
@${CP} ${FILESDIR}/makefile.lib ${WRKSRC}/Makefile
.include <bsd.port.mk>