From owner-svn-ports-all@FreeBSD.ORG Sat Oct 6 10:42:37 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 7B803106564A; Sat, 6 Oct 2012 10:42:37 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 6414E8FC0A; Sat, 6 Oct 2012 10:42:37 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q96Agbsw048716; Sat, 6 Oct 2012 10:42:37 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q96AgbOb048708; Sat, 6 Oct 2012 10:42:37 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201210061042.q96AgbOb048708@svn.freebsd.org> From: Baptiste Daroussin Date: Sat, 6 Oct 2012 10:42:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305354 - in head/audio: aubio cheesetracker dssi fluidsynth linuxsampler milkytracker sooperlooper X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.5 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: Sat, 06 Oct 2012 10:42:37 -0000 Author: bapt Date: Sat Oct 6 10:42:36 2012 New Revision: 305354 URL: http://svn.freebsd.org/changeset/ports/305354 Log: Convert audio/jack and fluidsynth to only build depend on pkgconf, track dependency impact Modified: head/audio/aubio/Makefile head/audio/cheesetracker/Makefile head/audio/dssi/Makefile head/audio/fluidsynth/Makefile head/audio/linuxsampler/Makefile head/audio/milkytracker/Makefile head/audio/sooperlooper/Makefile Modified: head/audio/aubio/Makefile ============================================================================== --- head/audio/aubio/Makefile Sat Oct 6 10:30:16 2012 (r305353) +++ head/audio/aubio/Makefile Sat Oct 6 10:42:36 2012 (r305354) @@ -27,6 +27,7 @@ CONFIGURE_ARGS= --disable-complex USE_GMAKE= yes USE_GNOME= gnomehack USE_LDCONFIG= yes +USE_PKGCONFIG= build CPPFLAGS+= -I${LOCALBASE}/include Modified: head/audio/cheesetracker/Makefile ============================================================================== --- head/audio/cheesetracker/Makefile Sat Oct 6 10:30:16 2012 (r305353) +++ head/audio/cheesetracker/Makefile Sat Oct 6 10:42:36 2012 (r305354) @@ -1,10 +1,5 @@ -# ex:ts=8 -# Ports collection makefile for: cheesetracker -# Date created: Jan 31, 2002 -# Whom: ijliao -# +# Created by: Ying-Chieh Liao # $FreeBSD$ -# PORTNAME= cheesetracker PORTVERSION= 0.9.15.4 @@ -24,6 +19,7 @@ LIB_DEPENDS= jack.0:${PORTSDIR}/audio/ja USE_BZIP2= yes USE_QT_VER= 3 USE_SCONS= yes +USE_PKGCONFIG= build SCONS_BUILDENV= CXX="${CXX}" QTDIR="${QT_PREFIX}" PORTEXAMPLES= beek-dolphinisland.it ll-globule.it reduz-maschizo.it \ Modified: head/audio/dssi/Makefile ============================================================================== --- head/audio/dssi/Makefile Sat Oct 6 10:30:16 2012 (r305353) +++ head/audio/dssi/Makefile Sat Oct 6 10:42:36 2012 (r305354) @@ -28,6 +28,7 @@ OPTIONS_DEFINE= QT4 USE_GNOME= gnomehack USE_GMAKE= yes +USE_PKGCONFIG= build GNU_CONFIGURE= yes MAKE_JOBS_SAFE= yes Modified: head/audio/fluidsynth/Makefile ============================================================================== --- head/audio/fluidsynth/Makefile Sat Oct 6 10:30:16 2012 (r305353) +++ head/audio/fluidsynth/Makefile Sat Oct 6 10:42:36 2012 (r305354) @@ -1,9 +1,5 @@ -# ports collection makefile for: fluidsynth -# Date created: 27 Nov 2003 -# Whom: Juha Nygard -# +# Created by: Juha Nygard # $FreeBSD$ -# PORTNAME= fluidsynth PORTVERSION= 1.1.5 @@ -20,7 +16,8 @@ OPTIONS_DEFINE= JACK ALSA DBUS LADSPA LA OPTIONS_DEFAULT= JACK USE_BZIP2= yes -USE_GNOME= glib20 pkgconfig +USE_GNOME= glib20 +USE_PKGCONFIG= build USE_CMAKE= yes CMAKE_ARGS= -Denable-ladcca:BOOL=FALSE \ -Denable-midishare:BOOL=FALSE Modified: head/audio/linuxsampler/Makefile ============================================================================== --- head/audio/linuxsampler/Makefile Sat Oct 6 10:30:16 2012 (r305353) +++ head/audio/linuxsampler/Makefile Sat Oct 6 10:42:36 2012 (r305354) @@ -1,9 +1,5 @@ -# New ports collection makefile for: linuxsampler -# Date created: 2007-01-24 -# Whom: trasz -# +# Created by: trasz # $FreeBSD$ -# PORTNAME= linuxsampler PORTVERSION= 1.0.0 @@ -33,6 +29,7 @@ USE_GMAKE= yes USE_AUTOTOOLS= libtool CONFIGURE_ENV= HAVE_UNIX98=1 USE_LDCONFIG= yes +USE_PKGCONFIG= build MAKE_JOBS_SAFE= yes MAN1= linuxsampler.1 Modified: head/audio/milkytracker/Makefile ============================================================================== --- head/audio/milkytracker/Makefile Sat Oct 6 10:30:16 2012 (r305353) +++ head/audio/milkytracker/Makefile Sat Oct 6 10:42:36 2012 (r305354) @@ -23,6 +23,7 @@ LIB_DEPENDS+= jack:${PORTSDIR}/audio/jac GNU_CONFIGURE= yes USE_SDL= sdl MAKE_JOBS_SAFE= yes +USE_PKGCONFIG= build CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib Modified: head/audio/sooperlooper/Makefile ============================================================================== --- head/audio/sooperlooper/Makefile Sat Oct 6 10:30:16 2012 (r305353) +++ head/audio/sooperlooper/Makefile Sat Oct 6 10:42:36 2012 (r305354) @@ -34,6 +34,7 @@ USE_WX= 2.6+ WX_UNICODE= yes CONFIGURE_ARGS= -with-wxconfig-path=${WX_CONFIG} USE_LDCONFIG= yes +USE_PKGCONFIG= build CFLAGS+= -I${LOCALBASE}/include CPPFLAGS+= -I${LOCALBASE}/include