93653751a1
The project has several advantages over similar software: - Portable to a wide variety of platforms, since it is based on SDL and the X11 XTest Extension (Developed on FreeBSD) - It is easy to use the joystick in places where it is not usually supported - Supports keyboard and mouse emulation - Supports multiple joysticks - Handles the presence of non-joystick devices, such as USB mice/trackballs that masquerade as joysticks gracefully - Easy switching between profiles - Lightweight, with few dependencies - Comprehensive feature set (if there are features missing that are important to you, I will at least consider implementing them) - Freely available (MIT License) WWW: http://chiselapp.com/user/beyert/repository/joytran/ - Timothy Beyer beyert@cs.ucr.edu PR: ports/159325 Submitted by: Timothy Beyer <beyert@cs.ucr.edu>
27 lines
535 B
Makefile
27 lines
535 B
Makefile
# New ports collection makefile for: joytran
|
|
# Date created: 30 Jul 2011
|
|
# Whom: Timothy Beyer <beyert@cs.ucr.edu>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= joytran
|
|
PORTVERSION= 0.8.1
|
|
CATEGORIES= emulators
|
|
MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE}
|
|
|
|
MAINTAINER= beyert@cs.ucr.edu
|
|
COMMENT= Joystick to keyboard/mouse events translator written in C
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/COPYRIGHT
|
|
|
|
USE_BZIP2= yes
|
|
USE_CMAKE= yes
|
|
CMAKE_ARGS= -DLOCALBASE="${LOCALBASE}"
|
|
USE_SDL= sdl
|
|
USE_XORG= x11 xtst
|
|
|
|
PLIST_FILES= bin/joytran
|
|
|
|
.include <bsd.port.mk>
|