From owner-svn-ports-all@FreeBSD.ORG Fri Apr 4 14:44:45 2014 Return-Path: Delivered-To: svn-ports-all@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 DC9C81C7; Fri, 4 Apr 2014 14:44:45 +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 C9371839; Fri, 4 Apr 2014 14:44:45 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s34EijT7035112; Fri, 4 Apr 2014 14:44:45 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s34EijxR035110; Fri, 4 Apr 2014 14:44:45 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201404041444.s34EijxR035110@svn.freebsd.org> From: Baptiste Daroussin Date: Fri, 4 Apr 2014 14:44:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r350130 - in head/math: R libR X-SVN-Group: ports-head 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.17 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: Fri, 04 Apr 2014 14:44:45 -0000 Author: bapt Date: Fri Apr 4 14:44:45 2014 New Revision: 350130 URL: http://svnweb.freebsd.org/changeset/ports/350130 QAT: https://qat.redports.org/buildarchive/r350130/ Log: Support stage Strip libR.a Modified: head/math/R/Makefile head/math/libR/Makefile Modified: head/math/R/Makefile ============================================================================== --- head/math/R/Makefile Fri Apr 4 14:40:39 2014 (r350129) +++ head/math/R/Makefile Fri Apr 4 14:44:45 2014 (r350130) @@ -71,7 +71,6 @@ OPTIONS_DEFAULT+= ICU PCRE_PORT THREADS .if !defined(LIBR_SLAVEPORT) RUN_DEPENDS+= ${LOCALBASE}/bin/gsed:${PORTSDIR}/textproc/gsed USE_LDCONFIG= ${PREFIX}/lib/R/lib -NO_STAGE= yes #now only used to build the R.1 manpage: USES+= perl5 USE_PERL5= build @@ -351,12 +350,12 @@ do-build: ${MAKE_ARGS} Makefile Makedeps libR.a) do-install: - @${MKDIR} ${PREFIX}/lib/R/lib - @${INSTALL_DATA} ${WRKSRC}/src/main/libR.a ${PREFIX}/lib/R/lib + @${MKDIR} ${STAGEDIR}${PREFIX}/lib/R/lib + @${INSTALL_LIB} ${WRKSRC}/src/main/libR.a ${STAGEDIR}${PREFIX}/lib/R/lib .else # LIBR_SLAVEPORT -pre-configure-script: +pre-configure: @${FIND} ${WRKSRC} \( -name '*.orig' -o -name '*.bak' \) -delete check regression-test test: build Modified: head/math/libR/Makefile ============================================================================== --- head/math/libR/Makefile Fri Apr 4 14:40:39 2014 (r350129) +++ head/math/libR/Makefile Fri Apr 4 14:44:45 2014 (r350130) @@ -12,5 +12,4 @@ PLIST= ${.CURDIR}/pkg-plist PLIST_FILES= lib/R/lib/libR.a PLIST_DIRSTRY= lib/R/lib lib/R -NO_STAGE= yes .include "${MASTERDIR}/Makefile"