98161513d9
This is libcerf, a self-contained numeric library that provides an efficient and accurate implementation of complex error functions, along with Dawson, Faddeeva, and Voigt functions. On current GNU/Linux systems, the man page complex(7) has a "see also" section that lists complex mathematical functions like cabs(3), cacos(3), and so on. Among them, there is a complex error function. However, its manual page cerf(3) describes the functions cerf and cerfc as "unimplemented" and "reserved for future use". The present library libcerf provides the missing implementation, along with a related functions. It comes with a set of man pages, including a page cerf(3) that overwrites the standard one.
19 lines
499 B
Makefile
19 lines
499 B
Makefile
# $NetBSD: Makefile,v 1.1 2015/10/28 19:00:58 wiz Exp $
|
|
|
|
DISTNAME= libcerf-1.4
|
|
CATEGORIES= math
|
|
MASTER_SITES= http://apps.jcns.fz-juelich.de/src/libcerf/
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.0rg
|
|
HOMEPAGE= http://apps.jcns.fz-juelich.de/doku/sc/libcerf
|
|
COMMENT= Library providing efficient and accurate complex error functions
|
|
LICENSE= mit
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= perl:build gmake pkg-config
|
|
|
|
PKGCONFIG_OVERRIDE+= libcerf.pc.in
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|