Index: head/x11-wm/i3/Makefile =================================================================== --- head/x11-wm/i3/Makefile (revision 450735) +++ head/x11-wm/i3/Makefile (revision 450736) @@ -1,42 +1,43 @@ # Created by: Dennis Herrmann # $FreeBSD$ PORTNAME= i3 DISTVERSION= 4.14.1 +PORTREVISION= 1 CATEGORIES= x11-wm MASTER_SITES= http://i3wm.org/downloads/ MAINTAINER= bapt@FreeBSD.org COMMENT= Improved dynamic tiling window manager LICENSE= BSD3CLAUSE LIB_DEPENDS= libstartup-notification-1.so:x11/startup-notification \ libxcb-util.so:x11/xcb-util \ libxcb-keysyms.so:x11/xcb-util-keysyms \ libxcb-icccm.so:x11/xcb-util-wm \ libev.so:devel/libev \ libyajl.so:devel/yajl \ libcairo.so:graphics/cairo \ libpangocairo-1.0.so:x11-toolkits/pango \ libpcre.so:devel/pcre \ libxcb-cursor.so:x11/xcb-util-cursor \ libxkbcommon.so:x11/libxkbcommon \ libxcb-xrm.so:x11/xcb-util-xrm RUN_DEPENDS= p5-IPC-Run>=0:devel/p5-IPC-Run \ p5-Try-Tiny>=0:lang/p5-Try-Tiny \ p5-AnyEvent-I3>=0:devel/p5-AnyEvent-I3 USES= pkgconfig gmake iconv perl5 tar:bzip2 USE_XORG= xcb GNU_CONFIGURE= yes CONFIGURE_OUTSOURCE= yes CONFIGURE_ENV= ac_cv_path_PATH_ASCIIDOC="" USE_PERL5= run LDFLAGS+= -L${LOCALBASE}/lib ${ICONV_LIB} INSTALL_TARGET= install-strip post-install: ${INSTALL_DATA} ${WRKSRC}/man/*.1 ${STAGEDIR}${MANPREFIX}/man/man1/ .include Index: head/x11-wm/i3/files/patch-pull2849 =================================================================== --- head/x11-wm/i3/files/patch-pull2849 (nonexistent) +++ head/x11-wm/i3/files/patch-pull2849 (revision 450736) @@ -0,0 +1,27 @@ +From bfc6e1217265c8c77a8382f5c7970d049e958250 Mon Sep 17 00:00:00 2001 +From: Dan Elkouby +Date: Sun, 30 Jul 2017 18:49:42 +0300 +Subject: [PATCH] Create a new split container when switching a workspace + container to split layout + +The behavior before 52ce8c8 was to do it regardless of what layout we're +switching to. + +Fixes #2846 +--- + src/con.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/con.c b/src/con.c +index d346b9f45..94bfa6e9e 100644 +--- src/con.c.orig ++++ src/con.c +@@ -1719,7 +1719,7 @@ void con_set_layout(Con *con, layout_t layout) { + con->workspace_layout = ws_layout; + DLOG("Setting layout to %d\n", layout); + con->layout = layout; +- } else if (layout == L_STACKED || layout == L_TABBED) { ++ } else if (layout == L_STACKED || layout == L_TABBED || layout == L_SPLITV || layout == L_SPLITH) { + DLOG("Creating new split container\n"); + /* 1: create a new split container */ + Con *new = con_new(NULL, NULL); Property changes on: head/x11-wm/i3/files/patch-pull2849 ___________________________________________________________________ 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