svn commit: r553178 - in branches/2020Q4/devel/geany: . files

Guido Falsi madpilot at FreeBSD.org
Sat Oct 24 10:42:06 UTC 2020


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 at 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


More information about the svn-ports-all mailing list