From owner-svn-ports-head@freebsd.org Wed Jan 20 03:04:36 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 27179A88761; Wed, 20 Jan 2016 03:04:36 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D8BE011BD; Wed, 20 Jan 2016 03:04:35 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u0K34YKt042969; Wed, 20 Jan 2016 03:04:34 GMT (envelope-from vanilla@FreeBSD.org) Received: (from vanilla@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0K34YSl042962; Wed, 20 Jan 2016 03:04:34 GMT (envelope-from vanilla@FreeBSD.org) Message-Id: <201601200304.u0K34YSl042962@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: vanilla set sender to vanilla@FreeBSD.org using -f From: "Vanilla I. Shu" Date: Wed, 20 Jan 2016 03:04:34 +0000 (UTC) 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 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jan 2016 03:04:36 -0000 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 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