From owner-svn-ports-head@FreeBSD.ORG Wed Jun 18 09:24:04 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 626D570C; Wed, 18 Jun 2014 09:24:04 +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 4F67B2AD7; Wed, 18 Jun 2014 09:24:04 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s5I9O4kj044417; Wed, 18 Jun 2014 09:24:04 GMT (envelope-from vanilla@svn.freebsd.org) Received: (from vanilla@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s5I9O4Un044416; Wed, 18 Jun 2014 09:24:04 GMT (envelope-from vanilla@svn.freebsd.org) Message-Id: <201406180924.s5I9O4Un044416@svn.freebsd.org> From: "Vanilla I. Shu" Date: Wed, 18 Jun 2014 09:24:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r358235 - head/math/crlibm 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 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: Wed, 18 Jun 2014 09:24:04 -0000 Author: vanilla Date: Wed Jun 18 09:24:03 2014 New Revision: 358235 URL: http://svnweb.freebsd.org/changeset/ports/358235 QAT: https://qat.redports.org/buildarchive/r358235/ Log: 1: Stagify. 2: new syntax of LIB_DEPENDS. Approved by: portmgr@ Modified: head/math/crlibm/Makefile Modified: head/math/crlibm/Makefile ============================================================================== --- head/math/crlibm/Makefile Wed Jun 18 09:23:27 2014 (r358234) +++ head/math/crlibm/Makefile Wed Jun 18 09:24:03 2014 (r358235) @@ -25,7 +25,6 @@ OPTIONS_DEFINE= TEST OPTIONS_DEFAULT= TEST TEST_DESC= Include all test capabilities (requires MPFR) -NO_STAGE= yes .include .if make(makesum) || ${PORT_OPTIONS:MDOCS} DISTFILES+= crlibm-1.0beta3.pdf:2,4 tripledoubleprocedures-1.0beta3.pdf:3,4 @@ -49,7 +48,7 @@ CONFIGURE_ARGS+= --enable-sse2 .if ${PORT_OPTIONS:MTEST} CONFIGURE_ARGS+= --enable-mpfr -LIB_DEPENDS+= mpfr.4:${PORTSDIR}/math/mpfr +LIB_DEPENDS+= libmpfr.so:${PORTSDIR}/math/mpfr .else CONFIGURE_ARGS+= --disable-mpfr .endif @@ -62,8 +61,8 @@ check regression-test test: build PORTDOCS= ${DISTFILES:C|\:.*||:M*.pdf} post-install: - @${MKDIR} ${DOCSDIR} - @cd ${_DISTDIR}; ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} + @cd ${_DISTDIR}; ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR} .endif