From owner-svn-ports-all@FreeBSD.ORG Sat Mar 28 21:05:04 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E5A56FD3; Sat, 28 Mar 2015 21:05:04 +0000 (UTC) Received: from shepard.synsport.net (mail.synsport.com [208.69.230.148]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BC2FA944; Sat, 28 Mar 2015 21:05:03 +0000 (UTC) Received: from [192.168.0.22] (unknown [130.255.19.191]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by shepard.synsport.net (Postfix) with ESMTP id C0A9343C1F; Sat, 28 Mar 2015 16:04:55 -0500 (CDT) Message-ID: <5517176E.2040003@marino.st> Date: Sat, 28 Mar 2015 22:04:46 +0100 From: John Marino Reply-To: marino@freebsd.org User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 MIME-Version: 1.0 To: Stephen Montgomery-Smith , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r382554 - head/math/sage References: <201503282049.t2SKnXrA050022@svn.freebsd.org> In-Reply-To: <201503282049.t2SKnXrA050022@svn.freebsd.org> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18-1 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: Sat, 28 Mar 2015 21:05:05 -0000 On 3/28/2015 21:49, Stephen Montgomery-Smith wrote: > Author: stephen > Date: Sat Mar 28 20:49:32 2015 > New Revision: 382554 > URL: https://svnweb.freebsd.org/changeset/ports/382554 > QAT: https://qat.redports.org/buildarchive/r382554/ > > Log: > - Put back a BROKEN that shouldn't have been removed. > > Modified: > head/math/sage/Makefile > > Modified: head/math/sage/Makefile > ============================================================================== > --- head/math/sage/Makefile Sat Mar 28 20:29:29 2015 (r382553) > +++ head/math/sage/Makefile Sat Mar 28 20:49:32 2015 (r382554) > @@ -97,6 +97,10 @@ post-install: > > .include > > +.if ${OSVERSION} < 701106 > +BROKEN= POSIX semaphores are required, and the support only works in FreeBSD 7-STABLE and later > +.endif > + > MAKE_ENV+= MAKE="${MAKE} -j${MAKE_JOBS_NUMBER}" > > .ifdef MAINTAINER_MODE > Actually, removing that was correct. We don't check OSVERSION for unsupported releases, and FreeBSD 6 and below is definitely EOL. It's standard practice to remove checks for FreeBSD < 8. John