From owner-freebsd-multimedia@FreeBSD.ORG Mon Sep 12 18:31:11 2011 Return-Path: Delivered-To: multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id ECC20106566C for ; Mon, 12 Sep 2011 18:31:10 +0000 (UTC) (envelope-from g.olgeni@colby.it) Received: from mail.colby.tv (93-62-141-58.ip22.fastwebnet.it [93.62.141.58]) by mx1.freebsd.org (Postfix) with ESMTP id 725BB8FC0C for ; Mon, 12 Sep 2011 18:31:10 +0000 (UTC) Received: from server.colby.local (localhost [127.0.0.1]) by server.colby.local (8.14.4/8.14.4) with ESMTP id p8CIJwG4028161; Mon, 12 Sep 2011 20:19:58 +0200 (CEST) (envelope-from g.olgeni@colby.it) Received: from exchange.colby.local ([192.168.1.11] helo=exchange.colby.local) with IPv4:25 by server.colby.local; 12 Sep 2011 20:19:58 +0200 Received: from backoffice.colby.local ([192.168.1.56]) by exchange.colby.local over TLS secured channel with Microsoft SMTPSVC(6.0.3790.4675); Mon, 12 Sep 2011 20:19:58 +0200 Received: from backoffice.colby.local (localhost [127.0.0.1]) by backoffice.colby.local (8.14.4/8.14.4) with ESMTP id p8CIJw00017030; Mon, 12 Sep 2011 20:19:58 +0200 (CEST) (envelope-from olgeni@backoffice.colby.local) Received: (from olgeni@localhost) by backoffice.colby.local (8.14.4/8.14.4/Submit) id p8CIJwHB017029; Mon, 12 Sep 2011 20:19:58 +0200 (CEST) (envelope-from olgeni) Date: Mon, 12 Sep 2011 20:19:58 +0200 (CEST) Message-Id: <201109121819.p8CIJwHB017029@backoffice.colby.local> To: FreeBSD-gnats-submit@freebsd.org From: Jimmy Olgeni X-send-pr-version: 3.113 X-GNATS-Notify: X-OriginalArrivalTime: 12 Sep 2011 18:19:58.0563 (UTC) FILETIME=[9456C330:01CC7178] Cc: multimedia@freebsd.org Subject: [PATCH] audio/libsndfile: update to 1.0.25 X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Sep 2011 18:31:11 -0000 >Submitter-Id: current-users >Originator: Jimmy Olgeni >Organization: >Confidential: no >Synopsis: [PATCH] audio/libsndfile: update to 1.0.25 >Severity: non-critical >Priority: low >Category: ports >Class: update >Release: FreeBSD 8.2-STABLE amd64 >Environment: System: FreeBSD backoffice 8.2-STABLE FreeBSD 8.2-STABLE #1: Sun May 15 20:37:17 CEST 2011 >Description: * Upgrade port to version 1.0.25 This version fixes CVE-2011-2696 / Secunia Advisory SA45125. http://secunia.com/advisories/45125/ * Remove CPPFLAGS from CONFIGURE_ENV following portlint's suggestion, then remove both CPPFLAGS and CONFIGURE_ENV since they don't appear to be needed anymore. Port maintainer (multimedia@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- libsndfile-1.0.25.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/audio/libsndfile/Makefile,v retrieving revision 1.53 diff -u -u -r1.53 Makefile --- Makefile 11 Aug 2011 19:19:03 -0000 1.53 +++ Makefile 12 Sep 2011 18:16:48 -0000 @@ -6,7 +6,7 @@ # PORTNAME= libsndfile -PORTVERSION= 1.0.24 +PORTVERSION= 1.0.25 CATEGORIES= audio MASTER_SITES= http://www.mega-nerd.com/libsndfile/files/ @@ -23,15 +23,14 @@ --disable-sqlite \ --disable-alsa \ --disable-octave -CONFIGURE_ENV= CPPFLAGS="-isystem /usr/include -isystem ${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" USE_LDCONFIG= yes MAN1= sndfile-concat.1 sndfile-cmp.1 sndfile-convert.1 \ sndfile-info.1 sndfile-metadata-get.1 sndfile-metadata-set.1 \ sndfile-play.1 sndfile-deinterleave.1 sndfile-interleave.1 -PORTDOCS= libsndfile.css new_file_type.HOWTO libsndfile.jpg *.html +PORTDOCS= libsndfile.css new_file_type.HOWTO libsndfile.jpg *.html \ + AUTHORS ChangeLog NEWS README OPTIONS= EXTERNAL "Enable FLAC and Ogg Vorbis support" on Index: distinfo =================================================================== RCS file: /home/pcvs/ports/audio/libsndfile/distinfo,v retrieving revision 1.28 diff -u -u -r1.28 distinfo --- distinfo 29 Mar 2011 14:03:35 -0000 1.28 +++ distinfo 12 Sep 2011 18:16:48 -0000 @@ -1,2 +1,2 @@ -SHA256 (libsndfile-1.0.24.tar.gz) = b6050e6fbfbb72c8bfbc895104697a4af1d49077a64e4846e0be7af87c9e56a4 -SIZE (libsndfile-1.0.24.tar.gz) = 963034 +SHA256 (libsndfile-1.0.25.tar.gz) = 59016dbd326abe7e2366ded5c344c853829bebfd1702ef26a07ef662d6aa4882 +SIZE (libsndfile-1.0.25.tar.gz) = 1060692 --- libsndfile-1.0.25.patch ends here ---