Date: Sun, 23 Aug 2015 13:58:07 +0000 (UTC) From: Alexey Dokuchaev <danfe@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r395091 - in head: comms/dabstick-radio graphics/darktable graphics/luxrender graphics/sharpconstruct Message-ID: <201508231358.t7NDw7Z9032439@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: danfe Date: Sun Aug 23 13:58:06 2015 New Revision: 395091 URL: https://svnweb.freebsd.org/changeset/ports/395091 Log: Consistently spell out ONLY_FOR_ARCHS_REASON due to SSE (and other SIMD instructions) use. Particularly, saying "SSE extensions" is superfluous, as SSE abbreviation itself means "Streaming SIMD Extensions". Correct way to refer to particular (CPU-agnostic) technology is "SIMD instruction set", which is not limited to MMX, SSE family, AVX, NEON, etc. Since "instruction set" looks a bit too formal in the option description, use more casual and shorter word "instructions". Modified: head/comms/dabstick-radio/Makefile head/graphics/darktable/Makefile head/graphics/luxrender/Makefile head/graphics/sharpconstruct/Makefile Modified: head/comms/dabstick-radio/Makefile ============================================================================== --- head/comms/dabstick-radio/Makefile Sun Aug 23 13:52:27 2015 (r395090) +++ head/comms/dabstick-radio/Makefile Sun Aug 23 13:58:06 2015 (r395091) @@ -28,13 +28,13 @@ PORTDOCS= * PLIST_FILES+= bin/dabreceiver bin/fmreceiver bin/spectrum-viewer ONLY_FOR_ARCHS= i386 amd64 -ONLY_FOR_ARCHS_REASON= uses MMX and SSE2 +ONLY_FOR_ARCHS_REASON= uses MMX and SSE2 instructions OPTIONS_DEFINE= DOCS .include <bsd.port.options.mk> -.if (${OSVERSION} >= 901000) && exists(${DESTDIR}/usr/bin/clang) +.if (${OSVERSION} >= 900014) && exists(${DESTDIR}/usr/bin/clang) CC= clang CXX= clang++ CPP= clang-cpp Modified: head/graphics/darktable/Makefile ============================================================================== --- head/graphics/darktable/Makefile Sun Aug 23 13:52:27 2015 (r395090) +++ head/graphics/darktable/Makefile Sun Aug 23 13:58:06 2015 (r395091) @@ -18,7 +18,7 @@ LIB_DEPENDS= libexiv2.so:${PORTSDIR}/gra libcurl.so:${PORTSDIR}/ftp/curl ONLY_FOR_ARCHS= i386 amd64 -ONLY_FOR_ARCHS_REASON= uses SSE extensions +ONLY_FOR_ARCHS_REASON= uses SSE instructions USES= compiler:c++11-lib cmake:outsource desktop-file-utils \ ninja pkgconfig tar:xz Modified: head/graphics/luxrender/Makefile ============================================================================== --- head/graphics/luxrender/Makefile Sun Aug 23 13:52:27 2015 (r395090) +++ head/graphics/luxrender/Makefile Sun Aug 23 13:58:06 2015 (r395091) @@ -21,7 +21,7 @@ LIB_DEPENDS= libboost_python.so:${PORTSD libOpenImageIO.so:${PORTSDIR}/graphics/openimageio ONLY_FOR_ARCHS= i386 amd64 -ONLY_FOR_ARCHS_REASON= uses SSE extensions +ONLY_FOR_ARCHS_REASON= uses SSE instructions USES= bison cmake execinfo python:version tar:bzip2 USE_GL= glut glew Modified: head/graphics/sharpconstruct/Makefile ============================================================================== --- head/graphics/sharpconstruct/Makefile Sun Aug 23 13:52:27 2015 (r395090) +++ head/graphics/sharpconstruct/Makefile Sun Aug 23 13:58:06 2015 (r395091) @@ -18,7 +18,7 @@ USE_GL= yes GNU_CONFIGURE= yes ONLY_FOR_ARCHS= i386 amd64 -ONLY_FOR_ARCHS_REASON= uses SSE +ONLY_FOR_ARCHS_REASON= uses SSE instructions PLIST_FILES= bin/${PORTNAME} \ man/man1/${PORTNAME}.1.gz
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201508231358.t7NDw7Z9032439>