From owner-svn-ports-head@FreeBSD.ORG Sat May 10 09:13:09 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 3D0A48BB; Sat, 10 May 2014 09:13:09 +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 2A758827; Sat, 10 May 2014 09:13:09 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s4A9D91R012990; Sat, 10 May 2014 09:13:09 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s4A9D9Db012989; Sat, 10 May 2014 09:13:09 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201405100913.s4A9D9Db012989@svn.freebsd.org> From: Antoine Brodin Date: Sat, 10 May 2014 09:13:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r353566 - head/math/octave 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: Sat, 10 May 2014 09:13:09 -0000 Author: antoine Date: Sat May 10 09:13:08 2014 New Revision: 353566 URL: http://svnweb.freebsd.org/changeset/ports/353566 QAT: https://qat.redports.org/buildarchive/r353566/ Log: Runtime fix: all the dynamically generated part of the plist was not packaged With hat: portmgr Modified: head/math/octave/Makefile Modified: head/math/octave/Makefile ============================================================================== --- head/math/octave/Makefile Sat May 10 09:08:43 2014 (r353565) +++ head/math/octave/Makefile Sat May 10 09:13:08 2014 (r353566) @@ -3,7 +3,7 @@ PORTNAME= octave PORTVERSION= 3.8.0 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= math MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= octave @@ -61,7 +61,7 @@ OPTIONS_DEFINE= DOCS INFO= octave liboctave -.include +.include .if exists(${LOCALBASE}/lib/libopenblas.so) WITH_BLAS?= openblas @@ -108,7 +108,7 @@ post-install: .endfor ${RM} -f ${WRKDIR}/PLIST .for d in ${PREFIX}/include/octave-${OCTAVE_VERSION} ${PREFIX}/share/octave/${OCTAVE_VERSION} ${PREFIX}/share/octave/site ${PREFIX}/lib/octave/${OCTAVE_VERSION} ${PREFIX}/libexec/octave/${OCTAVE_VERSION} - @${FIND} -s ${STAGEDIR}$d -not -type d | \ + @${FIND} -s ${STAGEDIR}$d -not -type d -not -name '*.la' | \ ${SED} -e 's#^${STAGEDIR}${PREFIX}/##' >> ${WRKDIR}/PLIST @${FIND} -s ${STAGEDIR}$d -type d -empty | \ ${SED} -e 's,^${STAGEDIR}${PREFIX}/,@exec ${MKDIR} %D/,' \ @@ -130,4 +130,4 @@ post-install: check regression-test: build @(cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} check) -.include +.include