Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 29 Jun 2018 18:09:14 +0000 (UTC)
From:      "Carlos J. Puga Medina" <cpm@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r473569 - in head/math/asymptote: . files
Message-ID:  <201806291809.w5TI9EeT026026@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: cpm
Date: Fri Jun 29 18:09:14 2018
New Revision: 473569
URL: https://svnweb.freebsd.org/changeset/ports/473569

Log:
  math/asymptote: add pkg-message for asymptote's rendering issue in 3D
  
  Asymptote with enabled hardware acceleration produces incorrect rendered
  figures in 3D. It is proven that asy has problems with the xf86-video-intel
  driver.
  
  To successfully process 3D figures or examples, it is necessary to always
  use software rendering.
  
  % env LIBGL_ALWAYS_SOFTWARE=1 asy sample.asy
  
  PR:		229043
  Submitted by:	cpm
  Approved by:	nivit (maintainer timeout, 2 weeks)

Added:
  head/math/asymptote/files/pkg-message.in   (contents, props changed)
Modified:
  head/math/asymptote/Makefile

Modified: head/math/asymptote/Makefile
==============================================================================
--- head/math/asymptote/Makefile	Fri Jun 29 18:07:29 2018	(r473568)
+++ head/math/asymptote/Makefile	Fri Jun 29 18:09:14 2018	(r473569)
@@ -3,7 +3,7 @@
 
 PORTNAME=	asymptote
 PORTVERSION=	2.44
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	math
 MASTER_SITES=	SF/${PORTNAME}/${PORTVERSION}
 DISTNAME=	${PORTNAME}-${PORTVERSION}.src
@@ -38,6 +38,7 @@ MAKE_JOBS_UNSAFE=	yes
 ALL_TARGET=	asy asy-keywords.el
 INSTALL_TARGET=	install-asy
 
+SUB_FILES=	pkg-message
 WRKSRC=		${WRKDIR}/${PORTNAME}-${PORTVERSION}
 
 OPTIONS_DEFAULT=	FFTW GSL MANPAGES READLINE

Added: head/math/asymptote/files/pkg-message.in
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/asymptote/files/pkg-message.in	Fri Jun 29 18:09:14 2018	(r473569)
@@ -0,0 +1,9 @@
+
+Asymptote with enabled hardware acceleration produces incorrect rendered
+figures in 3D. It is proven that asy has problems with the xf86-video-intel
+driver.
+
+To successfully process 3D figures or examples, it is necessary to always
+use software rendering.
+
+% env LIBGL_ALWAYS_SOFTWARE=1 asy sample.asy



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201806291809.w5TI9EeT026026>