Date: Wed, 20 Jan 2016 03:04:34 +0000 (UTC) From: "Vanilla I. Shu" <vanilla@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r406728 - in head/multimedia: . libhdhomerun libhdhomerun/files Message-ID: <201601200304.u0K34YSl042962@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: vanilla Date: Wed Jan 20 03:04:34 2016 New Revision: 406728 URL: https://svnweb.freebsd.org/changeset/ports/406728 Log: Add libhdhomerun 20150826, library and command line utility for interfacing with HDHomeRun device. PR: 206409 Submitted by: sam@middling.me.uk Added: head/multimedia/libhdhomerun/ head/multimedia/libhdhomerun/Makefile (contents, props changed) head/multimedia/libhdhomerun/distinfo (contents, props changed) head/multimedia/libhdhomerun/files/ head/multimedia/libhdhomerun/files/patch-Makefile (contents, props changed) head/multimedia/libhdhomerun/pkg-descr (contents, props changed) head/multimedia/libhdhomerun/pkg-plist (contents, props changed) Modified: head/multimedia/Makefile Modified: head/multimedia/Makefile ============================================================================== --- head/multimedia/Makefile Wed Jan 20 02:32:47 2016 (r406727) +++ head/multimedia/Makefile Wed Jan 20 03:04:34 2016 (r406728) @@ -181,6 +181,7 @@ SUBDIR += libdvdnav SUBDIR += libdvdread SUBDIR += libfame + SUBDIR += libhdhomerun SUBDIR += libkate SUBDIR += libmatroska SUBDIR += libmediaart Added: head/multimedia/libhdhomerun/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/libhdhomerun/Makefile Wed Jan 20 03:04:34 2016 (r406728) @@ -0,0 +1,25 @@ +# $FreeBSD$ + +PORTNAME= libhdhomerun +PORTVERSION= 20150826 +CATEGORIES= multimedia +MASTER_SITES= http://download.silicondust.com/hdhomerun/ +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= sam@middling.me.uk +COMMENT= Library and command line utility for interfacing with HDHomeRun device + +LICENSE= LGPL21 + +USES= gmake tar:tgz +USE_LDCONFIG= yes + +WRKSRC= ${WRKDIR}/libhdhomerun + +do-install: + @${MKDIR} ${STAGEDIR}${PREFIX}/include/libhdhomerun + ${INSTALL_PROGRAM} ${WRKSRC}/hdhomerun_config ${STAGEDIR}${PREFIX}/bin + ${INSTALL_LIB} ${WRKSRC}/libhdhomerun.so ${STAGEDIR}${PREFIX}/lib + ${INSTALL_DATA} ${WRKSRC}/*.h ${STAGEDIR}${PREFIX}/include/libhdhomerun + +.include <bsd.port.mk> Added: head/multimedia/libhdhomerun/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/libhdhomerun/distinfo Wed Jan 20 03:04:34 2016 (r406728) @@ -0,0 +1,2 @@ +SHA256 (libhdhomerun_20150826.tgz) = 907dfbd1eb82aebd8b09e7c00c21a02433e6baaacf4a4f99aa2511b1d5244baf +SIZE (libhdhomerun_20150826.tgz) = 49169 Added: head/multimedia/libhdhomerun/files/patch-Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/libhdhomerun/files/patch-Makefile Wed Jan 20 03:04:34 2016 (r406728) @@ -0,0 +1,11 @@ +--- Makefile.orig 2016-01-20 02:55:42 UTC ++++ Makefile +@@ -11,7 +11,7 @@ LIBSRCS += hdhomerun_pkt.c + LIBSRCS += hdhomerun_sock_posix.c + LIBSRCS += hdhomerun_video.c + +-CC := $(CROSS_COMPILE)gcc ++#CC := $(CROSS_COMPILE)gcc + STRIP := $(CROSS_COMPILE)strip + + CFLAGS += -Wall -O2 -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wpointer-arith Added: head/multimedia/libhdhomerun/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/libhdhomerun/pkg-descr Wed Jan 20 03:04:34 2016 (r406728) @@ -0,0 +1,12 @@ +This package supports the Silicon Dust HDHomeRun, +a networked digital TV tuner compatible with VLC and Tvheadend. + +This utility can be used for: + + * Discovering your tuner location and name + * Gathering tuner settings + * Modifying tuner settings + * Performing scans + * Performing firmware upgrades + +WWW: http://www.silicondust.com/support/downloads/linux/ Added: head/multimedia/libhdhomerun/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/libhdhomerun/pkg-plist Wed Jan 20 03:04:34 2016 (r406728) @@ -0,0 +1,17 @@ +bin/hdhomerun_config +include/libhdhomerun/hdhomerun.h +include/libhdhomerun/hdhomerun_channels.h +include/libhdhomerun/hdhomerun_channelscan.h +include/libhdhomerun/hdhomerun_control.h +include/libhdhomerun/hdhomerun_debug.h +include/libhdhomerun/hdhomerun_device.h +include/libhdhomerun/hdhomerun_device_selector.h +include/libhdhomerun/hdhomerun_discover.h +include/libhdhomerun/hdhomerun_os.h +include/libhdhomerun/hdhomerun_os_posix.h +include/libhdhomerun/hdhomerun_os_windows.h +include/libhdhomerun/hdhomerun_pkt.h +include/libhdhomerun/hdhomerun_sock.h +include/libhdhomerun/hdhomerun_types.h +include/libhdhomerun/hdhomerun_video.h +lib/libhdhomerun.so
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201601200304.u0K34YSl042962>