diff options
author | amdmi3 <amdmi3@FreeBSD.org> | 2018-05-24 17:04:14 +0800 |
---|---|---|
committer | amdmi3 <amdmi3@FreeBSD.org> | 2018-05-24 17:04:14 +0800 |
commit | b1c21492253e7ea2a6841864c35cd4ce09a820ce (patch) | |
tree | 64337025fda8717475ecb7568b5f2d7ed9ae17bf /math | |
parent | f5cce1a25147b6d90c6f2540b09419742bd1f989 (diff) | |
download | freebsd-ports-gnome-b1c21492253e7ea2a6841864c35cd4ce09a820ce.tar.gz freebsd-ports-gnome-b1c21492253e7ea2a6841864c35cd4ce09a820ce.tar.zst freebsd-ports-gnome-b1c21492253e7ea2a6841864c35cd4ce09a820ce.zip |
- Add LICENSE
- Switch to new test framework
Approved by: portmgr blanket
Diffstat (limited to 'math')
-rw-r--r-- | math/mpc/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/math/mpc/Makefile b/math/mpc/Makefile index 5b7ac9629f84..b4c548edfbc7 100644 --- a/math/mpc/Makefile +++ b/math/mpc/Makefile @@ -10,6 +10,9 @@ MASTER_SITES= GNU MAINTAINER= gerald@FreeBSD.org COMMENT= Library of complex numbers with arbitrarily high precision +LICENSE= LGPL3+ +LICENSE_FILE= ${WRKSRC}/COPYING.LESSER + LIB_DEPENDS= libgmp.so:math/gmp \ libmpfr.so:math/mpfr @@ -17,6 +20,7 @@ GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-gmp=${LOCALBASE} \ --with-mpfr=${LOCALBASE} INSTALL_TARGET= install-strip +TEST_TARGET= check USES= libtool USE_LDCONFIG= yes @@ -24,7 +28,4 @@ INFO= mpc PLIST_FILES= include/mpc.h \ lib/libmpc.a lib/libmpc.so lib/libmpc.so.3 lib/libmpc.so.3.1.0 -regression-test: build - @(cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} check) - .include <bsd.port.mk> |