Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 24 Oct 2020 10:42:05 +0000 (UTC)
From:      Guido Falsi <madpilot@FreeBSD.org>
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
Message-ID:  <202010241042.09OAg57T086808@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <hodong@nimfsoft.com>
  
  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



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