From owner-svn-ports-head@FreeBSD.ORG Mon Sep 1 09:30:33 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D43C39B0; Mon, 1 Sep 2014 09:30:33 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C062E1FDC; Mon, 1 Sep 2014 09:30:33 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s819UXs3017781; Mon, 1 Sep 2014 09:30:33 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s819UXaZ017780; Mon, 1 Sep 2014 09:30:33 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201409010930.s819UXaZ017780@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Mon, 1 Sep 2014 09:30:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r366854 - head/math/mpc X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Sep 2014 09:30:33 -0000 Author: tijl Date: Mon Sep 1 09:30:33 2014 New Revision: 366854 URL: http://svnweb.freebsd.org/changeset/ports/366854 QAT: https://qat.redports.org/buildarchive/r366854/ Log: - Add USES=libtool and INSTALL_TARGET=install-strip - Use MAKE_CMD Modified: head/math/mpc/Makefile Modified: head/math/mpc/Makefile ============================================================================== --- head/math/mpc/Makefile Mon Sep 1 09:21:44 2014 (r366853) +++ head/math/mpc/Makefile Mon Sep 1 09:30:33 2014 (r366854) @@ -3,6 +3,7 @@ PORTNAME= mpc PORTVERSION= 1.0.2 +PORTREVISION= 1 CATEGORIES= math devel MASTER_SITES= http://www.multiprecision.org/mpc/download/ @@ -17,13 +18,15 @@ PORTSCOUT= site:http://www.multiprecisio 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.la lib/libmpc.so lib/libmpc.so.3 + 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} check + @(cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} check) .include