svn commit: r399098 - in head/x11-wm/plank: . files

Olivier Duchateau olivierd at FreeBSD.org
Sun Oct 11 18:23:45 UTC 2015


Author: olivierd
Date: Sun Oct 11 18:23:43 2015
New Revision: 399098
URL: https://svnweb.freebsd.org/changeset/ports/399098

Log:
  - Update to 0.10.1
  - Fix missing icons with Adwaita icons theme
  
  Changelog: http://bazaar.launchpad.net/~docky-core/plank/trunk/view/head:/NEWS#L5

Added:
  head/x11-wm/plank/files/patch-lib_Items_PlankDockItem.vala   (contents, props changed)
Modified:
  head/x11-wm/plank/Makefile
  head/x11-wm/plank/distinfo

Modified: head/x11-wm/plank/Makefile
==============================================================================
--- head/x11-wm/plank/Makefile	Sun Oct 11 17:55:01 2015	(r399097)
+++ head/x11-wm/plank/Makefile	Sun Oct 11 18:23:43 2015	(r399098)
@@ -2,9 +2,9 @@
 # $FreeBSD$
 
 PORTNAME=	plank
-PORTVERSION=	0.10.0
+PORTVERSION=	0.10.1
 CATEGORIES=	x11-wm
-MASTER_SITES=	https://launchpadlibrarian.net/216557335/ \
+MASTER_SITES=	https://launchpadlibrarian.net/220768016/ \
 	https://launchpad.net/${PORTNAME}/1.0/${PORTVERSION}/+download/
 
 MAINTAINER=	olivierd at FreeBSD.org

Modified: head/x11-wm/plank/distinfo
==============================================================================
--- head/x11-wm/plank/distinfo	Sun Oct 11 17:55:01 2015	(r399097)
+++ head/x11-wm/plank/distinfo	Sun Oct 11 18:23:43 2015	(r399098)
@@ -1,2 +1,2 @@
-SHA256 (plank-0.10.0.tar.xz) = 4023eaa59cca3ee35032c23c2b011e1cabac812b8828af9ca55e6aaa084ad203
-SIZE (plank-0.10.0.tar.xz) = 950952
+SHA256 (plank-0.10.1.tar.xz) = 04cf4205fb7fce035bf537395fbfc3cf79aea9692fb4186345fe6a06ce2ebf36
+SIZE (plank-0.10.1.tar.xz) = 951840

Added: head/x11-wm/plank/files/patch-lib_Items_PlankDockItem.vala
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/x11-wm/plank/files/patch-lib_Items_PlankDockItem.vala	Sun Oct 11 18:23:43 2015	(r399098)
@@ -0,0 +1,16 @@
+--- lib/Items/PlankDockItem.vala.orig	2015-10-07 12:34:54 UTC
++++ lib/Items/PlankDockItem.vala
+@@ -74,11 +74,11 @@ namespace Plank.Items
+ 		{
+ 			var items = new Gee.ArrayList<Gtk.MenuItem> ();
+ 			
+-			var item = create_menu_item (_("Get _Help Online..."), "help");
++			var item = create_menu_item (_("Get _Help Online..."), "help-browser");
+ 			item.activate.connect (() => Application.get_default ().activate_action ("help", null));
+ 			items.add (item);
+ 			
+-			item = create_menu_item (_("_Translate This Application..."), "locale");
++			item = create_menu_item (_("_Translate This Application..."), "preferences-desktop-locale");
+ 			item.activate.connect (() => Application.get_default ().activate_action ("translate", null));
+ 			items.add (item);
+ 			


More information about the svn-ports-all mailing list