From owner-svn-ports-all@freebsd.org Thu Aug 17 21:53:32 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 24BB4DD9F0C; Thu, 17 Aug 2017 21:53:32 +0000 (UTC) (envelope-from ultima@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 EFC9F668CF; Thu, 17 Aug 2017 21:53:31 +0000 (UTC) (envelope-from ultima@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7HLrVnK061136; Thu, 17 Aug 2017 21:53:31 GMT (envelope-from ultima@FreeBSD.org) Received: (from ultima@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7HLrUis061131; Thu, 17 Aug 2017 21:53:30 GMT (envelope-from ultima@FreeBSD.org) Message-Id: <201708172153.v7HLrUis061131@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ultima set sender to ultima@FreeBSD.org using -f From: Richard Gallamore Date: Thu, 17 Aug 2017 21:53:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r448198 - in head/audio: . lv2file lv2file/files X-SVN-Group: ports-head X-SVN-Commit-Author: ultima X-SVN-Commit-Paths: in head/audio: . lv2file lv2file/files X-SVN-Commit-Revision: 448198 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.23 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: Thu, 17 Aug 2017 21:53:32 -0000 Author: ultima Date: Thu Aug 17 21:53:30 2017 New Revision: 448198 URL: https://svnweb.freebsd.org/changeset/ports/448198 Log: lv2file is a simple program which you can use to apply effects to your audio files without much hassle. Possible use cases are: * When you want to apply an effect without having to open a GUI or start a project. * When you want to apply effects to a large number of files, or in an automated manner. * When you need a deterministic environment to debug a plugin. * You like everything to be on the command line. lv2file uses the LV2 plugin format (http://lv2plug.in/) for the effects it uses. WWW: https://github.com/jeremysalwen/lv2file PR: 221214 Submitted by: Yuri Victorovich (maintainer) Reviewed by: matthew (mentor) Approved by: matthew (mentor) Differential Revision: https://reviews.freebsd.org/D12058 Added: head/audio/lv2file/ head/audio/lv2file/Makefile (contents, props changed) head/audio/lv2file/distinfo (contents, props changed) head/audio/lv2file/files/ head/audio/lv2file/files/patch-Makefile (contents, props changed) head/audio/lv2file/pkg-descr (contents, props changed) Modified: head/audio/Makefile Modified: head/audio/Makefile ============================================================================== --- head/audio/Makefile Thu Aug 17 21:49:12 2017 (r448197) +++ head/audio/Makefile Thu Aug 17 21:53:30 2017 (r448198) @@ -473,6 +473,7 @@ SUBDIR += lpac SUBDIR += lua51-mpd SUBDIR += lv2 + SUBDIR += lv2file SUBDIR += lvtk SUBDIR += lxmusic SUBDIR += mac Added: head/audio/lv2file/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/lv2file/Makefile Thu Aug 17 21:53:30 2017 (r448198) @@ -0,0 +1,32 @@ +# Created by: Yuri Victorovich +# $FreeBSD$ + +PORTNAME= lv2file +DISTVERSION= 0.82-1-19 +DISTVERSIONSUFFIX= -gaed7c77 +CATEGORIES= audio + +MAINTAINER= yuri@rawbw.com +COMMENT= Simple program that apples LV2 effects to audio files + +LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= lv2>0:audio/lv2 +LIB_DEPENDS= libargtable2.so:devel/argtable \ + libserd-0.so:devel/serd \ + libsord-0.so:devel/sord \ + liblilv-0.so:audio/lilv \ + libsndfile.so:audio/libsndfile \ + libsratom-0.so:audio/sratom + +USES= gmake localbase pkgconfig +USE_GITHUB= yes +GH_ACCOUNT= jeremysalwen +PLIST_FILES= bin/lv2file man/man1/lv2file.1.gz + +post-install: + ${INSTALL_MAN} ${WRKSRC}/debian/lv2file.1 ${STAGEDIR}${MAN1PREFIX}/man/man1 + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/lv2file + +.include Added: head/audio/lv2file/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/lv2file/distinfo Thu Aug 17 21:53:30 2017 (r448198) @@ -0,0 +1,3 @@ +TIMESTAMP = 1502946273 +SHA256 (jeremysalwen-lv2file-0.82-1-19-gaed7c77_GH0.tar.gz) = d5cef1d28d53e365d72f294c3b4eb10edac8079597c81b3f7dd3460a2cba8a6c +SIZE (jeremysalwen-lv2file-0.82-1-19-gaed7c77_GH0.tar.gz) = 9977 Added: head/audio/lv2file/files/patch-Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/lv2file/files/patch-Makefile Thu Aug 17 21:53:30 2017 (r448198) @@ -0,0 +1,12 @@ +--- Makefile.orig 2014-04-06 11:34:47 UTC ++++ Makefile +@@ -1,6 +1,6 @@ +-CFLAGS = -O3 -Wall -Wextra --std=c99 `pkg-config --cflags argtable2 sndfile lilv-0` +-LDLIBS = `pkg-config --libs argtable2 sndfile lilv-0` -lm +-BINDIR = $(DESTDIR)/usr/bin ++CFLAGS += -Wall -Wextra --std=c99 `pkg-config --cflags argtable2 sndfile lilv-0` ++LDLIBS += `pkg-config --libs argtable2 sndfile lilv-0` -lm ++BINDIR = $(DESTDIR)/$(PREFIX)/bin + INSTALL_PROGRAM = install + + all: lv2file Added: head/audio/lv2file/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/lv2file/pkg-descr Thu Aug 17 21:53:30 2017 (r448198) @@ -0,0 +1,12 @@ +lv2file is a simple program which you can use to apply effects to your audio +files without much hassle. Possible use cases are: +* When you want to apply an effect without having to open a GUI or start + a project. +* When you want to apply effects to a large number of files, or in + an automated manner. +* When you need a deterministic environment to debug a plugin. +* You like everything to be on the command line. + +lv2file uses the LV2 plugin format (http://lv2plug.in/) for the effects it uses. + +WWW: https://github.com/jeremysalwen/lv2file