Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 1 Oct 2015 17:07:49 +0000 (UTC)
From:      Nicola Vitale <nivit@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r398372 - in head/deskutils/shutter: . files
Message-ID:  <201510011707.t91H7ncE098142@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: nivit
Date: Thu Oct  1 17:07:48 2015
New Revision: 398372
URL: https://svnweb.freebsd.org/changeset/ports/398372

Log:
  - Fix runtime error:
  
  Global symbol "@args" requires explicit package name at /usr/local/share/shutter/resources/modules/Shutter/App/HelperFunctions.pm line 56.
  Global symbol "@args" requires explicit package name at /usr/local/share/shutter/resources/modules/Shutter/App/HelperFunctions.pm line 57.
  Compilation failed in require at /usr/local/bin/shutter line 148.
  
  See also: See also: https://bugs.launchpad.net/shutter/+bug/1495163/comments/2
  
  - Bump PORTREVISION
  
  Reviewed by:	feld
  MFH:	2015Q3

Modified:
  head/deskutils/shutter/Makefile
  head/deskutils/shutter/files/patch-CVE-2015-0854

Modified: head/deskutils/shutter/Makefile
==============================================================================
--- head/deskutils/shutter/Makefile	Thu Oct  1 16:54:17 2015	(r398371)
+++ head/deskutils/shutter/Makefile	Thu Oct  1 17:07:48 2015	(r398372)
@@ -3,7 +3,7 @@
 
 PORTNAME=	shutter
 PORTVERSION=	0.93.1
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	deskutils
 MASTER_SITES=	http://shutter-project.org/wp-content/uploads/releases/tars/
 

Modified: head/deskutils/shutter/files/patch-CVE-2015-0854
==============================================================================
--- head/deskutils/shutter/files/patch-CVE-2015-0854	Thu Oct  1 16:54:17 2015	(r398371)
+++ head/deskutils/shutter/files/patch-CVE-2015-0854	Thu Oct  1 17:07:48 2015	(r398372)
@@ -5,7 +5,7 @@
  sub xdg_open {
  	my ( $self, $dialog, $link, $user_data ) = @_;
 -	system("xdg-open $link");
-+	@args = ("xdg-open", "$link");
++	my @args = ("xdg-open", "$link");
 +	system(@args);
  	if($?){
  		my $response = $self->{_dialogs}->dlg_error_message( 



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