Index: head/x11-fm/krusader2/Makefile =================================================================== --- head/x11-fm/krusader2/Makefile (revision 398979) +++ head/x11-fm/krusader2/Makefile (revision 398980) @@ -1,20 +1,20 @@ # Created by: Heiner # $FreeBSD$ PORTNAME= krusader DISTVERSION= 2.4.0-beta3 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= x11-fm kde MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${DISTVERSION}/ MAINTAINER= ports@FreeBSD.org COMMENT= Twin panel file manager for KDE, like midnight or norton commander LICENSE= GPLv2 # or later LICENSE_FILE= ${WRKSRC}/COPYING USES= cmake:outsource gettext tar:bzip2 USE_KDE4= kdelibs kdeprefix automoc4 USE_QT4= moc_build qmake_build rcc_build uic_build .include Index: head/x11-fm/krusader2/files/patch-git-5cb23ac =================================================================== --- head/x11-fm/krusader2/files/patch-git-5cb23ac (nonexistent) +++ head/x11-fm/krusader2/files/patch-git-5cb23ac (revision 398980) @@ -0,0 +1,20 @@ +commit 5cb23ac98046a07d5db3a52b41e3a42544eb13f9 +Author: Jan Lepper +Date: Wed Jan 2 21:38:52 2013 +0100 + + FIXED: [ 309119 ] Wrong "New directory" dialog behavior: can't clear all typed text + return QValidator::Intermediate instead of Invalid when input is empty + BUG: 309119 + + +--- krusader/Panel/panelfunc.cpp.orig 2012-10-21 12:55:54.000000000 +0200 ++++ krusader/Panel/panelfunc.cpp 2015-10-09 17:43:53.794177000 +0200 +@@ -100,7 +100,7 @@ + { + public: + virtual State validate(QString &input, int &pos) const { +- return input.isEmpty() ? Invalid : Acceptable; ++ return input.isEmpty() ? Intermediate : Acceptable; + } + }; + Property changes on: head/x11-fm/krusader2/files/patch-git-5cb23ac ___________________________________________________________________ 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