Date: Sat, 6 Oct 2018 19:37:37 +0000 (UTC) From: Yuri Victorovich <yuri@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r481388 - in head/graphics/raster3d: . files Message-ID: <201810061937.w96JbbcG040756@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: yuri Date: Sat Oct 6 19:37:37 2018 New Revision: 481388 URL: https://svnweb.freebsd.org/changeset/ports/481388 Log: graphics/raster3d: Fix tmp directory locations. It was trying to use /usr/tmp Added: head/graphics/raster3d/files/ head/graphics/raster3d/files/patch-label3d (contents, props changed) head/graphics/raster3d/files/patch-stereo3d (contents, props changed) Modified: head/graphics/raster3d/Makefile Modified: head/graphics/raster3d/Makefile ============================================================================== --- head/graphics/raster3d/Makefile Sat Oct 6 18:40:18 2018 (r481387) +++ head/graphics/raster3d/Makefile Sat Oct 6 19:37:37 2018 (r481388) @@ -3,7 +3,7 @@ PORTNAME= raster3d DISTVERSION= 3.0.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics biology MASTER_SITES= http://skuld.bmsc.washington.edu/${PORTNAME}/ DISTNAME= Raster3D_${DISTVERSION:R}-${DISTVERSION:E} Added: head/graphics/raster3d/files/patch-label3d ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/raster3d/files/patch-label3d Sat Oct 6 19:37:37 2018 (r481388) @@ -0,0 +1,11 @@ +--- label3d.orig 2018-10-06 19:26:10 UTC ++++ label3d +@@ -39,7 +39,7 @@ if [ ! "$FONTSCALE" ]; then FONTSCALE=3. + if [ "$TMPDIR" ]; then + tmp=$TMPDIR/$$ + else +- tmp=/usr/tmp/$$ ++ tmp=/tmp/$$ + fi + #echo "DEBUG scratch files to $tmp" 1>&2 + Added: head/graphics/raster3d/files/patch-stereo3d ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/raster3d/files/patch-stereo3d Sat Oct 6 19:37:37 2018 (r481388) @@ -0,0 +1,11 @@ +--- stereo3d.orig 2018-10-06 19:31:53 UTC ++++ stereo3d +@@ -37,8 +37,6 @@ + # + if [ "$TMPDIR" ]; then + tmp=$TMPDIR/$$ +-elif [ -d /usr/tmp ]; then +- tmp=/usr/tmp/$$ + else + tmp=/tmp/$$ + fi
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201810061937.w96JbbcG040756>