From owner-svn-ports-all@FreeBSD.ORG Fri Nov 30 23:51:36 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7B5F2816; Fri, 30 Nov 2012 23:51:36 +0000 (UTC) (envelope-from sperber@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 573A38FC16; Fri, 30 Nov 2012 23:51:36 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qAUNpakN079470; Fri, 30 Nov 2012 23:51:36 GMT (envelope-from sperber@svn.freebsd.org) Received: (from sperber@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qAUNpahU079467; Fri, 30 Nov 2012 23:51:36 GMT (envelope-from sperber@svn.freebsd.org) Message-Id: <201211302351.qAUNpahU079467@svn.freebsd.org> From: Armin Pirkovitsch Date: Fri, 30 Nov 2012 23:51:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r308040 - head/audio/soundtouch 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.14 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: Fri, 30 Nov 2012 23:51:36 -0000 Author: sperber Date: Fri Nov 30 23:51:35 2012 New Revision: 308040 URL: http://svnweb.freebsd.org/changeset/ports/308040 Log: - Update to version 1.7.0 - Add MAKE_JOBS_SAFE - Convert to optionsng - Trim Makefile header PR: ports/171968 Submitted by: KATO Tsuguru Approved by: beat (mentor) Feature safe: yes Modified: head/audio/soundtouch/Makefile head/audio/soundtouch/distinfo head/audio/soundtouch/pkg-plist Modified: head/audio/soundtouch/Makefile ============================================================================== --- head/audio/soundtouch/Makefile Fri Nov 30 23:51:30 2012 (r308039) +++ head/audio/soundtouch/Makefile Fri Nov 30 23:51:35 2012 (r308040) @@ -1,12 +1,8 @@ -# New ports collection makefile for: SoundTouch -# Date created: 16 May 2005 -# Whom: Alexey Dokuchaev -# +# Created by: Alexey Dokuchaev # $FreeBSD$ -# PORTNAME= soundtouch -DISTVERSION= 1.6.0 +DISTVERSION= 1.7.0 CATEGORIES= audio MASTER_SITES= http://www.surina.net/soundtouch/ @@ -15,37 +11,37 @@ COMMENT= Open-source audio processing li LICENSE= LGPL21 -USE_AUTOTOOLS= autoconf automake libtool -USE_LDCONFIG= yes -CONFIGURE_ARGS= --enable-shared=yes -MAKE_ARGS= pkgconfigdir="${PREFIX}/libdata/pkgconfig" \ - pkgdoc_DATA="${PORTDOCS}" pkgdocdir="${DOCSDIR}" -.if !defined(NOPORTDOCS) -PORTDOCS= README.html -.endif +OPTIONS_DEFINE= INTEGER_SAMPLES DOCS +INTEGER_SAMPLES_DESC= Use integer sample format + WRKSRC= ${WRKDIR}/${PORTNAME} -OPTIONS_DEFINE= INTEGER_SAMPLES -INTEGER_SAMPLES_DESC= Use integer sample format +USE_AUTOTOOLS= libtoolize aclocal autoheader automake autoconf +ACLOCAL_ARGS= -I config/m4 +AUTOMAKE_ARGS= --add-missing --copy --foreign +USE_LDCONFIG= yes +MAKE_JOBS_SAFE= yes -.include +.include .if ${PORT_OPTIONS:MINTEGER_SAMPLES} CONFIGURE_ARGS+= --enable-integer-samples .endif post-patch: - @${REINPLACE_CMD} -E 's|-O3 ?||' \ - ${WRKSRC}/source/SoundStretch/Makefile.am \ - ${WRKSRC}/source/SoundTouch/Makefile.am -.if ${ARCH} != "i386" && ${ARCH} != "amd64" && ${ARCH} != "ia64" - @${REINPLACE_CMD} '/AM_CXXFLAGS=/s|-msse2 ||' \ - ${WRKSRC}/source/SoundTouch/Makefile.am + @${REINPLACE_CMD} -e \ + 's|^pkgdoc_DATA|#pkgdoc_DATA| ; \ + s|$$(libdir)/pkgconfig|$$(prefix)/libdata/pkgconfig|' \ + ${WRKSRC}/Makefile.am + @${FIND} ${WRKSRC}/source -name "Makefile.am" | ${XARGS} \ + ${REINPLACE_CMD} -e \ + 's|-O[0-9]|| ; \ + s|-msse||' + +post-install: +.if ${PORT_OPTIONS:MDOCS} + @${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README.html ${DOCSDIR} .endif -run-autotools: # see ${WRKSRC}/bootstrap for reference - @(cd ${CONFIGURE_WRKSRC} && ${SETENV} \ - AUTOMAKE="${AUTOMAKE} --add-missing --foreign --copy" \ - ${AUTORECONF} -fisv) - -.include +.include Modified: head/audio/soundtouch/distinfo ============================================================================== --- head/audio/soundtouch/distinfo Fri Nov 30 23:51:30 2012 (r308039) +++ head/audio/soundtouch/distinfo Fri Nov 30 23:51:35 2012 (r308040) @@ -1,2 +1,2 @@ -SHA256 (soundtouch-1.6.0.tar.gz) = 8776edaf7299ffe1e8c97285f020365a63c0e01aa4f6f7c5fd1d011c0ded278f -SIZE (soundtouch-1.6.0.tar.gz) = 94852 +SHA256 (soundtouch-1.7.0.tar.gz) = 0c94722ab995489b7816baa553a1cfd433e1005d456382e31defd068b003c848 +SIZE (soundtouch-1.7.0.tar.gz) = 96531 Modified: head/audio/soundtouch/pkg-plist ============================================================================== --- head/audio/soundtouch/pkg-plist Fri Nov 30 23:51:30 2012 (r308039) +++ head/audio/soundtouch/pkg-plist Fri Nov 30 23:51:35 2012 (r308040) @@ -5,10 +5,11 @@ include/soundtouch/FIFOSamplePipe.h include/soundtouch/STTypes.h include/soundtouch/SoundTouch.h include/soundtouch/soundtouch_config.h -@dirrm include/soundtouch -lib/libSoundTouch.a lib/libSoundTouch.la -lib/libSoundTouch.so.0 lib/libSoundTouch.so -share/aclocal/soundtouch.m4 +lib/libSoundTouch.so.0 libdata/pkgconfig/soundtouch.pc +share/aclocal/soundtouch.m4 +%%PORTDOCS%%%%DOCSDIR%%/README.html +%%PORTDOCS%%@dirrm %%DOCSDIR%% +@dirrm include/soundtouch