keynav is a piece of an on-going experiment to make pointer-driven interfaces easier and faster for users to operate. It lets you move the pointer quickly to most points on the screen with only a few key strokes. Ported because i was too bored writing and reading perl.
27 lines
665 B
Makefile
27 lines
665 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2009/06/06 04:44:10 landry Exp $
|
|
|
|
COMMENT= turns your keyboard into an fast pointer mover
|
|
|
|
DISTNAME= keynav-20080614.01
|
|
CATEGORIES= x11
|
|
|
|
HOMEPAGE= http://www.semicomplete.com/projects/keynav/
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= http://semicomplete.googlecode.com/files/
|
|
|
|
USE_X11= Yes
|
|
WANTLIB= X11 Xau Xdmcp Xext Xtst c
|
|
NO_REGRESS= Yes
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/keynav ${PREFIX}/bin
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/keynav
|
|
${INSTALL_DATA} ${WRKSRC}/keynavrc ${PREFIX}/share/examples/keynav/
|
|
.include <bsd.port.mk>
|