From owner-svn-ports-all@freebsd.org Mon Sep 18 15:15:54 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5C64AE17495; Mon, 18 Sep 2017 15:15:54 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3021A6D46C; Mon, 18 Sep 2017 15:15:54 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v8IFFrDw001646; Mon, 18 Sep 2017 15:15:53 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v8IFFrw1001642; Mon, 18 Sep 2017 15:15:53 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201709181515.v8IFFrw1001642@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Mon, 18 Sep 2017 15:15:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r450045 - in head/x11/xfce4-terminal: . files X-SVN-Group: ports-head X-SVN-Commit-Author: madpilot X-SVN-Commit-Paths: in head/x11/xfce4-terminal: . files X-SVN-Commit-Revision: 450045 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Sep 2017 15:15:54 -0000 Author: madpilot Date: Mon Sep 18 15:15:52 2017 New Revision: 450045 URL: https://svnweb.freebsd.org/changeset/ports/450045 Log: - Update x11/xfce4-terminal to 0.8.6 - Silence USES portlint warning - Rework pkg-message, and add new informations PR: 220751 Submitted by: Olivier Duchateau Added: head/x11/xfce4-terminal/files/patch-terminal_terminal-window.c (contents, props changed) Modified: head/x11/xfce4-terminal/Makefile head/x11/xfce4-terminal/distinfo head/x11/xfce4-terminal/files/pkg-message.in Modified: head/x11/xfce4-terminal/Makefile ============================================================================== --- head/x11/xfce4-terminal/Makefile Mon Sep 18 15:11:43 2017 (r450044) +++ head/x11/xfce4-terminal/Makefile Mon Sep 18 15:15:52 2017 (r450045) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= xfce4-terminal -PORTVERSION= 0.8.4 -PORTREVISION= 1 +PORTVERSION= 0.8.6 CATEGORIES= x11 xfce MASTER_SITES= XFCE/src/apps/${PORTNAME}/${PORTVERSION:R} DIST_SUBDIR= xfce4 @@ -16,11 +15,11 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libdbus-glib-1.so:devel/dbus-glib +USES= gettext gmake pkgconfig tar:bzip2 xfce:gtk3 GNU_CONFIGURE= yes USE_GNOME= gtk30 glib20 cairo gdkpixbuf2 intltool vte3 libxml2 USE_XFCE= libmenu USE_XORG= x11 -USES= gettext gmake pkgconfig tar:bzip2 xfce:gk3 INSTALL_TARGET= install-strip SUB_FILES= pkg-message Modified: head/x11/xfce4-terminal/distinfo ============================================================================== --- head/x11/xfce4-terminal/distinfo Mon Sep 18 15:11:43 2017 (r450044) +++ head/x11/xfce4-terminal/distinfo Mon Sep 18 15:15:52 2017 (r450045) @@ -1,3 +1,3 @@ -TIMESTAMP = 1486410575 -SHA256 (xfce4/xfce4-terminal-0.8.4.tar.bz2) = c5c1163b30e7a43d56ff92a25193bf9f29ce60e6cf43e5988530df79c84cfdc8 -SIZE (xfce4/xfce4-terminal-0.8.4.tar.bz2) = 934044 +TIMESTAMP = 1500179401 +SHA256 (xfce4/xfce4-terminal-0.8.6.tar.bz2) = bc2a560409a0f0b666d1c557e991748b986ec27572a45ae88b0ee5a480d881d7 +SIZE (xfce4/xfce4-terminal-0.8.6.tar.bz2) = 952859 Added: head/x11/xfce4-terminal/files/patch-terminal_terminal-window.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/xfce4-terminal/files/patch-terminal_terminal-window.c Mon Sep 18 15:15:52 2017 (r450045) @@ -0,0 +1,13 @@ +--- terminal/terminal-window.c.orig 2017-07-05 22:57:57 UTC ++++ terminal/terminal-window.c +@@ -1879,6 +1879,10 @@ title_popover_close (GtkWidget *pop + /* close the dialog */ + gtk_widget_destroy (window->priv->title_popover); + window->priv->title_popover = NULL; ++ ++ /* focus the terminal: bug #13754 */ ++ if (G_LIKELY (window->priv->active != NULL)) ++ terminal_screen_focus (window->priv->active); + } + + Modified: head/x11/xfce4-terminal/files/pkg-message.in ============================================================================== --- head/x11/xfce4-terminal/files/pkg-message.in Mon Sep 18 15:11:43 2017 (r450044) +++ head/x11/xfce4-terminal/files/pkg-message.in Mon Sep 18 15:15:52 2017 (r450045) @@ -1,9 +1,17 @@ -To reduce the height of tabs, add the hidden 'MiscSlimTabs' option -in ~/.config/xfce4/terminal/terminalrc. +Some options could need manual change to ~/.config/xfce4/terminal/terminalrc: +To reduce the height of tabs, add the hidden 'MiscSlimTabs' option: + MiscSlimTabs=TRUE By default this option is not defined. + +If you have configured a custom color cursor you will also need to add: + +ColorCursorUseDefault=FALSE + +to have such configuration still working, otherwise reconfigure the color +in the GUI. Keep in mind, when you change an option in Preferences window, this file is overwritten.