From owner-svn-ports-all@freebsd.org Sat Oct 24 10:42:06 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 1B534444CD5; Sat, 24 Oct 2020 10:42:06 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CJHj974QZz4NXm; Sat, 24 Oct 2020 10:42:05 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D62DC173FC; Sat, 24 Oct 2020 10:42:05 +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 09OAg584086809; Sat, 24 Oct 2020 10:42:05 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 09OAg57T086808; Sat, 24 Oct 2020 10:42:05 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <202010241042.09OAg57T086808@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Sat, 24 Oct 2020 10:42:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r553178 - in branches/2020Q4/devel/geany: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: madpilot X-SVN-Commit-Paths: in branches/2020Q4/devel/geany: . files X-SVN-Commit-Revision: 553178 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.33 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: Sat, 24 Oct 2020 10:42:06 -0000 Author: madpilot Date: Sat Oct 24 10:42:05 2020 New Revision: 553178 URL: https://svnweb.freebsd.org/changeset/ports/553178 Log: MFH: r553166 Fix crash on close due to a signal handler on VTE widget being fired after the widget is destroyed. PR: 250403 Submitted by: Hodong Approved by: ports-secteam (joneum) Added: branches/2020Q4/devel/geany/files/ - copied from r553166, head/devel/geany/files/ Modified: branches/2020Q4/devel/geany/Makefile Directory Properties: branches/2020Q4/ (props changed) Modified: branches/2020Q4/devel/geany/Makefile ============================================================================== --- branches/2020Q4/devel/geany/Makefile Sat Oct 24 10:24:59 2020 (r553177) +++ branches/2020Q4/devel/geany/Makefile Sat Oct 24 10:42:05 2020 (r553178) @@ -3,6 +3,7 @@ PORTNAME= geany PORTVERSION= 1.36 +PORTREVISION= 1 CATEGORIES= devel editors MASTER_SITES= http://download.geany.org/ SF @@ -42,17 +43,18 @@ NLS_CONFIGURE_ENABLE= nls VTE_DESC= Embedded virtual terminal VTE_CONFIGURE_ENABLE= vte -VTE_USE= GNOME=vte THEMES_DESC= Additional color schemes THEMES_RUN_DEPENDS= ${LOCALBASE}/share/geany/colorschemes/bespin.conf:devel/geany-themes .if ${FLAVOR} == gtk2 USE_GNOME+= gtk20 +VTE_USE= GNOME=vte CONFIGURE_ARGS+= --disable-gtk3 PLIST_SUB+= GTK2="" GTK3="@comment " .elif ${FLAVOR} == gtk3 USE_GNOME+= gtk30 +VTE_USE= GNOME=vte3 CONFIGURE_ARGS+= --enable-gtk3 PLIST_SUB+= GTK2="@comment " GTK3="" .endif