From owner-svn-ports-head@freebsd.org Wed Jul 22 06:52:32 2015 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 82E1A9A8AAD; Wed, 22 Jul 2015 06:52:32 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 671CB1478; Wed, 22 Jul 2015 06:52:32 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.14.9/8.14.9) with ESMTP id t6M6qW3m094266; Wed, 22 Jul 2015 06:52:32 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.14.9/8.14.9/Submit) id t6M6qVFO094263; Wed, 22 Jul 2015 06:52:31 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <201507220652.t6M6qVFO094263@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Wed, 22 Jul 2015 06:52:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r392666 - head/audio/libgroove 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.20 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: Wed, 22 Jul 2015 06:52:32 -0000 Author: danfe Date: Wed Jul 22 06:52:30 2015 New Revision: 392666 URL: https://svnweb.freebsd.org/changeset/ports/392666 Log: - Belatedly update to version 4.2.1 - Move SDL dependency from LIB_DEPENDS into USE_SDL - Add LICENSE_FILE, fix whitespace bugs, cleanup Makefile - Augment port description text while I'm here PR: 199211 Modified: head/audio/libgroove/Makefile head/audio/libgroove/distinfo head/audio/libgroove/pkg-descr Modified: head/audio/libgroove/Makefile ============================================================================== --- head/audio/libgroove/Makefile Wed Jul 22 05:41:10 2015 (r392665) +++ head/audio/libgroove/Makefile Wed Jul 22 06:52:30 2015 (r392666) @@ -1,29 +1,29 @@ -# Created by: gahr +# Created by: Pietro Cerutti # $FreeBSD$ PORTNAME= libgroove -PORTVERSION= 4.1.1 -PORTREVISION= 2 +PORTVERSION= 4.2.1 CATEGORIES= audio MAINTAINER= ports@FreeBSD.org COMMENT= Audio dispatching library LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libavcodec.so:${PORTSDIR}/multimedia/ffmpeg \ - libchromaprint.so:${PORTSDIR}/audio/chromaprint \ + libchromaprint.so:${PORTSDIR}/audio/chromaprint \ libebur128.so:${PORTSDIR}/audio/libebur128 \ - libspeexdsp.so:${PORTSDIR}/audio/speexdsp \ - libSDL2.so:${PORTSDIR}/devel/sdl20 - -USES= cmake:outsource -USE_LDCONFIG= yes + libspeexdsp.so:${PORTSDIR}/audio/speexdsp USE_GITHUB= yes GH_ACCOUNT= andrewrk +USES= cmake:outsource +USE_SDL= sdl2 +USE_LDCONFIG= yes + PLIST_SUB+= VER1=${PORTVERSION:R:R} \ - VER3=${PORTVERSION} + VER3=${PORTVERSION} .include Modified: head/audio/libgroove/distinfo ============================================================================== --- head/audio/libgroove/distinfo Wed Jul 22 05:41:10 2015 (r392665) +++ head/audio/libgroove/distinfo Wed Jul 22 06:52:30 2015 (r392666) @@ -1,2 +1,2 @@ -SHA256 (andrewrk-libgroove-4.1.1_GH0.tar.gz) = a852936e5da65e1729bc85b20e2a6ace71c3813abd77dac44759b3db8659bea6 -SIZE (andrewrk-libgroove-4.1.1_GH0.tar.gz) = 8591724 +SHA256 (andrewrk-libgroove-4.2.1_GH0.tar.gz) = 82ba73ff44a3359f10899a11522521bdc9256b8bfad082a3fac49915e9f4d70f +SIZE (andrewrk-libgroove-4.2.1_GH0.tar.gz) = 46363 Modified: head/audio/libgroove/pkg-descr ============================================================================== --- head/audio/libgroove/pkg-descr Wed Jul 22 05:41:10 2015 (r392665) +++ head/audio/libgroove/pkg-descr Wed Jul 22 06:52:30 2015 (r392666) @@ -1,5 +1,7 @@ -Audio dispatching library. Generic sink-based interface. Provides decoding, -encoding, resampling, and gain adjustment. Perfect for the backend of a -music player. +This library provides decoding and encoding of audio on a playlist. It is +intended to be used as a backend for music player applications. That said, +it is also generic enough to be used as a backend for any streaming audio +processing utility. It provides decoding, encoding, resampling, and gain +adjustment. WWW: https://github.com/andrewrk/libgroove