Changes since previous package update: Release 20100828: * Fix missing fclose in the hdhomerun_config upgrade code. * Fix random lockkey generation. * Fix const warnings. Release 20100213: * Fix socket issue under cygwin. Release 20100121: * Upgrade socket handling. * Upgrade msleep handling. * hdhomerun_config: prevent sleep on Windows machines during save operation. Release 20091024: * Expand hdhomerun_discover API to allow socket reuse. * Add multicast video support. * Fix socket leak on non-Windows platforms. * Fix possible timing inaccuracy if the system time changes. * Remove use of select() causing problems with greater than 1024 sockets. * Improvements to debug logging. Release 20090806: * Faster channel scan for US-cable. * Track TSID during channelscan for use with channel matching. * Resource-lock tuner during hdhomerun_config channel scan. * Skip discover of device ID when device ID is known. * Fix min/max conflict compiling with MythTV. * Fix possible early return from msleep. * Start streaming API updated to fall back to UDP if firmware does not support RTP. * Separate out debug disable from debug close APIs. * Speed up discovery process. * Add dynamic tuner allocation support to libhdhomerun.
27 lines
665 B
Makefile
27 lines
665 B
Makefile
# $NetBSD: Makefile,v 1.12 2011/03/15 20:27:50 jakllsch Exp $
|
|
#
|
|
|
|
DISTNAME= libhdhomerun_20100828
|
|
PKGNAME= ${DISTNAME:S/libhdhomerun_/hdhomerun_config-/}
|
|
CATEGORIES= multimedia
|
|
MASTER_SITES= http://download.silicondust.com/hdhomerun/
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= jakllsch@NetBSD.org
|
|
HOMEPAGE= http://www.silicondust.com/hdhomerun/
|
|
COMMENT= SiliconDust HDHomeRun utility
|
|
LICENSE= gnu-lgpl-v3
|
|
|
|
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"
|