From owner-svn-ports-head@FreeBSD.ORG Sun Nov 24 09:25:55 2013 Return-Path: Delivered-To: svn-ports-head@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 9B922BCE; Sun, 24 Nov 2013 09:25:55 +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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8AE862843; Sun, 24 Nov 2013 09:25:55 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rAO9Pttj093551; Sun, 24 Nov 2013 09:25:55 GMT (envelope-from mva@svn.freebsd.org) Received: (from mva@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rAO9Pt5t093550; Sun, 24 Nov 2013 09:25:55 GMT (envelope-from mva@svn.freebsd.org) Message-Id: <201311240925.rAO9Pt5t093550@svn.freebsd.org> From: Marcus von Appen Date: Sun, 24 Nov 2013 09:25:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r334713 - head/audio/ecasound X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.16 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Nov 2013 09:25:55 -0000 Author: mva Date: Sun Nov 24 09:25:54 2013 New Revision: 334713 URL: http://svnweb.freebsd.org/changeset/ports/334713 Log: - Fix usage of 'python' to get rid of the implicit lang/python dependency - Fix OPTIONS Modified: head/audio/ecasound/Makefile Modified: head/audio/ecasound/Makefile ============================================================================== --- head/audio/ecasound/Makefile Sun Nov 24 09:16:33 2013 (r334712) +++ head/audio/ecasound/Makefile Sun Nov 24 09:25:54 2013 (r334713) @@ -3,6 +3,7 @@ PORTNAME= ecasound PORTVERSION= 2.9.0 +PORTREVISION= 1 CATEGORIES= audio MASTER_SITES= http://ecasound.seul.org/download/ \ http://nosignal.fi/download/ \ @@ -37,10 +38,10 @@ AUDIOFILE_CONFIGURE_ENABLE= audiofile AUDIOFILE_LIB_DEPENDS= libaudiofile.so:${PORTSDIR}/audio/libaudiofile JACK_CONFIGURE_ENABLE= jack JACK_LIB_DEPENDS= libjack.so:${PORTSDIR}/audio/jack -LO_CONFIGURE_ENABLE= liblo -LO_LIB_DEPENDS= liblo.so:${PORTSDIR}/audio/liblo -OIL_CONFIGURE_ENABLE= liboil -OIL_LIB_DEPENDS= liboil-0.3.so:${PORTSDIR}/devel/liboil +LIBLO_CONFIGURE_ENABLE= liblo +LIBLO_LIB_DEPENDS= liblo.so:${PORTSDIR}/audio/liblo +LIBOIL_CONFIGURE_ENABLE=liboil +LIBOIL_LIB_DEPENDS= liboil-0.3.so:${PORTSDIR}/devel/liboil PYTHON_CONFIGURE_ENABLE=pyecasound SAMPLERATE_CONFIGURE_ENABLE= libsamplerate SAMPLERATE_LIB_DEPENDS= libsamplerate.so:${PORTSDIR}/audio/libsamplerate @@ -50,6 +51,7 @@ SNDFILE_LIB_DEPENDS= libsndfile.so:${POR .include .if ${PORT_OPTIONS:MPYTHON} +CONFIGURE_ENV+= PYTHONPATH="${PYTHON_CMD}" USE_PYTHON= yes .endif @@ -58,5 +60,9 @@ post-patch: s| $$EXTRAGCCFLAGS||g ; \ s| $$EXTRACPPFLAGS||g ; \ s| -D_P1003_1B_VISIBLE||' ${WRKSRC}/configure +.if ${PORT_OPTIONS:MPYTHON} + @${REINPLACE_CMD} -e 's|python -c|${PYTHON_CMD} -c|' \ + ${WRKSRC}/configure +.endif .include