From daniel+roe=marvin@roe.ch  Tue Jan 15 19:17:14 2008
Return-Path: <daniel+roe=marvin@roe.ch>
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id E5CBD16A41B
	for <FreeBSD-gnats-submit@freebsd.org>; Tue, 15 Jan 2008 19:17:14 +0000 (UTC)
	(envelope-from daniel+roe=marvin@roe.ch)
Received: from calvin.roe.ch (calvin.roe.ch [213.144.141.26])
	by mx1.freebsd.org (Postfix) with ESMTP id A292D13C448
	for <FreeBSD-gnats-submit@freebsd.org>; Tue, 15 Jan 2008 19:17:14 +0000 (UTC)
	(envelope-from daniel+roe=marvin@roe.ch)
Received: from marvin.roe ([10.23.42.11])
	by calvin.roe.ch (envelope-from <daniel+roe=marvin@roe.ch>)
	with ESMTPS (TLSv1:AES256-SHA:256) id 1JErGU-000GFX-QF
	; Tue, 15 Jan 2008 20:16:02 +0100
Received: from marvin.roe (localhost [127.0.0.1])
	by marvin.roe (8.13.8/8.13.8) with ESMTP id m0FJIY0A063838;
	Tue, 15 Jan 2008 20:18:34 +0100 (CET)
	(envelope-from roe@marvin.roe)
Received: (from roe@localhost)
	by marvin.roe (8.13.8/8.13.8/Submit) id m0FJIXn3063821;
	Tue, 15 Jan 2008 20:18:33 +0100 (CET)
	(envelope-from roe)
Message-Id: <200801151918.m0FJIXn3063821@marvin.roe>
Date: Tue, 15 Jan 2008 20:18:33 +0100 (CET)
From: Daniel Roethlisberger <daniel@roe.ch>
Reply-To: Daniel Roethlisberger <daniel@roe.ch>
To: FreeBSD-gnats-submit@freebsd.org
Cc: daniel@roe.ch
Subject: New port: x11/swarp - simple pointer warping utility
X-Send-Pr-Version: 3.113
X-GNATS-Notify:

>Number:         119694
>Category:       ports
>Synopsis:       New port: x11/swarp - simple pointer warping utility
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    miwi
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Tue Jan 15 19:20:01 UTC 2008
>Closed-Date:    Sun Jan 20 22:46:50 UTC 2008
>Last-Modified:  Sun Jan 20 22:50:05 UTC 2008
>Originator:     Daniel Roethlisberger
>Release:        FreeBSD 6.2-RELEASE-p9 i386
>Organization:
>Environment:
System: FreeBSD marvin.roe 6.2-RELEASE-p9 FreeBSD 6.2-RELEASE-p9 #0: Thu Nov 29 04:07:33 UTC 2007 root@i386-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC i386
>Description:
Simple pointer warp is a generic pointer warping utility for X11.
It allows you to place the pointer to arbitrary x/y coordinates,
for instance from within scripts.  It is especially useful in
conjunction with scripted window managers such as wmii.

WWW: http://www.suckless.org/wiki/tools/xlib
>How-To-Repeat:
>Fix:
--- swarp-0.1.diff begins here ---
# This is a shell archive.  Save it in a file, remove anything before
# this line, and then unpack it by entering "sh file".  Note, it may
# create directories; files and directories will be owned by you and
# have default permissions.
#
# This archive contains:
#
#	swarp
#	swarp/Makefile
#	swarp/distinfo
#	swarp/pkg-descr
#
echo c - swarp
mkdir -p swarp > /dev/null 2>&1
echo x - swarp/Makefile
sed 's/^X//' >swarp/Makefile << 'END-of-swarp/Makefile'
X# Ports collection makefile for:	swarp
X# Date created:				2008-01-15
X# Whom:					Daniel Roethlisberger <daniel@roe.ch>
X#
X# $FreeBSD$
X#
X
XPORTNAME=	swarp
XPORTVERSION=	0.1
XCATEGORIES=	x11
XMASTER_SITES=	http://www.suckless.org/download/ \
X		http://mirror.roe.ch/dist/${PORTNAME}/
X
XMAINTAINER=	daniel@roe.ch
XCOMMENT=	X11 generic pointer warping utility
X
XUSE_XLIB=	yes
X
XMAKE_ARGS=	LDFLAGS="${LDFLAGS} -L${X11BASE}/lib -lX11" \
X		CFLAGS="${CFLAGS} -I${X11BASE}/include \
X			-DVERSION=\\\"${PORTVERSION}\\\"" \
X		LD=${CC}
X
XPLIST_FILES=	bin/swarp
XPORTDOCS=	README
X
Xpost-patch:
X	@${ECHO} -n > ${WRKSRC}/config.mk
X
Xpost-install:
X.if !defined(NOPORTDOCS)
X	${MKDIR} ${DOCSDIR}
X	cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR}
X.endif
X
X.include <bsd.port.mk>
END-of-swarp/Makefile
echo x - swarp/distinfo
sed 's/^X//' >swarp/distinfo << 'END-of-swarp/distinfo'
XMD5 (swarp-0.1.tar.gz) = b674dd2f33c45cbd789e4b6e09b7b55e
XSHA256 (swarp-0.1.tar.gz) = ef5730fe8ee00879cbec1e91e22a7f0f7817a63375d790d775f5b7427886d45f
XSIZE (swarp-0.1.tar.gz) = 2277
END-of-swarp/distinfo
echo x - swarp/pkg-descr
sed 's/^X//' >swarp/pkg-descr << 'END-of-swarp/pkg-descr'
XSimple pointer warp is a generic pointer warping utility for X11.
XIt allows you to place the pointer to arbitrary x/y coordinates,
Xfor instance from within scripts.  It is especially useful in
Xconjunction with scripted window managers such as wmii.
X
XWWW: http://www.suckless.org/wiki/tools/xlib
END-of-swarp/pkg-descr
exit
--- swarp-0.1.diff ends here ---


>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->miwi 
Responsible-Changed-By: miwi 
Responsible-Changed-When: Tue Jan 15 19:26:55 UTC 2008 
Responsible-Changed-Why:  
I'll take it. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=119694 
State-Changed-From-To: open->closed 
State-Changed-By: miwi 
State-Changed-When: Sun Jan 20 22:46:48 UTC 2008 
State-Changed-Why:  
New port added. Thanks! 

http://www.freebsd.org/cgi/query-pr.cgi?pr=119694 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/119694: commit references a PR
Date: Sun, 20 Jan 2008 22:47:08 +0000 (UTC)

 miwi        2008-01-20 22:47:01 UTC
 
   FreeBSD ports repository
 
   Modified files:
     x11                  Makefile 
   Added files:
     x11/swarp            Makefile distinfo pkg-descr 
   Log:
   Simple pointer warp is a generic pointer warping utility for X11.
   It allows you to place the pointer to arbitrary x/y coordinates,
   for instance from within scripts.  It is especially useful in
   conjunction with scripted window managers such as wmii.
   
   WWW: http://www.suckless.org/wiki/tools/xlib
   
   PR:             ports/119694
   Submitted by:   Daniel Roethlisberger <daniel at roe.ch>
   
   Revision  Changes    Path
   1.670     +1 -0      ports/x11/Makefile
   1.1       +36 -0     ports/x11/swarp/Makefile (new)
   1.1       +3 -0      ports/x11/swarp/distinfo (new)
   1.1       +6 -0      ports/x11/swarp/pkg-descr (new)
 _______________________________________________
 cvs-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/cvs-all
 To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
 
>Unformatted:
