From owner-svn-ports-all@FreeBSD.ORG Thu Oct 17 01:14:17 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id F32A1D83; Thu, 17 Oct 2013 01:14:16 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) 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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E0E7F2723; Thu, 17 Oct 2013 01:14:16 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9H1EG3S010154; Thu, 17 Oct 2013 01:14:16 GMT (envelope-from amdmi3@svn.freebsd.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9H1EGB6010153; Thu, 17 Oct 2013 01:14:16 GMT (envelope-from amdmi3@svn.freebsd.org) Message-Id: <201310170114.r9H1EGB6010153@svn.freebsd.org> From: Dmitry Marakasov Date: Thu, 17 Oct 2013 01:14:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r330583 - head/audio/audiere 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: Thu, 17 Oct 2013 01:14:17 -0000 Author: amdmi3 Date: Thu Oct 17 01:14:16 2013 New Revision: 330583 URL: http://svnweb.freebsd.org/changeset/ports/330583 Log: - Support staging - Use new LIB_DEPENDS syntax Modified: head/audio/audiere/Makefile Modified: head/audio/audiere/Makefile ============================================================================== --- head/audio/audiere/Makefile Thu Oct 17 01:06:58 2013 (r330582) +++ head/audio/audiere/Makefile Thu Oct 17 01:14:16 2013 (r330583) @@ -11,7 +11,6 @@ MAINTAINER= amdmi3@FreeBSD.org COMMENT= High-level audio API GNU_CONFIGURE= yes -NO_STAGE= yes USES= gmake WANT_WX= yes USE_AUTOTOOLS= autoconf @@ -49,7 +48,7 @@ CONFIGURE_REPLACES+='/AC_CHECK_LIB/ s|du .endif .if ${PORT_OPTIONS:MCDAUDIO} -LIB_DEPENDS+= cdaudio:${PORTSDIR}/audio/libcdaudio +LIB_DEPENDS+= libcdaudio.so:${PORTSDIR}/audio/libcdaudio .else CONFIGURE_REPLACES+='/AC_CHECK_LIB/ s|cdaudio|no_&|' .endif @@ -57,14 +56,14 @@ CONFIGURE_REPLACES+='/AC_CHECK_LIB/ s|cd # since dumb is a static lib and it depends on ogg, we should # link audiere with ogg as well .if ${PORT_OPTIONS:MVORBIS} || ${PORT_OPTIONS:MDUMB} -LIB_DEPENDS+= vorbis:${PORTSDIR}/audio/libvorbis \ - ogg:${PORTSDIR}/audio/libogg +LIB_DEPENDS+= libvorbis.so:${PORTSDIR}/audio/libvorbis \ + libogg.so:${PORTSDIR}/audio/libogg .else CONFIGURE_REPLACES+='/AC_CHECK_HEADER/ s|vorbis|no_&|' .endif .if ${PORT_OPTIONS:MSPEEX} -LIB_DEPENDS+= speex:${PORTSDIR}/audio/speex +LIB_DEPENDS+= libspeex.so:${PORTSDIR}/audio/speex .else CONFIGURE_REPLACES+='/AC_CHECK_HEADER/ s|speex|no_&|' .endif @@ -75,11 +74,9 @@ post-patch: ${WRKSRC}/configure.in post-install: -.if ${PORT_OPTIONS:MDOCS} - ${MKDIR} ${DOCSDIR} + ${MKDIR} ${STAGEDIR}${DOCSDIR} .for f in ${PORTDOCS} - ${INSTALL_DATA} ${WRKSRC}/doc/${f} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/doc/${f} ${STAGEDIR}${DOCSDIR} .endfor -.endif .include