1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-22 20:41:26 +00:00

New port xclick version 0.1: Generates X11 mouse button click events

This commit is contained in:
Mario Sergio Fujikawa Ferreira 2007-02-21 11:30:41 +00:00
parent b6990125db
commit 62eeb3fdf3
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=185610
4 changed files with 52 additions and 0 deletions

View File

@ -257,6 +257,7 @@
SUBDIR += xcalib
SUBDIR += xcb
SUBDIR += xcb-proto
SUBDIR += xclick
SUBDIR += xclip
SUBDIR += xcmd
SUBDIR += xco

39
x11/xclick/Makefile Normal file
View File

@ -0,0 +1,39 @@
# New ports collection makefile for: click
# Date created: Ter 20 Fev 2007 07:53:32 UTC
# Whom: Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= xclick
PORTVERSION= 0.1
CATEGORIES= x11
MASTER_SITES= http://members.shaw.ca/gehrehmee/ \
http://bg.rifetech.com/
DISTNAME= click
EXTRACT_SUFX= .tgz
MAINTAINER= lioux@FreeBSD.org
COMMENT= Generates X11 mouse button click events
USE_X_PREFIX= yes
USE_XLIB= yes
PLIST_FILES= bin/${PORTNAME}
do-build:
@cd ${WRKSRC} && \
${CC} -L${X11BASE}/lib -I${X11BASE}/include click.c \
-lX11 -lXtst -o ${PORTNAME}
do-install:
@${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
.include <bsd.port.pre.mk>
# Requires XTEST extension from xorg
.if !defined(X_WINDOW_SYSTEM) || (defined(X_WINDOW_SYSTEM) && ${X_WINDOW_SYSTEM:L} != xorg)
IGNORE= cannot install: bad X_WINDOW_SYSTEM setting; xorg is required
.endif
.include <bsd.port.post.mk>

3
x11/xclick/distinfo Normal file
View File

@ -0,0 +1,3 @@
MD5 (click.tgz) = 937bf7f83881dba81c7ba696955d31c0
SHA256 (click.tgz) = cb0a289f2ada648fc3c3bc2a500c2b0fd6acbf859a5f5bc28c8af975c09424da
SIZE (click.tgz) = 608

9
x11/xclick/pkg-descr Normal file
View File

@ -0,0 +1,9 @@
[ excerpt from developer's web site ]
X Window System application which generates mouse button click
events. Perfect for xbindkeys(1).
Author: Jeremy Nickurak
WWW: http://members.shaw.ca/gehrehmee/
-- lioux@FreeBSD.org