From owner-svn-ports-all@freebsd.org Thu Dec 21 09:07:46 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 42F97E8824C; Thu, 21 Dec 2017 09:07:46 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 0D9E67DF96; Thu, 21 Dec 2017 09:07:45 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vBL97j9a038487; Thu, 21 Dec 2017 09:07:45 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBL97jqa038486; Thu, 21 Dec 2017 09:07:45 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201712210907.vBL97jqa038486@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Thu, 21 Dec 2017 09:07:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r456897 - head/graphics/seom X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: head/graphics/seom X-SVN-Commit-Revision: 456897 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Dec 2017 09:07:46 -0000 Author: linimon Date: Thu Dec 21 09:07:44 2017 New Revision: 456897 URL: https://svnweb.freebsd.org/changeset/ports/456897 Log: Pet portlint and canonicalize error message. Modified: head/graphics/seom/Makefile Modified: head/graphics/seom/Makefile ============================================================================== --- head/graphics/seom/Makefile Thu Dec 21 09:00:38 2017 (r456896) +++ head/graphics/seom/Makefile Thu Dec 21 09:07:44 2017 (r456897) @@ -13,8 +13,8 @@ COMMENT= Real-time capture library for OpenGL applicat LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/LICENSE -ONLY_FOR_ARCHS= i386 amd64 -ONLY_FOR_ARCHS_REASON= not yet ported to anything except i386 and amd64 +ONLY_FOR_ARCHS= amd64 i386 +ONLY_FOR_ARCHS_REASON= not yet ported to any arch other than x86 USES= gmake tar:bzip2 USE_XORG= x11 xv xext @@ -24,7 +24,7 @@ MAKE_ENV= DATADIR="${DATADIR}" .include -.if ${ARCH} == i386 || ${ARCH} == amd64 +.if ${ARCH} == amd64 || ${ARCH} == i386 BUILD_DEPENDS+= yasm:devel/yasm .endif