From owner-svn-ports-head@FreeBSD.ORG Sun Oct 28 06:41:48 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C50D72A1; Sun, 28 Oct 2012 06:41:48 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 915708FC08; Sun, 28 Oct 2012 06:41:48 +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 q9S6fmbW048281; Sun, 28 Oct 2012 06:41:48 GMT (envelope-from rm@svn.freebsd.org) Received: (from rm@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9S6fmPH048279; Sun, 28 Oct 2012 06:41:48 GMT (envelope-from rm@svn.freebsd.org) Message-Id: <201210280641.q9S6fmPH048279@svn.freebsd.org> From: Ruslan Mahmatkhanov Date: Sun, 28 Oct 2012 06:41:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r306539 - head/audio/lmms 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.14 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, 28 Oct 2012 06:41:49 -0000 Author: rm Date: Sun Oct 28 06:41:48 2012 New Revision: 306539 URL: http://svn.freebsd.org/changeset/ports/306539 Log: - convert to optionsng - remove shared lib versions (portlint warning) - trim Makefile header - remove indefinite article from COMMENT PR: 173022 Submitted by: rm (myself) Approved by: Rodrigo OSORIO (maintainer) Feature safe: yes Modified: head/audio/lmms/Makefile Modified: head/audio/lmms/Makefile ============================================================================== --- head/audio/lmms/Makefile Sun Oct 28 05:04:33 2012 (r306538) +++ head/audio/lmms/Makefile Sun Oct 28 06:41:48 2012 (r306539) @@ -1,9 +1,5 @@ -# New ports collection makefile for: lmms -# Date created: 04 Dec 2006 -# Whom: Jean-Yves Lefort -# +# Created by: Jean-Yves Lefort # $FreeBSD$ -# PORTNAME= lmms PORTVERSION= 0.4.13 @@ -13,16 +9,16 @@ CATEGORIES= audio MASTER_SITES= SF MAINTAINER= rodrigo@bebik.net -COMMENT= An all-in-one sequencer, drum machine, sampler, and more +COMMENT= All-in-one sequencer, drum machine, sampler, and more LICENSE= GPLv2 BUILD_DEPENDS= ${LOCALBASE}/include/ladspa.h:${PORTSDIR}/audio/ladspa -LIB_DEPENDS= FLAC.10:${PORTSDIR}/audio/flac \ - fluidsynth.1:${PORTSDIR}/audio/fluidsynth \ - samplerate.1:${PORTSDIR}/audio/libsamplerate \ - sndfile.1:${PORTSDIR}/audio/libsndfile \ - vorbis.4:${PORTSDIR}/audio/libvorbis \ +LIB_DEPENDS= FLAC:${PORTSDIR}/audio/flac \ + fluidsynth:${PORTSDIR}/audio/fluidsynth \ + samplerate:${PORTSDIR}/audio/libsamplerate \ + sndfile:${PORTSDIR}/audio/libsndfile \ + vorbis:${PORTSDIR}/audio/libvorbis \ fftw3:${PORTSDIR}/math/fftw3 \ fftw3f:${PORTSDIR}/math/fftw3-float RUN_DEPENDS= ${LOCALBASE}/share/ladspa/rdf/caps.rdf:${PORTSDIR}/audio/caps-plugins \ @@ -31,9 +27,7 @@ RUN_DEPENDS= ${LOCALBASE}/share/ladspa/r ${LOCALBASE}/share/ladspa/rdf/tap-plugins.rdf:${PORTSDIR}/audio/tap-plugins \ update-mime-database:${PORTSDIR}/misc/shared-mime-info -OPTIONS= JACK "Enable JACK support" OFF \ - PULSEAUDIO "Enable PulseAudio support" OFF \ - SDL "Enable SDL support" OFF +OPTIONS_DEFINE= JACK PULSEAUDIO SDL USE_LDCONFIG= yes USE_PKGCONFIG= build @@ -60,19 +54,19 @@ USE_DOS2UNIX= plugins/midi_import/portsm .include -.if defined(WITH_JACK) -LIB_DEPENDS+= jack.0:${PORTSDIR}/audio/jack +.if ${PORT_OPTIONS:MJACK} +LIB_DEPENDS+= jack:${PORTSDIR}/audio/jack .else CMAKE_ARGS+= -DWANT_JACK:BOOL=OFF .endif -.if defined(WITH_PULSEAUDIO) -LIB_DEPENDS+= pulse.0:${PORTSDIR}/audio/pulseaudio +.if ${PORT_OPTIONS:MPULSEAUDIO} +LIB_DEPENDS+= pulse:${PORTSDIR}/audio/pulseaudio .else CMAKE_ARGS+= -DWANT_PULSEAUDIO:BOOL=OFF .endif -.if defined(WITH_SDL) +.if ${PORT_OPTIONS:MSDL} USE_SDL= sdl .else CMAKE_ARGS+= -DWANT_SDL:BOOL=OFF