Changes since 20080430: * Fix uninitialized pointer causing access violation error in some situations. * Extend maximum allowed wait time for upgrade upload complete message to allow for actual time required to upload. * New API for channel scan. * Add model detection and model helper functions. * Use RTP by default so network loss can be detected. * Add define to enable exporting functions when building a Windows DLL. * Report reception/network errors when using the hdhomerun_config save command. * Increase the minimum signal threshold to approx -83dBuV. * Fix segfault in hdhomerun_config when a logged channel scan is run under 64-bit Linux.
26 lines
645 B
Makefile
26 lines
645 B
Makefile
# $NetBSD: Makefile,v 1.9 2008/08/05 20:30:31 jakllsch Exp $
|
|
#
|
|
|
|
DISTNAME= libhdhomerun_20080727
|
|
PKGNAME= ${DISTNAME:S/libhdhomerun_/hdhomerun_config-/}
|
|
CATEGORIES= multimedia
|
|
MASTER_SITES= http://download.silicondust.com/hdhomerun/
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= jakllsch@kollasch.net
|
|
HOMEPAGE= http://www.silicondust.com/hdhomerun/
|
|
COMMENT= SiliconDust HDHomeRun utility
|
|
|
|
WRKSRC= ${WRKDIR}/libhdhomerun
|
|
BUILD_TARGET= hdhomerun_config
|
|
USE_LANGUAGES+= c
|
|
USE_TOOLS+= gmake
|
|
|
|
CFLAGS.SunOS+= -lsocket
|
|
|
|
INSTALLATION_DIRS= bin
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/hdhomerun_config ${PREFIX}/bin/hdhomerun_config
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|