mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-02 01:20:54 +00:00
dce904a447
server providing arbitrary redirects. [1] Remove ABI version numbers for library dependencies. Submitted by: shaun [1]
36 lines
829 B
Makefile
36 lines
829 B
Makefile
# New ports collection makefile for: mpc
|
|
# Date created: 05 April, 2009
|
|
# Whom: Wen Heping <wenheping@gmail.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= mpc
|
|
PORTVERSION= 0.9
|
|
CATEGORIES= math devel
|
|
MASTER_SITES= http://www.multiprecision.org/mpc/download/
|
|
|
|
MAINTAINER= gerald@FreeBSD.org
|
|
COMMENT= Library of complex numbers with arbitrarily high precision
|
|
|
|
LIB_DEPENDS= gmp:${PORTSDIR}/math/gmp \
|
|
mpfr:${PORTSDIR}/math/mpfr
|
|
|
|
PORTSCOUT= site:http://www.multiprecision.org/index.php?prog=mpc&page=download
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-gmp=${LOCALBASE} \
|
|
--with-mpfr=${LOCALBASE}
|
|
USE_LDCONFIG= yes
|
|
|
|
INFO= mpc
|
|
PLIST_FILES= include/mpc.h \
|
|
lib/libmpc.a lib/libmpc.la lib/libmpc.so lib/libmpc.so.2
|
|
|
|
LATEST_LINK= math_mpc
|
|
|
|
regression-test: build
|
|
@cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} check
|
|
|
|
.include <bsd.port.mk>
|