From owner-svn-ports-all@FreeBSD.ORG Wed May 28 17:51:33 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BAFF18D9; Wed, 28 May 2014 17:51:33 +0000 (UTC) Received: from svn.freebsd.org (svn.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 9D09D21CD; Wed, 28 May 2014 17:51:33 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s4SHpX6i084746; Wed, 28 May 2014 17:51:33 GMT (envelope-from naddy@svn.freebsd.org) Received: (from naddy@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s4SHpWQG084735; Wed, 28 May 2014 17:51:32 GMT (envelope-from naddy@svn.freebsd.org) Message-Id: <201405281751.s4SHpWQG084735@svn.freebsd.org> From: Christian Weisgerber Date: Wed, 28 May 2014 17:51:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r355645 - in head/audio/libao: . files X-SVN-Group: ports-head 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.18 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: Wed, 28 May 2014 17:51:33 -0000 Author: naddy Date: Wed May 28 17:51:32 2014 New Revision: 355645 URL: http://svnweb.freebsd.org/changeset/ports/355645 QAT: https://qat.redports.org/buildarchive/r355645/ Log: Update to 1.2.0. No user-visible changes. Switch to USES=libtool:keepla. Added: head/audio/libao/files/patch-src_plugins_pulse_Makefile.in (contents, props changed) Modified: head/audio/libao/Makefile head/audio/libao/distinfo head/audio/libao/files/patch-src_plugins_Makefile.in (contents, props changed) head/audio/libao/pkg-descr head/audio/libao/pkg-plist Modified: head/audio/libao/Makefile ============================================================================== --- head/audio/libao/Makefile Wed May 28 17:43:27 2014 (r355644) +++ head/audio/libao/Makefile Wed May 28 17:51:32 2014 (r355645) @@ -2,19 +2,20 @@ # $FreeBSD$ PORTNAME= libao -PORTVERSION= 1.1.0 -PORTREVISION= 1 +PORTVERSION= 1.2.0 CATEGORIES= audio MASTER_SITES= http://downloads.xiph.org/releases/ao/ MAINTAINER= naddy@FreeBSD.org COMMENT= Portable audio output library -USES= pathfix pkgconfig -USE_AUTOTOOLS= libtool +USES= libtool:keepla pathfix pkgconfig USE_LDCONFIG= yes GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-arts +CONFIGURE_ARGS= --enable-static \ + --disable-arts +# do not install +MAKE_ARGS= ckport_DATA="" OPTIONS_DEFINE= DOCS ESOUND NAS PULSEAUDIO OPTIONS_SUB= yes Modified: head/audio/libao/distinfo ============================================================================== --- head/audio/libao/distinfo Wed May 28 17:43:27 2014 (r355644) +++ head/audio/libao/distinfo Wed May 28 17:51:32 2014 (r355645) @@ -1,2 +1,2 @@ -SHA256 (libao-1.1.0.tar.gz) = 29de5bb9b1726ba890455ef7e562d877df87811febb0d99ee69164b88c171bd4 -SIZE (libao-1.1.0.tar.gz) = 397102 +SHA256 (libao-1.2.0.tar.gz) = 03ad231ad1f9d64b52474392d63c31197b0bc7bd416e58b1c10a329a5ed89caf +SIZE (libao-1.2.0.tar.gz) = 464596 Modified: head/audio/libao/files/patch-src_plugins_Makefile.in ============================================================================== --- head/audio/libao/files/patch-src_plugins_Makefile.in Wed May 28 17:43:27 2014 (r355644) +++ head/audio/libao/files/patch-src_plugins_Makefile.in Wed May 28 17:51:32 2014 (r355645) @@ -1,12 +1,11 @@ -$FreeBSD$ ---- src/plugins/Makefile.in.orig 2010-06-05 15:49:54.000000000 +0200 -+++ src/plugins/Makefile.in 2010-06-05 15:50:28.000000000 +0200 -@@ -295,7 +295,7 @@ $(RECURSIVE_TARGETS): +--- src/plugins/Makefile.in.orig 2014-05-28 16:19:02.000000000 +0200 ++++ src/plugins/Makefile.in 2014-05-28 16:25:33.000000000 +0200 +@@ -388,7 +388,7 @@ $(am__recursive_targets): else \ local_target="$$target"; \ fi; \ -- (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ -+ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) LIBTOOL="$(LIBTOOL) --tag=disable-static" $$local_target) \ +- ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ ++ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) AM_LIBTOOLFLAGS="--tag=disable-static" $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ Added: head/audio/libao/files/patch-src_plugins_pulse_Makefile.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/libao/files/patch-src_plugins_pulse_Makefile.in Wed May 28 17:51:32 2014 (r355645) @@ -0,0 +1,11 @@ +--- src/plugins/pulse/Makefile.in.orig 2014-05-28 17:53:30.000000000 +0200 ++++ src/plugins/pulse/Makefile.in 2014-05-28 17:58:05.000000000 +0200 +@@ -348,7 +348,7 @@ AUTOMAKE_OPTIONS = foreign + @HAVE_PULSE_TRUE@pulseltlibs = libpulse.la + @HAVE_PULSE_FALSE@pulsesources = + @HAVE_PULSE_TRUE@pulsesources = ao_pulse.c +-INCLUDES = -I$(top_builddir)/include/ao -I$(top_srcdir)/include ++INCLUDES = -I$(top_builddir)/include/ao -I$(top_srcdir)/include @PULSE_CFLAGS@ + lib_LTLIBRARIES = $(pulseltlibs) + libpulse_la_LDFLAGS = @PLUGIN_LDFLAGS@ + libpulse_la_LIBADD = @PULSE_LIBS@ Modified: head/audio/libao/pkg-descr ============================================================================== --- head/audio/libao/pkg-descr Wed May 28 17:43:27 2014 (r355644) +++ head/audio/libao/pkg-descr Wed May 28 17:51:32 2014 (r355645) @@ -8,8 +8,7 @@ On FreeBSD, it currently supports: * OSS (Open Sound System) And optionally: * ESD (ESounD or Enlightened Sound Daemon) - * aRts (KDE sound server) * NAS (Network Audio System) * PulseAudio -WWW: http://www.xiph.org/ao/ +WWW: https://www.xiph.org/ao/ Modified: head/audio/libao/pkg-plist ============================================================================== --- head/audio/libao/pkg-plist Wed May 28 17:43:27 2014 (r355644) +++ head/audio/libao/pkg-plist Wed May 28 17:51:32 2014 (r355645) @@ -5,6 +5,7 @@ lib/libao.a lib/libao.la lib/libao.so lib/libao.so.4 +lib/libao.so.4.1.0 lib/ao/plugins-4/liboss.la lib/ao/plugins-4/liboss.so %%ESOUND%%lib/ao/plugins-4/libesd.la