From owner-svn-ports-head@FreeBSD.ORG Mon Feb 25 19:52:44 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 3EF1E521; Mon, 25 Feb 2013 19:52:44 +0000 (UTC) (envelope-from dbn@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 2F929236; Mon, 25 Feb 2013 19:52:44 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id r1PJqiSN000333; Mon, 25 Feb 2013 19:52:44 GMT (envelope-from dbn@svn.freebsd.org) Received: (from dbn@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id r1PJqhm9000326; Mon, 25 Feb 2013 19:52:43 GMT (envelope-from dbn@svn.freebsd.org) Message-Id: <201302251952.r1PJqhm9000326@svn.freebsd.org> From: David Naylor Date: Mon, 25 Feb 2013 19:52:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r312940 - in head/audio: . flake 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.14 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: Mon, 25 Feb 2013 19:52:44 -0000 Author: dbn Date: Mon Feb 25 19:52:42 2013 New Revision: 312940 URL: http://svnweb.freebsd.org/changeset/ports/312940 Log: Add audio/flake to the Port's Collection. The Flake encoder project was started as a way for the author to learn more about lossless audio encoding. The author chose the FLAC format because it is open and well-documented. Although the FLAC reference encoder is also free and open-source, the author's goal was to implement the standard from scratch as an independent project. Flake is licensed under the GNU LGPL. Once Flake progressed to a usable state, the author submitted the encoder to be included as part of FFmpeg. It was included and improved upon by other FFmpeg developers. Since then, Ithe author has added more features to Flake and improved the encoding speed. The author plan to add some of these features into FFmpeg as the encoder progresses. There are both benefits and drawbacks to using Flake as a FLAC encoder alternative. In its current state, Flake gives, on average, slightly better compression than the FLAC reference encoder and is about twice as fast. However, it does not currently implement all the advanced features such as tagging, cuesheets, 24-bit audio, embedded pictures, and ogg encapsulation. The author hopes to add these to Flake in future releases. WWW: http://flake-enc.sourceforge.net Approved by: bdrewery (mentor) Added: head/audio/flake/ head/audio/flake/Makefile (contents, props changed) head/audio/flake/distinfo (contents, props changed) head/audio/flake/pkg-descr (contents, props changed) Modified: head/audio/Makefile Modified: head/audio/Makefile ============================================================================== --- head/audio/Makefile Mon Feb 25 19:18:24 2013 (r312939) +++ head/audio/Makefile Mon Feb 25 19:52:42 2013 (r312940) @@ -184,6 +184,7 @@ SUBDIR += firefly SUBDIR += flac SUBDIR += flac123 + SUBDIR += flake SUBDIR += flite SUBDIR += fluidsynth SUBDIR += fluidsynth-dssi Added: head/audio/flake/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/flake/Makefile Mon Feb 25 19:52:42 2013 (r312940) @@ -0,0 +1,21 @@ +# Created by: David Naylor +# $FreeBSD$ + +PORTNAME= flake +PORTVERSION= 0.11 +CATEGORIES= audio +MASTER_SITES= SF +MASTER_SITE_SUBDIR= ${PORTNAME:L}-enc/${PORTNAME:L}/${PORTVERSION} + +MAINTAINER= dbn@FreeBSD.org +COMMENT= FLAC audio encoder + +LICENSE= LGPL21 + +HAS_CONFIGURE= yes +USE_BZIP2= yes +USE_GMAKE= yes + +PLIST_FILES= bin/flake include/flake.h lib/libflake.a + +.include Added: head/audio/flake/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/flake/distinfo Mon Feb 25 19:52:42 2013 (r312940) @@ -0,0 +1,2 @@ +SHA256 (flake-0.11.tar.bz2) = 8dd249888005c2949cb4564f02b6badb34b2a0f408a7ec7ab01e11ceca1b7f19 +SIZE (flake-0.11.tar.bz2) = 43319 Added: head/audio/flake/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/flake/pkg-descr Mon Feb 25 19:52:42 2013 (r312940) @@ -0,0 +1,20 @@ +The Flake encoder project was started as a way for the author to learn more +about lossless audio encoding. The author chose the FLAC format because it is +open and well-documented. Although the FLAC reference encoder is also free and +open-source, the author's goal was to implement the standard from scratch as an +independent project. Flake is licensed under the GNU LGPL. + +Once Flake progressed to a usable state, the author submitted the encoder to be +included as part of FFmpeg. It was included and improved upon by other FFmpeg +developers. Since then, Ithe author has added more features to Flake and +improved the encoding speed. The author plan to add some of these features into +FFmpeg as the encoder progresses. + +There are both benefits and drawbacks to using Flake as a FLAC encoder +alternative. In its current state, Flake gives, on average, slightly better +compression than the FLAC reference encoder and is about twice as fast. +However, it does not currently implement all the advanced features such as +tagging, cuesheets, 24-bit audio, embedded pictures, and ogg encapsulation. +The author hopes to add these to Flake in future releases. + +WWW: http://flake-enc.sourceforge.net