svn commit: r520810 - head/french/aster

Thierry Thomas thierry at FreeBSD.org
Tue Dec 24 16:46:12 UTC 2019


Author: thierry
Date: Tue Dec 24 16:46:12 2019
New Revision: 520810
URL: https://svnweb.freebsd.org/changeset/ports/520810

Log:
  Mark BROKEN on FreeBSD < 12 and on 32 bits systems.
  
  Reported by:	pfg

Modified:
  head/french/aster/Makefile

Modified: head/french/aster/Makefile
==============================================================================
--- head/french/aster/Makefile	Tue Dec 24 16:45:22 2019	(r520809)
+++ head/french/aster/Makefile	Tue Dec 24 16:46:12 2019	(r520810)
@@ -10,6 +10,9 @@ COMMENT=	Code_Aster finite element method solver
 
 LICENSE=	GPLv2
 
+NOT_FOR_ARCHS=		armv6 armv7 i386 mips powerpc
+NOT_FOR_ARCHS_REASON=	ARG_MAX is too small for Code_Aster on 32 bits systems
+
 #-----------------------------------------------------------------------
 # You may define these options:
 #
@@ -83,7 +86,7 @@ INTERACTIVE_SCRIPTS=	check_compilers.py setup.py
 .include "${.CURDIR}/../../french/aster/bsd.aster.mk"
 .include <bsd.port.pre.mk>
 
-.if ${OPSYS} == FreeBSD && ((${OSREL:R} == 12 && ${OSVERSION} < 1201506)	\
+.if ${OPSYS} == FreeBSD && ((${OSREL:R} <= 12 && ${OSVERSION} < 1201506)	\
 			|| (${OSREL:R} > 12 && ${OSVERSION} < 1300068))
 BROKEN=	a larger value of ARG_MAX is needed for Code_Aster, please upgrade your system
 .endif


More information about the svn-ports-all mailing list