Index: head/x11-fm/wcmcommander/Makefile =================================================================== --- head/x11-fm/wcmcommander/Makefile (revision 393022) +++ head/x11-fm/wcmcommander/Makefile (revision 393023) @@ -1,54 +1,55 @@ # Created by: Dmitry Marakasov # $FreeBSD$ PORTNAME= wcmcommander PORTVERSION= 0.20.0 +PORTREVISION= 1 DISTVERSIONPREFIX= release- CATEGORIES= x11-fm MAINTAINER= amdmi3@FreeBSD.org COMMENT= Multi-platform open source file manager LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USE_GITHUB= yes GH_ACCOUNT= corporateshark GH_PROJECT= WCMCommander USES= compiler:c++11-lib cmake:outsource CMAKE_ARGS= -DDATADIR="${DATADIR_REL}" USE_XORG= x11 PORTDOCS= CHANGELOG.txt README.md readme_eng.txt OPTIONS_DEFINE= FREETYPE SMB SSH DOCS OPTIONS_DEFAULT=FREETYPE SMB SSH FREETYPE_LIB_DEPENDS= libfreetype.so:${PORTSDIR}/print/freetype2 FREETYPE_CMAKE_ON= -DWITH_FREETYPE=ON FREETYPE_CMAKE_OFF= -DWITH_FREETYPE=OFF SMB_LIB_DEPENDS= libsmbclient.so:${PORTSDIR}/net/samba-libsmbclient SMB_CMAKE_ON= -DWITH_SMBCLIENT=ON SMB_CMAKE_OFF= -DWITH_SMBCLIENT=OFF SSH_LIB_DEPENDS= libssh2.so:${PORTSDIR}/security/libssh2 SSH_CMAKE_ON= -DWITH_LIBSSH2=ON SSH_CMAKE_OFF= -DWITH_LIBSSH2=OFF .include .if ${OPSYS} == FreeBSD && ${OSVERSION} < 900000 BROKEN= does not build on 8.x (lack of long long support) .endif .if ${COMPILER_TYPE} == gcc CXXFLAGS+= -D_GLIBCXX_USE_C99 # gcc c++11 support is broken on FreeBSD .endif post-install: ${MKDIR} ${STAGEDIR}${DOCSDIR} .for f in ${PORTDOCS} ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}/ .endfor .include Index: head/x11-fm/wcmcommander/files/patch-src_swl_swl_wincoreUX.cpp =================================================================== --- head/x11-fm/wcmcommander/files/patch-src_swl_swl_wincoreUX.cpp (nonexistent) +++ head/x11-fm/wcmcommander/files/patch-src_swl_swl_wincoreUX.cpp (revision 393023) @@ -0,0 +1,48 @@ +commit 2fd0f94b4ea96bf3f67d53ebda4f40bc82711bb9 +Author: Oleg Panashchenko +Date: Thu Apr 30 13:53:04 2015 -0400 + + Fixed #486 + + was a regression from 02bed4d + +diff --git src/swl/swl_wincoreUX.cpp src/swl/swl_wincoreUX.cpp +index a161e24..7926b6a 100644 +--- src/swl/swl_wincoreUX.cpp ++++ src/swl/swl_wincoreUX.cpp +@@ -1166,22 +1166,22 @@ static const char* getEventName(int id) + { + // close all popups + Win* w = GetWinByID( activeWinId ); +- //dbg_printf("FocusOut %s\n", typeid(*w).name()); +- while(w->parent) +- w=w->parent; +- ccollect wl; +- w->PopupTreeList( wl ); +- //dbg_printf("PopupTreeList size=%d\n",wl.count()); +- for(int i=0;iparent) ++ w=w->parent; ++ ccollect wl; ++ w->PopupTreeList( wl ); ++ for(int i=0;iparent) +- popup->Parent()->Command( CMD_MENU_INFO, SCMD_MENU_CANCEL, popup, 0 ); ++ Win* popup = GetWinByID( wl[i] ); ++ if(popup) ++ { ++ if(popup->parent) ++ popup->Parent()->Command( CMD_MENU_INFO, SCMD_MENU_CANCEL, popup, 0 ); ++ } ++ + } +- + } + } + Property changes on: head/x11-fm/wcmcommander/files/patch-src_swl_swl_wincoreUX.cpp ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property