blob: acbb2dd277a71d945bdc32add7932cf93d26ce19 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Created by: Wen Heping <wenheping@gmail.com>
# $FreeBSD$
PORTNAME= mpc
PORTVERSION= 1.0.3
CATEGORIES= math devel
MASTER_SITES= GNU
MAINTAINER= gerald@FreeBSD.org
COMMENT= Library of complex numbers with arbitrarily high precision
LIB_DEPENDS= libgmp.so:math/gmp \
libmpfr.so:math/mpfr
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --with-gmp=${LOCALBASE} \
--with-mpfr=${LOCALBASE}
INSTALL_TARGET= install-strip
USES= libtool
USE_LDCONFIG= yes
INFO= mpc
PLIST_FILES= include/mpc.h \
lib/libmpc.a lib/libmpc.so lib/libmpc.so.3 lib/libmpc.so.3.0.0
regression-test: build
@(cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} check)
.include <bsd.port.mk>
|