svn commit: r481388 - in head/graphics/raster3d: . files
Yuri Victorovich
yuri at FreeBSD.org
Sat Oct 6 19:37:38 UTC 2018
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
More information about the svn-ports-all
mailing list