From owner-svn-ports-head@freebsd.org Sun Jan 29 19:22:48 2017 Return-Path: Delivered-To: svn-ports-head@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 D97A5CC7C5A; Sun, 29 Jan 2017 19:22:48 +0000 (UTC) (envelope-from marino@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 902F9EB0; Sun, 29 Jan 2017 19:22:48 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v0TJMlfT038925; Sun, 29 Jan 2017 19:22:47 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0TJMlQE038923; Sun, 29 Jan 2017 19:22:47 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201701291922.v0TJMlQE038923@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 29 Jan 2017 19:22:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r432796 - in head/graphics: rawtherapee rawtherapee-devel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Jan 2017 19:22:49 -0000 Author: marino Date: Sun Jan 29 19:22:47 2017 New Revision: 432796 URL: https://svnweb.freebsd.org/changeset/ports/432796 Log: graphics/rawtherapee(-devel): Fix OSVERSION, use with OPSYS The OSVERSION for FreeBSD 10.3 is 1003000, not 1030000. The last commit blocked FreeBSD 10.3 too. OSVERSION is also supposed to be used in conjunction with OPSYS. Approved by: just-fix-it Modified: head/graphics/rawtherapee-devel/Makefile head/graphics/rawtherapee/Makefile Modified: head/graphics/rawtherapee-devel/Makefile ============================================================================== --- head/graphics/rawtherapee-devel/Makefile Sun Jan 29 19:19:06 2017 (r432795) +++ head/graphics/rawtherapee-devel/Makefile Sun Jan 29 19:22:47 2017 (r432796) @@ -76,7 +76,8 @@ OPTIMIZED_CFLAGS_CFLAGS= -O3 -funroll-lo # ------------------------------------------------------------------- # -.if ${OSVERSION} < 1030000 +.if ${OPSYS} == FreeBSD +.if ${OSVERSION} < 1003000 IGNORE= is only for supported FreeBSD releases .endif @@ -87,6 +88,7 @@ IGNORE= is only for supported FreeBSD re ONLY_FOR_ARCHS= amd64 ONLY_FOR_ARCHS_REASON=Only amd64 is supported on non-released FreeBSD versions. .endif +.endif .if ${PORT_OPTIONS:MNATIVE} CMAKE_ARGS+= -DPROC_TARGET_NUMBER="2" Modified: head/graphics/rawtherapee/Makefile ============================================================================== --- head/graphics/rawtherapee/Makefile Sun Jan 29 19:19:06 2017 (r432795) +++ head/graphics/rawtherapee/Makefile Sun Jan 29 19:22:47 2017 (r432796) @@ -74,7 +74,8 @@ OPTIMIZED_CFLAGS_CFLAGS= -O3 -funroll-lo # ------------------------------------------------------------------- # -.if ${OSVERSION} < 1030000 +.if ${OPSYS} == FreeBSD +.if ${OSVERSION} < 1003000 IGNORE= is only for supported FreeBSD releases .endif @@ -85,6 +86,7 @@ IGNORE= is only for supported FreeBSD re ONLY_FOR_ARCHS= amd64 ONLY_FOR_ARCHS_REASON=Only amd64 is supported on non-released FreeBSD versions. .endif +.endif .if ${PORT_OPTIONS:MNATIVE} CMAKE_ARGS+= -DPROC_TARGET_NUMBER="2"