From owner-freebsd-ports Sat Nov 2 7:30: 6 2002 Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EF58B37B404 for ; Sat, 2 Nov 2002 07:30:02 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3161343E7B for ; Sat, 2 Nov 2002 07:30:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gA2FU2x3049414 for ; Sat, 2 Nov 2002 07:30:02 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gA2FU2UB049413; Sat, 2 Nov 2002 07:30:02 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0A2FC37B401 for ; Sat, 2 Nov 2002 07:20:31 -0800 (PST) Received: from goanna.lan.raisdorf.net (pD9E3C58D.dip.t-dialin.net [217.227.197.141]) by mx1.FreeBSD.org (Postfix) with ESMTP id E21D943E88 for ; Sat, 2 Nov 2002 07:20:21 -0800 (PST) (envelope-from hscholz@goanna.lan.raisdorf.net) Received: from goanna.lan.raisdorf.net (localhost [127.0.0.1]) by goanna.lan.raisdorf.net (8.12.6/8.12.5) with ESMTP id gA2FKEKd023864; Sat, 2 Nov 2002 16:20:14 +0100 (CET) (envelope-from hscholz@goanna.lan.raisdorf.net) Received: (from hscholz@localhost) by goanna.lan.raisdorf.net (8.12.6/8.12.6/Submit) id gA2FK9N3023863; Sat, 2 Nov 2002 16:20:09 +0100 (CET) Message-Id: <200211021520.gA2FK9N3023863@goanna.lan.raisdorf.net> Date: Sat, 2 Nov 2002 16:20:09 +0100 (CET) From: Hendrik Scholz Reply-To: Hendrik Scholz To: FreeBSD-gnats-submit@FreeBSD.org Cc: Hendrik Scholz X-Send-Pr-Version: 3.113 Subject: ports/44833: maintainer-update: x11-wm/fluxbox remember patch Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 44833 >Category: ports >Synopsis: maintainer-update: x11-wm/fluxbox remember patch >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sat Nov 02 07:30:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Hendrik Scholz >Release: FreeBSD 4.7-STABLE i386 >Organization: NetUSE AG >Environment: System: FreeBSD goanna.lan.raisdorf.net 4.7-STABLE FreeBSD 4.7-STABLE #5: Thu Oct 17 16:21:01 CEST 2002 hscholz@goanna.lan.raisdorf.net:/usr/src/sys/compile/GOANNA i386 >Description: This adds optional remember features to the fluxbox windowmanager. The patch allows to remember workspace, dimension, position, sticky state, ... for each program. In addition these things have been changed: - add WITH_REMEMBER knob - add --enable-gnome and --enable-kde flags - make xinerama default as it is stable - distinfo update download URL: http://www.raisdorf.net/files/FreeBSD/fluxbox-0.1.12remember.patch >How-To-Repeat: >Fix: --- fluxbox-0.1.12remember.patch begins here --- diff -ur fluxbox-0.1.12.orig/Makefile fluxbox/Makefile --- fluxbox-0.1.12.orig/Makefile Sat Nov 2 15:44:19 2002 +++ fluxbox/Makefile Sat Nov 2 15:55:51 2002 @@ -7,27 +7,38 @@ PORTNAME= fluxbox PORTVERSION= 0.1.12 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11-wm MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} +.if defined(WITH_REMEMBER) +PATCH_SITES= http://fluxbox.sourceforge.net/download/patches/ +PATCHFILES= unofficial-fluxbox-0.1.12-remember-patch.bz2 +PATCH_DIST_STRIP= -p1 +.endif + MAINTAINER= hendrik@scholz.net RUN_DEPENDS= bsetbg:${PORTSDIR}/x11-wm/boxtools USE_X_PREFIX= yes +.if defined(WITH_REMEMBER) +USE_GMAKE= yes +.endif GNU_CONFIGURE= yes +CONFIGURE_ARGS= --enable-gnome --enable-kde -.if defined(WITH_XINERAMA) +.if !defined(WITHOUT_XINERAMA) CONFIGURE_ARGS+= --enable-xinerama .endif MAN1= fluxbox.1 -.if !defined(WITH_XINERAMA) +.if !defined(WITHOUT_XINERAMA) pre-everything:: - @${ECHO_CMD} "To enable xinerama support define WITH_XINERAMA" + @${ECHO_CMD} "To disable xinerama support define WITHOUT_XINERAMA" + @${ECHO_CMD} "To enable the unofficial remember patch define WITH_REMEMBER" .endif .include diff -ur fluxbox-0.1.12.orig/distinfo fluxbox/distinfo --- fluxbox-0.1.12.orig/distinfo Sat Nov 2 15:44:19 2002 +++ fluxbox/distinfo Sat Nov 2 15:51:21 2002 @@ -1 +1,2 @@ MD5 (fluxbox-0.1.12.tar.gz) = f90b191af969b49be3dcf901c36d5e13 +MD5 (unofficial-fluxbox-0.1.12-remember-patch.bz2) = cec040561aba84c1ca18fcfcaba17661 --- fluxbox-0.1.12remember.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message