From owner-svn-ports-all@freebsd.org Sun Dec 10 19:55:18 2017 Return-Path: Delivered-To: svn-ports-all@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 E43D7E99512; Sun, 10 Dec 2017 19:55:18 +0000 (UTC) (envelope-from yuri@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 A03EA7FE1C; Sun, 10 Dec 2017 19:55:18 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vBAJtH0o002652; Sun, 10 Dec 2017 19:55:17 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBAJtHX4002647; Sun, 10 Dec 2017 19:55:17 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201712101955.vBAJtHX4002647@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sun, 10 Dec 2017 19:55:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r455908 - in head/multimedia: . libuvc X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/multimedia: . libuvc X-SVN-Commit-Revision: 455908 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Dec 2017 19:55:19 -0000 Author: yuri Date: Sun Dec 10 19:55:16 2017 New Revision: 455908 URL: https://svnweb.freebsd.org/changeset/ports/455908 Log: New port: multimedia/libuvc: Cross-platform library for USB video devices Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D13391 Added: head/multimedia/libuvc/ head/multimedia/libuvc/Makefile (contents, props changed) head/multimedia/libuvc/distinfo (contents, props changed) head/multimedia/libuvc/pkg-descr (contents, props changed) head/multimedia/libuvc/pkg-plist (contents, props changed) Modified: head/multimedia/Makefile Modified: head/multimedia/Makefile ============================================================================== --- head/multimedia/Makefile Sun Dec 10 19:47:16 2017 (r455907) +++ head/multimedia/Makefile Sun Dec 10 19:55:16 2017 (r455908) @@ -210,6 +210,7 @@ SUBDIR += libsmacker SUBDIR += libtheora SUBDIR += libtuner + SUBDIR += libuvc SUBDIR += libv4l SUBDIR += libva SUBDIR += libva-intel-driver Added: head/multimedia/libuvc/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/libuvc/Makefile Sun Dec 10 19:55:16 2017 (r455908) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= libuvc +DISTVERSIONPREFIX= v +DISTVERSION= 0.0.6 +CATEGORIES= multimedia + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Cross-platform library for USB video devices + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +USES= cmake:outsource jpeg pkgconfig +USE_GITHUB= yes +GH_ACCOUNT= ktossell + +CMAKE_ARGS= -DCMAKE_BUILD_TARGET:STRING=Shared + +.include Added: head/multimedia/libuvc/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/libuvc/distinfo Sun Dec 10 19:55:16 2017 (r455908) @@ -0,0 +1,3 @@ +TIMESTAMP = 1512535259 +SHA256 (ktossell-libuvc-v0.0.6_GH0.tar.gz) = 42175a53c1c704365fdc782b44233925e40c9344fbb7f942181c1090f06e2873 +SIZE (ktossell-libuvc-v0.0.6_GH0.tar.gz) = 95598 Added: head/multimedia/libuvc/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/libuvc/pkg-descr Sun Dec 10 19:55:16 2017 (r455908) @@ -0,0 +1,6 @@ +libuvc is a cross-platform library for USB video devices, built atop libusb. +It enables fine-grained control over USB video devices exporting the standard +USB Video Class (UVC) interface, enabling developers to write drivers for +previously unsupported devices, or just access UVC devices in a generic fashion. + +WWW: https://int80k.com/libuvc Added: head/multimedia/libuvc/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/libuvc/pkg-plist Sun Dec 10 19:55:16 2017 (r455908) @@ -0,0 +1,8 @@ +include/libuvc/libuvc.h +include/libuvc/libuvc_config.h +lib/cmake/libuvc/libuvcConfig.cmake +lib/cmake/libuvc/libuvcConfigVersion.cmake +lib/cmake/libuvc/libuvcTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/libuvc/libuvcTargets.cmake +lib/libuvc.so +libdata/pkgconfig/libuvc.pc