806174181b
This is a stabilization release that includes some important fixes. Users should feel encouraged to upgrade to 13.02 immediately, and stop using previous versions of Rosegarden. ===== Bug Fixes ===== * Use 64 for "dumb" NoteOff velocities, not 127 * Made InternalSegmentMapper handle RealTime segment delays consistently * SortingInserter now sorts stably, fixing a noteoff race in MIDI export * Fixed old code that never worked, making Rosegarden export LilyPond staff names that include transposition information * Fixed crash when changing the number of audio submasters (Tim Munro) ===== New Features ===== * LilyPond export now inserts \RemoveEmptyStaves to suppress the printing of empty staves by default * Tracks have a secondary "short label" property. The primary label is exported to LilyPond as the long staff name, eg., "Trumpet in Bb," and the secodary label is the short staff name, eg., "Tpt."
59 lines
1.7 KiB
Makefile
59 lines
1.7 KiB
Makefile
# Created by: shanee@augusta.de
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= rosegarden
|
|
PORTVERSION= 13.02
|
|
CATEGORIES= audio
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTVERSION}/
|
|
|
|
MAINTAINER= pawel@FreeBSD.org
|
|
COMMENT= General purpose music editor and sequencer suite
|
|
|
|
LICENSE= GPLv2
|
|
|
|
BUILD_DEPENDS= dssi_osc_update:${PORTSDIR}/audio/dssi \
|
|
makedepend:${PORTSDIR}/devel/makedepend
|
|
LIB_DEPENDS= asound:${PORTSDIR}/audio/alsa-lib \
|
|
FLAC:${PORTSDIR}/audio/flac \
|
|
jack:${PORTSDIR}/audio/jack \
|
|
lo:${PORTSDIR}/audio/liblo \
|
|
ogg:${PORTSDIR}/audio/libogg \
|
|
samplerate:${PORTSDIR}/audio/libsamplerate \
|
|
sndfile:${PORTSDIR}/audio/libsndfile \
|
|
vorbis:${PORTSDIR}/audio/libvorbis \
|
|
lirc_client:${PORTSDIR}/comms/lirc \
|
|
icuuc:${PORTSDIR}/devel/icu \
|
|
pthread-stubs:${PORTSDIR}/devel/libpthread-stubs \
|
|
pcre:${PORTSDIR}/devel/pcre \
|
|
yajl:${PORTSDIR}/devel/yajl \
|
|
curl:${PORTSDIR}/ftp/curl \
|
|
png15:${PORTSDIR}/graphics/png \
|
|
fftw3:${PORTSDIR}/math/fftw3 \
|
|
fftw3f:${PORTSDIR}/math/fftw3-float \
|
|
freetype:${PORTSDIR}/print/freetype2 \
|
|
expat:${PORTSDIR}/textproc/expat2 \
|
|
lrdf:${PORTSDIR}/textproc/liblrdf \
|
|
raptor2:${PORTSDIR}/textproc/raptor2 \
|
|
fontconfig:${PORTSDIR}/x11-fonts/fontconfig \
|
|
xcb:${PORTSDIR}/x11/libxcb
|
|
RUN_DEPENDS= dssi_osc_update:${PORTSDIR}/audio/dssi \
|
|
lilypond:${PORTSDIR}/print/lilypond
|
|
|
|
USE_BZIP2= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ENV+= QTLIBDIR=${QT_LIBDIR}
|
|
USE_PKGCONFIG= build
|
|
USE_GMAKE= yes
|
|
USE_GETTEXT= yes
|
|
USE_ICONV= yes
|
|
USE_XORG= ice sm x11 xau xdmcp xext xrender
|
|
USE_QT4= gui xml network corelib sql qt3support \
|
|
rcc_build moc_build uic_build linguist_build
|
|
USE_GNOME= libxml2 libxslt
|
|
MAKE_JOBS_SAFE= yes
|
|
INSTALLS_ICONS= yes
|
|
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
|
|
.include <bsd.port.mk>
|