svn commit: r398561 - in head/math/octave-forge-base: . files

Stephen Montgomery-Smith stephen at FreeBSD.org
Sun Oct 4 01:33:50 UTC 2015


Author: stephen
Date: Sun Oct  4 01:33:49 2015
New Revision: 398561
URL: https://svnweb.freebsd.org/changeset/ports/398561

Log:
  - Add rmdir $prefix/lib/octave/packages to the end of the installation script.
    This is because the octave packaging process can fail to delete this
    directory when it becomes empty.
  - Update to 1.3.
  
  Submitted by:	Dmitry Marakasov <amdmi3 at amdmi3.ru>

Modified:
  head/math/octave-forge-base/Makefile
  head/math/octave-forge-base/files/load-octave-pkg.in

Modified: head/math/octave-forge-base/Makefile
==============================================================================
--- head/math/octave-forge-base/Makefile	Sun Oct  4 01:23:32 2015	(r398560)
+++ head/math/octave-forge-base/Makefile	Sun Oct  4 01:33:49 2015	(r398561)
@@ -2,8 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	octave-forge-base
-PORTVERSION=	1.2
-PORTREVISION=	6
+PORTVERSION=	1.3
 CATEGORIES=	math
 MASTER_SITES=	#none
 DISTFILES=	#none

Modified: head/math/octave-forge-base/files/load-octave-pkg.in
==============================================================================
--- head/math/octave-forge-base/files/load-octave-pkg.in	Sun Oct  4 01:23:32 2015	(r398560)
+++ head/math/octave-forge-base/files/load-octave-pkg.in	Sun Oct  4 01:33:49 2015	(r398561)
@@ -240,3 +240,8 @@ foreach my $p (@ordered_list_to_install)
   print "load-octave-pkg: octave is installing $p.\n";
   system "octave -H -q --no-site-file --eval \"pkg('install','$tardir/$p')\" > /dev/null\n";
 }
+
+# Remove directories that may have been left behind by the octave packaging
+# process.
+
+rmdir "$prefix/lib/octave/packages";


More information about the svn-ports-all mailing list