From owner-svn-ports-all@freebsd.org Sat Jun 16 08:34:34 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BC227100EB4F; Sat, 16 Jun 2018 08:34:34 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 726A479CE8; Sat, 16 Jun 2018 08:34:34 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 53AF423F54; Sat, 16 Jun 2018 08:34:34 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5G8YY2I013118; Sat, 16 Jun 2018 08:34:34 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5G8YYHs013117; Sat, 16 Jun 2018 08:34:34 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201806160834.w5G8YYHs013117@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sat, 16 Jun 2018 08:34:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472527 - head/math/mpir X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: head/math/mpir X-SVN-Commit-Revision: 472527 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Jun 2018 08:34:34 -0000 Author: amdmi3 Date: Sat Jun 16 08:34:33 2018 New Revision: 472527 URL: https://svnweb.freebsd.org/changeset/ports/472527 Log: - Fix LICENSE - Switch to new test framework Approved by: portmgr blanket Modified: head/math/mpir/Makefile Modified: head/math/mpir/Makefile ============================================================================== --- head/math/mpir/Makefile Sat Jun 16 08:05:23 2018 (r472526) +++ head/math/mpir/Makefile Sat Jun 16 08:34:33 2018 (r472527) @@ -9,7 +9,7 @@ MASTER_SITES= http://mpir.org/ MAINTAINER= wen@FreeBSD.org COMMENT= Multiprecision integer library -LICENSE= LGPL3 +LICENSE= LGPL3+ LICENSE_FILE= ${WRKSRC}/COPYING.LIB BUILD_DEPENDS= yasm:devel/yasm @@ -18,6 +18,7 @@ USES= libtool tar:bzip2 GNU_CONFIGURE= yes CONFIGURE_ARGS= --enable-cxx --with-system-yasm INSTALL_TARGET= install-strip +TEST_TARGET= check USE_LDCONFIG= yes MPIR_VERSION= 23.0.3 @@ -35,8 +36,5 @@ PLIST_FILES= include/mpir.h \ lib/libmpirxx.so \ lib/libmpirxx.so.${MPIRXX_VERSION} \ lib/libmpirxx.so.${MPIRXX_VERSION:R:R} - -regression-test: - ${MAKE_CMD} -C ${WRKSRC} check .include