svn commit: r438391 - head/math/maxima

Dmitry Marakasov amdmi3 at FreeBSD.org
Wed Apr 12 17:14:31 UTC 2017


Author: amdmi3
Date: Wed Apr 12 17:14:30 2017
New Revision: 438391
URL: https://svnweb.freebsd.org/changeset/ports/438391

Log:
  - Always check OPSYS along with OSVERSION

Modified:
  head/math/maxima/Makefile

Modified: head/math/maxima/Makefile
==============================================================================
--- head/math/maxima/Makefile	Wed Apr 12 17:14:25 2017	(r438390)
+++ head/math/maxima/Makefile	Wed Apr 12 17:14:30 2017	(r438391)
@@ -24,7 +24,7 @@ CONFIGURE_ARGS+=	--prefix=${PREFIX} \
 			--with-wish=${WISH} \
 			${LISPSELECT}
 
-INFO=	maxima imaxima xmaxima
+INFO=		maxima imaxima xmaxima
 
 PLIST_SUB=	BINDIR=${BINDIRECTORY}
 PLIST_SUB+=	LISPBIN=${LISPBINARY}
@@ -93,7 +93,7 @@ PLIST_SUB+=	LISPBINARY="@comment "
 MAXIMABINARY=	maxima_core
 .endif
 
-.if ${OSVERSION} < 1100000
+.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1100000
 # The older makeinfo from the base fails in 10.3
 BUILD_DEPENDS+=	${LOCALBASE}/bin/makeinfo:print/texinfo
 CONFIGURE_ENV+=	MAKEINFO="${LOCALBASE}/bin/makeinfo"


More information about the svn-ports-head mailing list