Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 4 Oct 2015 01:33:49 +0000 (UTC)
From:      Stephen Montgomery-Smith <stephen@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r398561 - in head/math/octave-forge-base: . files
Message-ID:  <201510040133.t941XncH024873@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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";



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