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>
This commit is contained in:
parent
dbee938e95
commit
f500436b47
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=205944
4 changed files with 46 additions and 0 deletions
|
@ -272,6 +272,7 @@
|
|||
SUBDIR += smproxy
|
||||
SUBDIR += stalonetray
|
||||
SUBDIR += startup-notification
|
||||
SUBDIR += swarp
|
||||
SUBDIR += sxpc
|
||||
SUBDIR += temperature.app
|
||||
SUBDIR += terminal.app
|
||||
|
|
36
x11/swarp/Makefile
Normal file
36
x11/swarp/Makefile
Normal file
|
@ -0,0 +1,36 @@
|
|||
# Ports collection makefile for: swarp
|
||||
# Date created: 2008-01-15
|
||||
# Whom: Daniel Roethlisberger <daniel@roe.ch>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= swarp
|
||||
PORTVERSION= 0.1
|
||||
CATEGORIES= x11
|
||||
MASTER_SITES= http://www.suckless.org/download/ \
|
||||
http://mirror.roe.ch/dist/${PORTNAME}/
|
||||
|
||||
MAINTAINER= daniel@roe.ch
|
||||
COMMENT= X11 generic pointer warping utility
|
||||
|
||||
USE_XLIB= yes
|
||||
|
||||
MAKE_ARGS= LDFLAGS="${LDFLAGS} -L${X11BASE}/lib -lX11" \
|
||||
CFLAGS="${CFLAGS} -I${X11BASE}/include \
|
||||
-DVERSION=\\\"${PORTVERSION}\\\"" \
|
||||
LD=${CC}
|
||||
|
||||
PLIST_FILES= bin/swarp
|
||||
PORTDOCS= README
|
||||
|
||||
post-patch:
|
||||
@${ECHO} -n > ${WRKSRC}/config.mk
|
||||
|
||||
post-install:
|
||||
.if !defined(NOPORTDOCS)
|
||||
${MKDIR} ${DOCSDIR}
|
||||
cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR}
|
||||
.endif
|
||||
|
||||
.include <bsd.port.mk>
|
3
x11/swarp/distinfo
Normal file
3
x11/swarp/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
MD5 (swarp-0.1.tar.gz) = b674dd2f33c45cbd789e4b6e09b7b55e
|
||||
SHA256 (swarp-0.1.tar.gz) = ef5730fe8ee00879cbec1e91e22a7f0f7817a63375d790d775f5b7427886d45f
|
||||
SIZE (swarp-0.1.tar.gz) = 2277
|
6
x11/swarp/pkg-descr
Normal file
6
x11/swarp/pkg-descr
Normal file
|
@ -0,0 +1,6 @@
|
|||
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
|
Loading…
Reference in a new issue