From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 13 23:30:13 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9838B106564A for ; Sat, 13 Aug 2011 23:30:13 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6DE748FC08 for ; Sat, 13 Aug 2011 23:30:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p7DNUDpX061133 for ; Sat, 13 Aug 2011 23:30:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p7DNUDcl061130; Sat, 13 Aug 2011 23:30:13 GMT (envelope-from gnats) Date: Sat, 13 Aug 2011 23:30:13 GMT Message-Id: <201108132330.p7DNUDcl061130@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Niclas Zeising Cc: Subject: Re: ports/159751: update of x11-wm/scrotwm to 0.9.34 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Niclas Zeising List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Aug 2011 23:30:13 -0000 The following reply was made to PR ports/159751; it has been noted by GNATS. From: Niclas Zeising To: bug-followup@FreeBSD.org, niclas.zeising@gmail.com Cc: Subject: Re: ports/159751: update of x11-wm/scrotwm to 0.9.34 Date: Sun, 14 Aug 2011 01:16:50 +0200 This is a multi-part message in MIME format. --------------080503040705010305010003 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Here is a updated patch that makes scrotwm link against libXtst as well, since that is what upstream does. Regards! -- Niclas --------------080503040705010305010003 Content-Type: text/plain; name="x11-wm.scrotwm.update.0.9.34.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="x11-wm.scrotwm.update.0.9.34.diff" diff -urN scrotwm/Makefile scrotwm/Makefile --- scrotwm/Makefile 2011-08-14 00:49:06.000000000 +0200 +++ scrotwm/Makefile 2011-08-14 01:11:57.000000000 +0200 @@ -6,9 +6,9 @@ # PORTNAME= scrotwm -PORTVERSION= 0.9.33 +PORTVERSION= 0.9.34 CATEGORIES= x11-wm -MASTER_SITES= http://opensource.conformal.com/snapshots/scrotwm/ +MASTER_SITES= https://opensource.conformal.com/snapshots/scrotwm/ EXTRACT_SUFX= .tgz MAINTAINER= aragon@phat.za.net @@ -19,7 +19,7 @@ .include -USE_XORG= x11 xproto xrandr xt +USE_XORG= x11 xproto xrandr xt xtst MAN1= scrotwm.1 USE_LDCONFIG=yes @@ -36,7 +36,7 @@ do-build: ${CC} ${CFLAGS} -I${X11BASE}/include \ - -I${WRKSRC}/linux -lutil -L${X11BASE}/lib -lX11 -lXrandr \ + -I${WRKSRC}/linux -lutil -L${X11BASE}/lib -lX11 -lXrandr lXtst\ -o ${WRKSRC}/${PORTNAME} ${WRKSRC}/${PORTNAME}.c ${CC} ${CFLAGS} -I${X11BASE}/include -shared -fPIC \ -o ${WRKSRC}/libswmhack.so ${WRKSRC}/lib/swm_hack.c diff -urN scrotwm.ports.orig/distinfo scrotwm.ports/distinfo --- scrotwm/distinfo 2011-08-14 00:49:09.000000000 +0200 +++ scrotwm/distinfo 2011-08-14 00:45:12.000000000 +0200 @@ -1,2 +1,2 @@ -SHA256 (scrotwm-0.9.33.tgz) = 37d09ae8380bac53436db5e50bd0f4a06c865b5b28f16466fa52259b70f55550 -SIZE (scrotwm-0.9.33.tgz) = 69314 +SHA256 (scrotwm-0.9.34.tgz) = 46f055f3c1b7d32bcaaf94193fd01a727422e787e8a7afcf987db2ffdec9ada8 +SIZE (scrotwm-0.9.34.tgz) = 69755 diff -urN scrotwm/files/spawn_menu_atbottom.patch scrotwm/files/spawn_menu_atbottom.patch --- scrotwm/files/spawn_menu_atbottom.patch 2011-07-05 19:42:12.000000000 +0200 +++ scrotwm/files/spawn_menu_atbottom.patch 2011-08-14 00:57:16.000000000 +0200 @@ -1,6 +1,6 @@ ---- scrotwm.c.orig 2011-07-01 12:27:56.000000000 +0200 -+++ scrotwm.c 2011-07-01 12:29:49.000000000 +0200 -@@ -3891,14 +3891,16 @@ +--- scrotwm.c 13 Aug 2011 20:26:02 -0000 ++++ scrotwm.c 13 Aug 2011 22:56:08 -0000 +@@ -3984,14 +3984,16 @@ " -nb $bar_color" " -nf $bar_font_color" " -sb $bar_border" --------------080503040705010305010003--