svn commit: r461509 - head/math/sfft

Mark Linimon linimon at FreeBSD.org
Sun Feb 11 15:49:22 UTC 2018


Author: linimon
Date: Sun Feb 11 15:49:22 2018
New Revision: 461509
URL: https://svnweb.freebsd.org/changeset/ports/461509

Log:
  Use ONLY_FOR due to specific dependence on x86 instructions.
  
  While here, pet portlint.

Modified:
  head/math/sfft/Makefile

Modified: head/math/sfft/Makefile
==============================================================================
--- head/math/sfft/Makefile	Sun Feb 11 15:33:42 2018	(r461508)
+++ head/math/sfft/Makefile	Sun Feb 11 15:49:22 2018	(r461509)
@@ -14,6 +14,9 @@ COMMENT=	Optimized Sparse Fast Fourier Transform
 
 LICENSE=	GPLv2
 
+ONLY_FOR_ARCHS=		amd64 i386
+ONLY_FOR_ARCHS_REASON=	requires SSE instructions, which are x86-specific
+
 LIB_DEPENDS=	libfftw3.so:math/fftw3
 
 USES=		uidfix zip
@@ -109,6 +112,6 @@ post-install:
 
 post-install-DOCS-on:
 	@${MKDIR} ${STAGEDIR}${DOCSDIR}
-	@${INSTALL_DATA} ${_DISTDIR}/${PORTDOCS} ${STAGEDIR}${DOCSDIR}
+	${INSTALL_DATA} ${_DISTDIR}/${PORTDOCS} ${STAGEDIR}${DOCSDIR}
 
 .include <bsd.port.mk>


More information about the svn-ports-head mailing list