From owner-svn-ports-head@freebsd.org Thu Dec 7 18:20:48 2017 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 43791E8DFCB; Thu, 7 Dec 2017 18:20:48 +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 1DAC67060C; Thu, 7 Dec 2017 18:20:48 +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 vB7IKloa052358; Thu, 7 Dec 2017 18:20:47 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vB7IKklk051701; Thu, 7 Dec 2017 18:20:46 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201712071820.vB7IKklk051701@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Thu, 7 Dec 2017 18:20:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r455748 - in head/audio: . screcord-lv2 X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/audio: . screcord-lv2 X-SVN-Commit-Revision: 455748 X-SVN-Commit-Repository: ports 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.25 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: Thu, 07 Dec 2017 18:20:48 -0000 Author: yuri Date: Thu Dec 7 18:20:46 2017 New Revision: 455748 URL: https://svnweb.freebsd.org/changeset/ports/455748 Log: New port: audio/screcord-lv2: LV2 capture plugin Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D13396 Added: head/audio/screcord-lv2/ head/audio/screcord-lv2/Makefile (contents, props changed) head/audio/screcord-lv2/distinfo (contents, props changed) head/audio/screcord-lv2/pkg-descr (contents, props changed) Modified: head/audio/Makefile Modified: head/audio/Makefile ============================================================================== --- head/audio/Makefile Thu Dec 7 18:11:08 2017 (r455747) +++ head/audio/Makefile Thu Dec 7 18:20:46 2017 (r455748) @@ -725,6 +725,7 @@ SUBDIR += sbagen SUBDIR += sc3-plugins SUBDIR += schismtracker + SUBDIR += screcord-lv2 SUBDIR += scrobbler SUBDIR += sdl2_mixer SUBDIR += sdl_mixer Added: head/audio/screcord-lv2/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/screcord-lv2/Makefile Thu Dec 7 18:20:46 2017 (r455748) @@ -0,0 +1,30 @@ +# $FreeBSD$ + +PORTNAME= screcord +DISTVERSION= g20171206 +CATEGORIES= audio +PKGNAMESUFFIX= -lv2 + +MAINTAINER= yuri@FreeBSD.org +COMMENT= LV2 capture plugin + +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= lv2>0:audio/lv2 +LIB_DEPENDS= libsndfile.so:audio/libsndfile + +USES= gmake pkgconfig +USE_GITHUB= yes +GH_ACCOUNT= brummer10 +GH_PROJECT= ${PORTNAME}.lv2 +GH_TAGNAME= 36fbff9 + +PLIST_FILES= lib/lv2/sc_record.lv2/manifest.ttl \ + lib/lv2/sc_record.lv2/sc_record.so \ + lib/lv2/sc_record.lv2/sc_record.ttl + +post-install: + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/lv2/sc_record.lv2/sc_record.so + +.include Added: head/audio/screcord-lv2/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/screcord-lv2/distinfo Thu Dec 7 18:20:46 2017 (r455748) @@ -0,0 +1,3 @@ +TIMESTAMP = 1512578049 +SHA256 (brummer10-screcord.lv2-g20171206-36fbff9_GH0.tar.gz) = 8eaec5934bcf43b4557d9260c7b0c2c6d625a877185497493b87850c000d0379 +SIZE (brummer10-screcord.lv2-g20171206-36fbff9_GH0.tar.gz) = 12991 Added: head/audio/screcord-lv2/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/screcord-lv2/pkg-descr Thu Dec 7 18:20:46 2017 (r455748) @@ -0,0 +1,4 @@ +A simple LV2 capture plugin that is able to capture mono and a stereo streams, +saving them to files of any audio format supported by libsndfile. + +WWW: https://github.com/brummer10/screcord.lv2