svn commit: r353566 - head/math/octave
Antoine Brodin
antoine at FreeBSD.org
Sat May 10 09:13:09 UTC 2014
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}/, at 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>
More information about the svn-ports-all
mailing list