View | Details | Raw Unified | Return to bug 50204
Collapse All | Expand All

(-)fluxbox.pav/Makefile (-2 / +2 lines)
Lines 7-13 Link Here
7
7
8
PORTNAME=	fluxbox
8
PORTNAME=	fluxbox
9
PORTVERSION=	0.1.14
9
PORTVERSION=	0.1.14
10
PORTREVISION=   1
10
PORTREVISION=   2
11
CATEGORIES=	x11-wm
11
CATEGORIES=	x11-wm
12
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
12
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
13
MASTER_SITE_SUBDIR=	${PORTNAME}
13
MASTER_SITE_SUBDIR=	${PORTNAME}
Lines 15-21 Link Here
15
.if defined(WITH_REMEMBER)
15
.if defined(WITH_REMEMBER)
16
PATCH_SITES=    http://www.bugfactory.org/~gav/fluxbox/
16
PATCH_SITES=    http://www.bugfactory.org/~gav/fluxbox/
17
PATCH_DIST_STRIP=   -p1
17
PATCH_DIST_STRIP=   -p1
18
PATCHFILES=	remember-0.1.14-4.gz
18
PATCHFILES=	remember-0.1.14-7.gz
19
.endif
19
.endif
20
20
21
MAINTAINER=	hendrik@scholz.net
21
MAINTAINER=	hendrik@scholz.net
(-)fluxbox.pav/distinfo (-1 / +1 lines)
Lines 1-3 Link Here
1
MD5 (fluxbox-0.1.14.tar.gz) = f097b97127461fa3f6f4af4048c75cfc
1
MD5 (fluxbox-0.1.14.tar.gz) = f097b97127461fa3f6f4af4048c75cfc
2
MD5 (remember-0.1.14-4.gz) = 437e2edd16e57a1a9f113c5e1f936709
2
MD5 (remember-0.1.14-7.gz) = b947ac97404d000377cac7ff35a7979e
3
MD5 (winsnap-0.1.14.patch) = 519a70da183a23ed88bab2f95ee07505
3
MD5 (winsnap-0.1.14.patch) = 519a70da183a23ed88bab2f95ee07505
(-)fluxbox.pav/files/patch-src-Tab.cc (+19 lines)
Line 0 Link Here
1
--- src/Tab.cc.orig	Tue Feb 25 03:00:22 2003
2
+++ src/Tab.cc	Tue Feb 25 03:01:31 2003
3
@@ -1011,14 +1011,14 @@
4
 	Fluxbox *fluxbox = Fluxbox::instance();
5
 	if (m_prev) {	//if this have a chain to "the left" (previous tab) then set it's next to this next
6
 		m_prev->m_next = m_next;
7
-		if(!m_next && !fluxbox->useTabs())//Only two tabs in list, remove tab from remaining window
8
+		if(!m_next && !m_prev->m_prev && !fluxbox->useTabs())//Only two tabs in list, remove tab from remaining window
9
 			m_prev->m_win->setTab(false);
10
 		else
11
 			tmp = m_prev;
12
 	} 
13
 	if (m_next) {	//if this have a chain to "the right" (next tab) then set it's prev to this prev
14
 		m_next->m_prev = m_prev;
15
-		if(!m_prev && !fluxbox->useTabs())//Only two tabs in list, remove tab from remaining window
16
+		if(!m_prev && !m_next->m_next && !fluxbox->useTabs())//Only two tabs in list, remove tab from remaining window
17
 			m_next->m_win->setTab(false);
18
 		else
19
 			tmp = m_next;

Return to bug 50204