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.
17 lines
377 B
Makefile
17 lines
377 B
Makefile
# $NetBSD: options.mk,v 1.1 2012/12/02 01:21:51 cheusov Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.lirc
|
|
PKG_SUPPORTED_OPTIONS= x11
|
|
PKG_SUGGESTED_OPTIONS= x11
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
PLIST_VARS+= x11
|
|
|
|
.if !empty(PKG_OPTIONS:Mx11)
|
|
.include "../../x11/libX11/buildlink3.mk"
|
|
.include "../../x11/libSM/buildlink3.mk"
|
|
PLIST.x11= yes
|
|
.else
|
|
CONFIGURE_ARGS+= --without-x
|
|
.endif
|