Date: Tue, 26 Feb 2013 11:20:59 +0000 (UTC) From: Alexey Dokuchaev <danfe@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r312973 - head/audio/spiralsynthmodular Message-ID: <201302261120.r1QBKxwI084963@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: danfe Date: Tue Feb 26 11:20:59 2013 New Revision: 312973 URL: http://svnweb.freebsd.org/changeset/ports/312973 Log: - Trim the Makefile header per new guidelines - Remove hardcoded shlib ABI versions from LIB_DEPENDS - Drop leading indefinite article and fix a typo in COMMENT - Synchronize port description with COMMENT line - Convert to the new generation OPTIONS framework Modified: head/audio/spiralsynthmodular/Makefile head/audio/spiralsynthmodular/pkg-descr Modified: head/audio/spiralsynthmodular/Makefile ============================================================================== --- head/audio/spiralsynthmodular/Makefile Tue Feb 26 11:02:27 2013 (r312972) +++ head/audio/spiralsynthmodular/Makefile Tue Feb 26 11:20:59 2013 (r312973) @@ -1,9 +1,5 @@ -# New ports collection makefile for: spiralsynthmodular -# Date created: 2003 Jan 30 -# Whom: David Yeske <dyeske@gmail.com> -# +# Created by: David Yeske <dyeske@gmail.com> # $FreeBSD$ -# PORTNAME= spiralsynthmodular PORTVERSION= 0.2.2a @@ -13,12 +9,12 @@ MASTER_SITES= SF/spiralmodular/spiralmod DISTNAME= spiralmodular-${PORTVERSION} MAINTAINER= ports@FreeBSD.org -COMMENT= An object orientated modular softsynth / sequencer / sampler +COMMENT= Object-oriented modular softsynth/sequencer/sampler BUILD_DEPENDS= ${LOCALBASE}/include/ladspa.h:${PORTSDIR}/audio/ladspa \ jackd:${PORTSDIR}/audio/jack -LIB_DEPENDS= fltk.1:${PORTSDIR}/x11-toolkits/fltk \ - sndfile.1:${PORTSDIR}/audio/libsndfile +LIB_DEPENDS= fltk:${PORTSDIR}/x11-toolkits/fltk \ + sndfile:${PORTSDIR}/audio/libsndfile USE_XORG= x11 GNU_CONFIGURE= yes @@ -27,22 +23,18 @@ CONFIGURE_ENV= FLTK_CONFIG="${FLTK_CONFI LIBS="${LIBS} -L${LOCALBASE}/lib ${PTHREAD_LIBS}" CPPFLAGS+= -I${LOCALBASE}/include -.if defined(WITH_OPTIMIZED_CFLAGS) -CFLAGS+= -O3 -ffast-math -.endif - WRKSRC= ${WRKDIR}/spiralmodular-0.2.2 +OPTIONS_DEFINE= OPTIMIZED_CFLAGS + .include <bsd.port.pre.mk> -.if ${ARCH} == "ia64" -BROKEN= Does not compile on ia64 +.if ${PORT_OPTIONS:MOPTIMIZED_CFLAGS} +CFLAGS+= -O3 -ffast-math .endif -pre-everything:: -.if !defined(WITH_OPTIMIZED_CFLAGS) - @${ECHO_MSG} "You can enable additional compilation optimizations" - @${ECHO_MSG} "by defining WITH_OPTIMIZED_CFLAGS" +.if ${ARCH} == "ia64" +BROKEN= Does not compile on ia64 .endif post-patch: Modified: head/audio/spiralsynthmodular/pkg-descr ============================================================================== --- head/audio/spiralsynthmodular/pkg-descr Tue Feb 26 11:02:27 2013 (r312972) +++ head/audio/spiralsynthmodular/pkg-descr Tue Feb 26 11:20:59 2013 (r312973) @@ -1,4 +1,4 @@ -SSM is an object orientated modular softsynth / sequencer / sampler. +SSM is an object-oriented modular softsynth/sequencer/sampler. You can use it in a fairly straight forward way to make tracks with, or get very experimental. Audio or control data can be freely passed
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201302261120.r1QBKxwI084963>