Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 10 May 2014 09:13:09 +0000 (UTC)
From:      Antoine Brodin <antoine@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r353566 - head/math/octave
Message-ID:  <201405100913.s4A9D9Db012989@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <bsd.port.options.mk>
+.include <bsd.port.pre.mk>
 
 .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 <bsd.port.mk>
+.include <bsd.port.post.mk>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201405100913.s4A9D9Db012989>