From owner-svn-ports-all@FreeBSD.ORG Tue Jul 8 08:57:30 2014 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 ESMTPS id CB2CF21D; Tue, 8 Jul 2014 08:57:30 +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 B8EDE2B29; Tue, 8 Jul 2014 08:57:30 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s688vUZJ040098; Tue, 8 Jul 2014 08:57:30 GMT (envelope-from pawel@svn.freebsd.org) Received: (from pawel@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s688vUjr040097; Tue, 8 Jul 2014 08:57:30 GMT (envelope-from pawel@svn.freebsd.org) Message-Id: <201407080857.s688vUjr040097@svn.freebsd.org> From: Pawel Pekala Date: Tue, 8 Jul 2014 08:57:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r361202 - head/audio/pure-audio 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: Tue, 08 Jul 2014 08:57:30 -0000 Author: pawel Date: Tue Jul 8 08:57:30 2014 New Revision: 361202 URL: http://svnweb.freebsd.org/changeset/ports/361202 QAT: https://qat.redports.org/buildarchive/r361202/ Log: - Add staging support - Require liportaudio.so.2 to avoid clash with audio/portaudio - More precise BSD LICENSE Modified: head/audio/pure-audio/Makefile Modified: head/audio/pure-audio/Makefile ============================================================================== --- head/audio/pure-audio/Makefile Tue Jul 8 08:51:31 2014 (r361201) +++ head/audio/pure-audio/Makefile Tue Jul 8 08:57:30 2014 (r361202) @@ -11,15 +11,14 @@ DIST_SUBDIR= pure MAINTAINER= ports@FreeBSD.org COMMENT= Digital audio interface for the Pure language -LICENSE= BSD +LICENSE= BSD3CLAUSE -LIB_DEPENDS= libportaudio.so:${PORTSDIR}/audio/portaudio2 \ +LIB_DEPENDS= libportaudio.so.2:${PORTSDIR}/audio/portaudio2 \ libsamplerate.so:${PORTSDIR}/audio/libsamplerate \ libsndfile.so:${PORTSDIR}/audio/libsndfile \ libfftw3.so:${PORTSDIR}/math/fftw3 USES= pure -NO_STAGE= yes post-patch: @${REINPLACE_CMD} \ @@ -28,22 +27,14 @@ post-patch: ${WRKSRC}/Makefile PORTDOCS= README - PORTEXAMPLES= * OPTIONS_DEFINE= DOCS EXAMPLES -.include - post-install: -.if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR} -.endif - -.if ${PORT_OPTIONS:MEXAMPLES} - @${MKDIR} ${EXAMPLESDIR} - @(cd ${WRKSRC}/examples/ && ${COPYTREE_SHARE} . ${EXAMPLESDIR}) -.endif + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + @(cd ${WRKSRC}/examples/ && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}) .include