d4e5503dee
LIRC is a package that supports receiving and sending IR signals of the most common IR remote controls. It contains a daemon that decodes and sends IR signals, a mouse daemon that translates IR signals to mouse movements and a couple of user programs that allow to control your computer with a remote control. Tested on RHEL.
13 lines
384 B
Makefile
13 lines
384 B
Makefile
# $NetBSD: available.mk,v 1.1 2012/12/02 01:21:50 cheusov Exp $
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
# At the moment LIRC is available only for Linux. The following
|
|
# condition is here to NOT repeat supported platforms in multiple
|
|
# places, i.e. mplayer, xine, xbmc etc.
|
|
# Also, have a look at buildlink3.mk.
|
|
.if ${OPSYS} == "Linux"
|
|
LIRC_AVAILABLE= yes
|
|
.else
|
|
LIRC_AVAILABLE= no
|
|
.endif
|