Date: Fri, 11 Aug 2017 08:28:11 +0000 (UTC) From: Richard Gallamore <ultima@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r447744 - in head/audio: . libltc Message-ID: <201708110828.v7B8SBKe075093@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: ultima Date: Fri Aug 11 08:28:11 2017 New Revision: 447744 URL: https://svnweb.freebsd.org/changeset/ports/447744 Log: Linear (or Longitudinal) Timecode (LTC) is an encoding of SMPTE timecode data as a Manchester-Biphase encoded audio signal. The audio signal is commonly recorded on a VTR track or other storage media. libltc provides functionality to encode and decode LTC audio from/to SMPTE or EBU timecode, including SMPTE date support. WWW: https://github.com/x42/libltc PR: 221196 Submitted by: Yuri Victorovich (maintainer) Reviewed by: matthew (mentor), mat Approved by: matthew (mentor) Differential Revision: https://reviews.freebsd.org/D11971 Added: head/audio/libltc/ head/audio/libltc/Makefile (contents, props changed) head/audio/libltc/distinfo (contents, props changed) head/audio/libltc/pkg-descr (contents, props changed) head/audio/libltc/pkg-plist (contents, props changed) Modified: head/audio/Makefile Modified: head/audio/Makefile ============================================================================== --- head/audio/Makefile Fri Aug 11 08:26:31 2017 (r447743) +++ head/audio/Makefile Fri Aug 11 08:28:11 2017 (r447744) @@ -393,6 +393,7 @@ SUBDIR += liblastfm SUBDIR += liblo SUBDIR += liblscp + SUBDIR += libltc SUBDIR += libmad SUBDIR += libmatemixer SUBDIR += libmikmod Added: head/audio/libltc/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/libltc/Makefile Fri Aug 11 08:28:11 2017 (r447744) @@ -0,0 +1,23 @@ +# Created by: Yuri Victorovich <yuri@rawbw.com> +# $FreeBSD$ + +PORTNAME= libltc +DISTVERSIONPREFIX= v +DISTVERSION= 1.3.0 +CATEGORIES= audio + +MAINTAINER= yuri@rawbw.com +COMMENT= Linear/Logitudinal Time Code (LTC) Library + +LICENSE= LGPL3 +LICENSE_FILE= ${WRKSRC}/COPYING + +USES= autoreconf gmake libtool +USE_GITHUB= yes +GH_ACCOUNT= x42 +GNU_CONFIGURE= yes +USE_LDCONFIG= yes + +INSTALL_TARGET= install-strip + +.include <bsd.port.mk> Added: head/audio/libltc/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/libltc/distinfo Fri Aug 11 08:28:11 2017 (r447744) @@ -0,0 +1,3 @@ +TIMESTAMP = 1501731257 +SHA256 (x42-libltc-v1.3.0_GH0.tar.gz) = a760e651247e5a01a62b9fd03d8edd32047ff1ec0565d396585970e9049b727c +SIZE (x42-libltc-v1.3.0_GH0.tar.gz) = 101798 Added: head/audio/libltc/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/libltc/pkg-descr Fri Aug 11 08:28:11 2017 (r447744) @@ -0,0 +1,8 @@ +Linear (or Longitudinal) Timecode (LTC) is an encoding of SMPTE timecode data +as a Manchester-Biphase encoded audio signal. The audio signal is commonly +recorded on a VTR track or other storage media. + +libltc provides functionality to encode and decode LTC audio from/to SMPTE or +EBU timecode, including SMPTE date support. + +WWW: https://github.com/x42/libltc Added: head/audio/libltc/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/libltc/pkg-plist Fri Aug 11 08:28:11 2017 (r447744) @@ -0,0 +1,7 @@ +include/ltc.h +lib/libltc.a +lib/libltc.so +lib/libltc.so.11 +lib/libltc.so.11.0.5 +libdata/pkgconfig/ltc.pc +man/man3/ltc.h.3.gz
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201708110828.v7B8SBKe075093>