[Midnightbsd-cvs] mports [24455] trunk/audio: add a musescore port
laffer1 at midnightbsd.org
laffer1 at midnightbsd.org
Wed Oct 10 20:32:03 EDT 2018
Revision: 24455
http://svnweb.midnightbsd.org/mports/?rev=24455
Author: laffer1
Date: 2018-10-10 20:32:02 -0400 (Wed, 10 Oct 2018)
Log Message:
-----------
add a musescore port
Modified Paths:
--------------
trunk/audio/Makefile
Added Paths:
-----------
trunk/audio/musescore/
trunk/audio/musescore/Makefile
trunk/audio/musescore/distinfo
trunk/audio/musescore/files/
trunk/audio/musescore/files/patch-CMakeLists.txt
trunk/audio/musescore/files/patch-mscore_CMakeLists.txt
trunk/audio/musescore/files/patch-thirdparty_qzip_qzip.cpp
trunk/audio/musescore/pkg-descr
trunk/audio/musescore/pkg-plist
Modified: trunk/audio/Makefile
===================================================================
--- trunk/audio/Makefile 2018-10-09 13:37:48 UTC (rev 24454)
+++ trunk/audio/Makefile 2018-10-11 00:32:02 UTC (rev 24455)
@@ -114,6 +114,7 @@
SUBDIR += mikmod
SUBDIR += mpdcon
SUBDIR += mpg123
+SUBDIR += musescore
SUBDIR += musicpd
SUBDIR += nas
SUBDIR += openal
Added: trunk/audio/musescore/Makefile
===================================================================
--- trunk/audio/musescore/Makefile (rev 0)
+++ trunk/audio/musescore/Makefile 2018-10-11 00:32:02 UTC (rev 24455)
@@ -0,0 +1,60 @@
+# $MidnightBSD$
+
+PORTNAME= musescore
+PORTVERSION= 2.0.2
+CATEGORIES= audio
+MASTER_SITES= http://ftp.osuosl.org/pub/musescore/releases/MuseScore-${PORTVERSION}/
+DISTNAME= MuseScore-${PORTVERSION}
+
+MAINTAINER= ports at MidnightBSD.org
+COMMENT= Free music composition & notation software
+
+LICENSE= gpl2
+LICENSE_FILE= ${WRKSRC}/LICENSE.GPL
+
+LIB_DEPENDS= libmp3lame.so:audio/lame \
+ libsndfile.so:audio/libsndfile \
+ libvorbis.so:audio/libvorbis
+
+USES= cmake:outsource compiler:c++11-lib desktop-file-utils \
+ pkgconfig shared-mime-info zip
+USE_QT5= concurrent declarative designer help network scripttools svg \
+ webkit xml xmlpatterns \
+ buildtools_build linguisttools_build qmake_build uitools_build
+ALL_TARGET= lrelease manpages all
+
+DATADIR= ${PREFIX}/share/mscore-${PORTVERSION:R}
+
+BROKEN_aarch64= Fails to compile: error: constant expression evaluates to -1
+
+OPTIONS_DEFINE= ALSA JACK PORTAUDIO PULSEAUDIO
+OPTIONS_DEFAULT= PORTAUDIO
+
+ALSA_LIB_DEPENDS= libasound.so:audio/alsa-lib
+ALSA_CMAKE_BOOL= BUILD_ALSA
+JACK_LIB_DEPENDS= libjack.so:audio/jack
+JACK_CMAKE_BOOL= BUILD_JACK
+PORTAUDIO_LIB_DEPENDS= libportaudio.so:audio/portaudio
+PORTAUDIO_CMAKE_BOOL= BUILD_PORTAUDIO
+PULSEAUDIO_LIB_DEPENDS= libpulse.so:audio/pulseaudio
+PULSEAUDIO_CMAKE_BOOL= BUILD_PULSEAUDIO
+
+.include <bsd.port.pre.mk>
+
+.if ${CHOSEN_COMPILER_TYPE} == clang
+CXXFLAGS+= -Wno-inconsistent-missing-override
+.endif
+
+post-patch:
+ @${FIND} ${WRKSRC} -name "CMakeLists.txt" -print0 | ${XARGS} -0 \
+ ${REINPLACE_CMD} -e \
+ '/RELEASE/s|-O2 || ; \
+ /COMPILE_FLAGS/s|-g || ; \
+ /COMPILE_FLAGS/s|$${PCH_INCLUDE} |-include $${PROJECT_BINARY_DIR}/all.h |'
+ @${REINPLACE_CMD} -e \
+ 's|<errno.h>|<cerrno>| ; \
+ s|<limits.h>|<climits>| ; \
+ s|<math.h>|<cmath>| ; \
+ s|<stdio.h>|<cstdio>|' ${WRKSRC}/all.h
+
+.include <bsd.port.post.mk>
Property changes on: trunk/audio/musescore/Makefile
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/audio/musescore/distinfo
===================================================================
--- trunk/audio/musescore/distinfo (rev 0)
+++ trunk/audio/musescore/distinfo 2018-10-11 00:32:02 UTC (rev 24455)
@@ -0,0 +1,2 @@
+SHA256 (MuseScore-2.0.2.zip) = 21d5339a2a5fa15af6f085a52d3484d2e0d7aee697933150848d19ba6f4764d5
+SIZE (MuseScore-2.0.2.zip) = 47590201
Property changes on: trunk/audio/musescore/distinfo
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/audio/musescore/files/patch-CMakeLists.txt
===================================================================
--- trunk/audio/musescore/files/patch-CMakeLists.txt (rev 0)
+++ trunk/audio/musescore/files/patch-CMakeLists.txt 2018-10-11 00:32:02 UTC (rev 24455)
@@ -0,0 +1,79 @@
+--- CMakeLists.txt.orig 2015-07-16 21:02:34 UTC
++++ CMakeLists.txt
+@@ -74,6 +74,10 @@ option(HAS_AUDIOFILE "enable audio expor
+ option(USE_SYSTEM_QTSINGLEAPPLICATION "Use system QtSingleApplication" OFF)
+ option(BUILD_LAME "enable mp3 export" ON) # requires libmp3lame
+
++option(BUILD_ALSA "Build with support for ALSA." ON)
++option(BUILD_PORTAUDIO "Build with support for portaudio." ON)
++option(BUILD_PULSEAUDIO "Build with support for PulseAudio." ON)
++
+ SET(JACK_LONGNAME "jack (jack audio connection kit)")
+ SET(JACK_MIN_VERSION "0.98.0")
+ option(BUILD_JACK "Build with support for ${JACK_LONGNAME}. jack >= ${JACK_MIN_VERSION} will be needed." ON)
+@@ -194,6 +198,7 @@ endif (APPLE)
+ ## alsa >= 1.0.0
+ ##
+
++if (BUILD_ALSA)
+ if (APPLE OR MINGW)
+ message("Disabling ALSA support due to OS X or MINGW build.")
+ set (USE_ALSA 0)
+@@ -208,11 +213,17 @@ else (APPLE OR MINGW)
+ set (HAS_MIDI 1)
+ endif (NOT ALSA_INCDIR)
+ endif (APPLE OR MINGW)
++else (BUILD_ALSA)
++ MESSAGE(STATUS "alsa support disabled")
++ set (USE_ALSA 0)
++ set (HAS_MIDI 1)
++endif (BUILD_ALSA)
+
+ ##
+ ## pulseaudio
+ ##
+
++if (BUILD_PULSEAUDIO)
+ if (APPLE OR MINGW)
+ set (USE_PULSEAUDIO 0)
+ else (APPLE OR MINGW)
+@@ -224,6 +235,10 @@ else (APPLE OR MINGW)
+ message("Pulseaudio not found.")
+ endif (PULSEAUDIO_FOUND)
+ endif (APPLE OR MINGW)
++else (BUILD_PULSEAUDIO)
++ MESSAGE(STATUS "PulseAudio support disabled")
++ set (USE_PULSEAUDIO 0)
++endif (BUILD_PULSEAUDIO)
+
+ ##
+ ## lame
+@@ -296,6 +311,7 @@ ENDIF(BUILD_JACK)
+ ## portaudio
+ ##
+
++if (BUILD_PORTAUDIO)
+ if (MINGW)
+ set ( USE_PORTAUDIO 1 )
+ set ( USE_PORTMIDI 1 )
+@@ -314,6 +330,11 @@ else (MINGW)
+ set (USE_PORTMIDI 0)
+ endif (APPLE)
+ endif (MINGW)
++else (BUILD_PORTAUDIO)
++ MESSAGE(STATUS "portaudio support disabled")
++ set (USE_PORTAUDIO 0)
++ set (USE_PORTMIDI 0)
++endif (BUILD_PORTAUDIO)
+
+
+ if (APPLE)
+@@ -431,7 +452,7 @@ if (NOT MINGW AND NOT APPLE)
+ )
+ endif (GZIP_EXECUTABLE AND NOT CMAKE_SYSTEM_NAME MATCHES "OpenBSD")
+ # install man pages in either compressed or uncompressed form
+- install( FILES ${MAN_TARGET} DESTINATION share/man/man1 COMPONENT doc)
++ install( FILES ${MAN_TARGET} DESTINATION man/man1 COMPONENT doc)
+ # add .MSCZ and .MSCX to MIME database (informs system that filetypes .MSCZ & .MSCX are MuseScore files)
+ install( FILES ${PROJECT_SOURCE_DIR}/build/musescore.xml DESTINATION share/mime/packages COMPONENT doc)
+ # Note: must now run "update-mime-database" to apply changes. This is done in the Makefile.
Property changes on: trunk/audio/musescore/files/patch-CMakeLists.txt
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/audio/musescore/files/patch-mscore_CMakeLists.txt
===================================================================
--- trunk/audio/musescore/files/patch-mscore_CMakeLists.txt (rev 0)
+++ trunk/audio/musescore/files/patch-mscore_CMakeLists.txt 2018-10-11 00:32:02 UTC (rev 24455)
@@ -0,0 +1,20 @@
+--- mscore/CMakeLists.txt.orig 2015-07-16 21:02:34 UTC
++++ mscore/CMakeLists.txt
+@@ -474,7 +474,6 @@ else (MINGW)
+ ${ALSA_LIB}
+ ${QT_LIBRARIES}
+ z
+- dl
+ pthread
+ )
+ if (USE_PORTAUDIO)
+@@ -509,9 +508,6 @@ else (MINGW)
+
+ # gold does not use indirect shared libraries for symbol resolution, Linux only
+ if (NOT APPLE)
+- if(USE_JACK)
+- target_link_libraries(mscore dl)
+- endif(USE_JACK)
+ target_link_libraries(mscore rt)
+ endif (NOT APPLE)
+
Property changes on: trunk/audio/musescore/files/patch-mscore_CMakeLists.txt
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/audio/musescore/files/patch-thirdparty_qzip_qzip.cpp
===================================================================
--- trunk/audio/musescore/files/patch-thirdparty_qzip_qzip.cpp (rev 0)
+++ trunk/audio/musescore/files/patch-thirdparty_qzip_qzip.cpp 2018-10-11 00:32:02 UTC (rev 24455)
@@ -0,0 +1,12 @@
+--- thirdparty/qzip/qzip.cpp.orig 2015-07-16 21:02:34 UTC
++++ thirdparty/qzip/qzip.cpp
+@@ -45,6 +45,9 @@
+ #include "qzipreader_p.h"
+ #include "qzipwriter_p.h"
+
++#include <sys/types.h>
++#include <sys/stat.h>
++
+ #include <zlib.h>
+
+ #if defined(Q_OS_WIN) or defined(Q_OS_ANDROID)
Property changes on: trunk/audio/musescore/files/patch-thirdparty_qzip_qzip.cpp
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/audio/musescore/pkg-descr
===================================================================
--- trunk/audio/musescore/pkg-descr (rev 0)
+++ trunk/audio/musescore/pkg-descr 2018-10-11 00:32:02 UTC (rev 24455)
@@ -0,0 +1,19 @@
+MuseScore is a free cross-platform WYSIWYG music notation program
+that offers a cost-effective alternative to commercial programs
+such as Sibelius and Finale.
+You can print beautifully engraved sheet music or save it as PDF
+or MIDI file.
+
+Some highlights:
+
+ * WYSIWYG, notes are entered on a "virtual note sheet"
+ * Unlimited number of staves
+ * Up to four voices per staff
+ * Easy and fast note entry with your keyboard, mouse, or MIDI keyboard
+ * Integrated sequencer and FluidSynth software synthesizer
+ * Import and export of MusicXML and Standard MIDI Files
+ * Available for Windows, Mac and Linux
+ * Translated in 43 languages
+ * GNU GPL licensed
+
+WWW: http://musescore.org/
Property changes on: trunk/audio/musescore/pkg-descr
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/audio/musescore/pkg-plist
===================================================================
--- trunk/audio/musescore/pkg-plist (rev 0)
+++ trunk/audio/musescore/pkg-plist 2018-10-11 00:32:02 UTC (rev 24455)
@@ -0,0 +1,326 @@
+bin/mscore
+man/man1/mscore.1.gz
+share/applications/mscore.desktop
+share/icons/hicolor/48x48/mimetypes/application-vnd.recordare.musicxml+xml.png
+share/icons/hicolor/48x48/mimetypes/application-vnd.recordare.musicxml.png
+share/icons/hicolor/48x48/mimetypes/application-x-musescore+xml.png
+share/icons/hicolor/48x48/mimetypes/application-x-musescore.png
+share/icons/hicolor/64x64/apps/mscore.png
+share/icons/hicolor/scalable/apps/mscore.svg
+share/icons/hicolor/scalable/mimetypes/application-vnd.recordare.musicxml+xml.svg
+share/icons/hicolor/scalable/mimetypes/application-vnd.recordare.musicxml.svg
+share/icons/hicolor/scalable/mimetypes/application-x-musescore+xml.svg
+share/icons/hicolor/scalable/mimetypes/application-x-musescore.svg
+share/mime/packages/musescore.xml
+%%DATADIR%%/demos/All_Dudes.mscz
+%%DATADIR%%/demos/Reunion.mscz
+%%DATADIR%%/demos/Triumph.mscz
+%%DATADIR%%/instruments/instruments.xml
+%%DATADIR%%/locale/instruments_af.qm
+%%DATADIR%%/locale/instruments_ar.qm
+%%DATADIR%%/locale/instruments_ast.qm
+%%DATADIR%%/locale/instruments_be.qm
+%%DATADIR%%/locale/instruments_bg.qm
+%%DATADIR%%/locale/instruments_ca.qm
+%%DATADIR%%/locale/instruments_ca at valencia.qm
+%%DATADIR%%/locale/instruments_cs.qm
+%%DATADIR%%/locale/instruments_cy.qm
+%%DATADIR%%/locale/instruments_da.qm
+%%DATADIR%%/locale/instruments_de.qm
+%%DATADIR%%/locale/instruments_el.qm
+%%DATADIR%%/locale/instruments_en_GB.qm
+%%DATADIR%%/locale/instruments_en_US.qm
+%%DATADIR%%/locale/instruments_eo.qm
+%%DATADIR%%/locale/instruments_es.qm
+%%DATADIR%%/locale/instruments_et.qm
+%%DATADIR%%/locale/instruments_eu.qm
+%%DATADIR%%/locale/instruments_fa.qm
+%%DATADIR%%/locale/instruments_fi.qm
+%%DATADIR%%/locale/instruments_fo.qm
+%%DATADIR%%/locale/instruments_fr.qm
+%%DATADIR%%/locale/instruments_gl.qm
+%%DATADIR%%/locale/instruments_he.qm
+%%DATADIR%%/locale/instruments_hi_IN.qm
+%%DATADIR%%/locale/instruments_hr.qm
+%%DATADIR%%/locale/instruments_hu.qm
+%%DATADIR%%/locale/instruments_id.qm
+%%DATADIR%%/locale/instruments_it.qm
+%%DATADIR%%/locale/instruments_ja.qm
+%%DATADIR%%/locale/instruments_ka.qm
+%%DATADIR%%/locale/instruments_ko.qm
+%%DATADIR%%/locale/instruments_lt.qm
+%%DATADIR%%/locale/instruments_lv.qm
+%%DATADIR%%/locale/instruments_mn_MN.qm
+%%DATADIR%%/locale/instruments_nb.qm
+%%DATADIR%%/locale/instruments_nl.qm
+%%DATADIR%%/locale/instruments_nn.qm
+%%DATADIR%%/locale/instruments_pl.qm
+%%DATADIR%%/locale/instruments_pt.qm
+%%DATADIR%%/locale/instruments_pt_BR.qm
+%%DATADIR%%/locale/instruments_ro.qm
+%%DATADIR%%/locale/instruments_ru.qm
+%%DATADIR%%/locale/instruments_sk.qm
+%%DATADIR%%/locale/instruments_sl.qm
+%%DATADIR%%/locale/instruments_sr.qm
+%%DATADIR%%/locale/instruments_sv.qm
+%%DATADIR%%/locale/instruments_th.qm
+%%DATADIR%%/locale/instruments_tr.qm
+%%DATADIR%%/locale/instruments_uk.qm
+%%DATADIR%%/locale/instruments_uz at Latn.qm
+%%DATADIR%%/locale/instruments_vi.qm
+%%DATADIR%%/locale/instruments_zh_CN.qm
+%%DATADIR%%/locale/instruments_zh_TW.qm
+%%DATADIR%%/locale/languages.xml
+%%DATADIR%%/locale/mscore_af.qm
+%%DATADIR%%/locale/mscore_ar.qm
+%%DATADIR%%/locale/mscore_ast.qm
+%%DATADIR%%/locale/mscore_be.qm
+%%DATADIR%%/locale/mscore_bg.qm
+%%DATADIR%%/locale/mscore_ca.qm
+%%DATADIR%%/locale/mscore_ca at valencia.qm
+%%DATADIR%%/locale/mscore_cs.qm
+%%DATADIR%%/locale/mscore_cy.qm
+%%DATADIR%%/locale/mscore_da.qm
+%%DATADIR%%/locale/mscore_de.qm
+%%DATADIR%%/locale/mscore_el.qm
+%%DATADIR%%/locale/mscore_en_GB.qm
+%%DATADIR%%/locale/mscore_en_US.qm
+%%DATADIR%%/locale/mscore_eo.qm
+%%DATADIR%%/locale/mscore_es.qm
+%%DATADIR%%/locale/mscore_et.qm
+%%DATADIR%%/locale/mscore_eu.qm
+%%DATADIR%%/locale/mscore_fa.qm
+%%DATADIR%%/locale/mscore_fi.qm
+%%DATADIR%%/locale/mscore_fo.qm
+%%DATADIR%%/locale/mscore_fr.qm
+%%DATADIR%%/locale/mscore_gl.qm
+%%DATADIR%%/locale/mscore_he.qm
+%%DATADIR%%/locale/mscore_hi_IN.qm
+%%DATADIR%%/locale/mscore_hr.qm
+%%DATADIR%%/locale/mscore_hu.qm
+%%DATADIR%%/locale/mscore_id.qm
+%%DATADIR%%/locale/mscore_it.qm
+%%DATADIR%%/locale/mscore_ja.qm
+%%DATADIR%%/locale/mscore_ka.qm
+%%DATADIR%%/locale/mscore_ko.qm
+%%DATADIR%%/locale/mscore_lt.qm
+%%DATADIR%%/locale/mscore_lv.qm
+%%DATADIR%%/locale/mscore_mn_MN.qm
+%%DATADIR%%/locale/mscore_nb.qm
+%%DATADIR%%/locale/mscore_nl.qm
+%%DATADIR%%/locale/mscore_nn.qm
+%%DATADIR%%/locale/mscore_pl.qm
+%%DATADIR%%/locale/mscore_pt.qm
+%%DATADIR%%/locale/mscore_pt_BR.qm
+%%DATADIR%%/locale/mscore_ro.qm
+%%DATADIR%%/locale/mscore_ru.qm
+%%DATADIR%%/locale/mscore_sk.qm
+%%DATADIR%%/locale/mscore_sl.qm
+%%DATADIR%%/locale/mscore_sr.qm
+%%DATADIR%%/locale/mscore_sv.qm
+%%DATADIR%%/locale/mscore_th.qm
+%%DATADIR%%/locale/mscore_tr.qm
+%%DATADIR%%/locale/mscore_uk.qm
+%%DATADIR%%/locale/mscore_uz at Latn.qm
+%%DATADIR%%/locale/mscore_vi.qm
+%%DATADIR%%/locale/mscore_zh_CN.qm
+%%DATADIR%%/locale/mscore_zh_TW.qm
+%%DATADIR%%/locale/qt_ar.qm
+%%DATADIR%%/locale/qt_ca.qm
+%%DATADIR%%/locale/qt_cs.qm
+%%DATADIR%%/locale/qt_da.qm
+%%DATADIR%%/locale/qt_de.qm
+%%DATADIR%%/locale/qt_el.qm
+%%DATADIR%%/locale/qt_es.qm
+%%DATADIR%%/locale/qt_eu.qm
+%%DATADIR%%/locale/qt_fa.qm
+%%DATADIR%%/locale/qt_fi.qm
+%%DATADIR%%/locale/qt_fr.qm
+%%DATADIR%%/locale/qt_gl.qm
+%%DATADIR%%/locale/qt_he.qm
+%%DATADIR%%/locale/qt_hu.qm
+%%DATADIR%%/locale/qt_id.qm
+%%DATADIR%%/locale/qt_it.qm
+%%DATADIR%%/locale/qt_ja.qm
+%%DATADIR%%/locale/qt_ko.qm
+%%DATADIR%%/locale/qt_lt.qm
+%%DATADIR%%/locale/qt_nb.qm
+%%DATADIR%%/locale/qt_nl.qm
+%%DATADIR%%/locale/qt_pl.qm
+%%DATADIR%%/locale/qt_pt.qm
+%%DATADIR%%/locale/qt_pt_BR.qm
+%%DATADIR%%/locale/qt_ro.qm
+%%DATADIR%%/locale/qt_ru.qm
+%%DATADIR%%/locale/qt_sk.qm
+%%DATADIR%%/locale/qt_sv.qm
+%%DATADIR%%/locale/qt_tr.qm
+%%DATADIR%%/locale/qt_uk.qm
+%%DATADIR%%/locale/qt_vi.qm
+%%DATADIR%%/locale/qt_zh_CN.qm
+%%DATADIR%%/locale/qt_zh_TW.qm
+%%DATADIR%%/manual/plugins/accidental.html
+%%DATADIR%%/manual/plugins/ambitus.html
+%%DATADIR%%/manual/plugins/arpeggio.html
+%%DATADIR%%/manual/plugins/articulation.html
+%%DATADIR%%/manual/plugins/barline.html
+%%DATADIR%%/manual/plugins/beam.html
+%%DATADIR%%/manual/plugins/bend.html
+%%DATADIR%%/manual/plugins/box.html
+%%DATADIR%%/manual/plugins/bracket.html
+%%DATADIR%%/manual/plugins/breath.html
+%%DATADIR%%/manual/plugins/bsymbol.html
+%%DATADIR%%/manual/plugins/chord.html
+%%DATADIR%%/manual/plugins/chordline.html
+%%DATADIR%%/manual/plugins/chordrest.html
+%%DATADIR%%/manual/plugins/clef.html
+%%DATADIR%%/manual/plugins/compound.html
+%%DATADIR%%/manual/plugins/cursor.html
+%%DATADIR%%/manual/plugins/durationelement.html
+%%DATADIR%%/manual/plugins/dynamic.html
+%%DATADIR%%/manual/plugins/element.html
+%%DATADIR%%/manual/plugins/excerpt.html
+%%DATADIR%%/manual/plugins/fbox.html
+%%DATADIR%%/manual/plugins/figuredbass.html
+%%DATADIR%%/manual/plugins/figuredbassitem.html
+%%DATADIR%%/manual/plugins/fileio.html
+%%DATADIR%%/manual/plugins/fingering.html
+%%DATADIR%%/manual/plugins/fretdiagram.html
+%%DATADIR%%/manual/plugins/fsymbol.html
+%%DATADIR%%/manual/plugins/glissando.html
+%%DATADIR%%/manual/plugins/glissandosegment.html
+%%DATADIR%%/manual/plugins/groups.html
+%%DATADIR%%/manual/plugins/hairpin.html
+%%DATADIR%%/manual/plugins/hairpinsegment.html
+%%DATADIR%%/manual/plugins/harmony.html
+%%DATADIR%%/manual/plugins/hbox.html
+%%DATADIR%%/manual/plugins/hook.html
+%%DATADIR%%/manual/plugins/image.html
+%%DATADIR%%/manual/plugins/instrumentchange.html
+%%DATADIR%%/manual/plugins/jump.html
+%%DATADIR%%/manual/plugins/keysig.html
+%%DATADIR%%/manual/plugins/layoutbreak.html
+%%DATADIR%%/manual/plugins/ledgerline.html
+%%DATADIR%%/manual/plugins/line.html
+%%DATADIR%%/manual/plugins/linesegment.html
+%%DATADIR%%/manual/plugins/lyrics.html
+%%DATADIR%%/manual/plugins/manual.css
+%%DATADIR%%/manual/plugins/marker.html
+%%DATADIR%%/manual/plugins/measure.html
+%%DATADIR%%/manual/plugins/measurebase.html
+%%DATADIR%%/manual/plugins/mscore.png
+%%DATADIR%%/manual/plugins/musescore.html
+%%DATADIR%%/manual/plugins/note.html
+%%DATADIR%%/manual/plugins/notedot.html
+%%DATADIR%%/manual/plugins/notehead.html
+%%DATADIR%%/manual/plugins/noteline.html
+%%DATADIR%%/manual/plugins/ossia.html
+%%DATADIR%%/manual/plugins/ottava.html
+%%DATADIR%%/manual/plugins/ottavasegment.html
+%%DATADIR%%/manual/plugins/page.html
+%%DATADIR%%/manual/plugins/pageformat.html
+%%DATADIR%%/manual/plugins/part.html
+%%DATADIR%%/manual/plugins/pedal.html
+%%DATADIR%%/manual/plugins/pedalsegment.html
+%%DATADIR%%/manual/plugins/plugins.html
+%%DATADIR%%/manual/plugins/qprocess.html
+%%DATADIR%%/manual/plugins/rehearsalmark.html
+%%DATADIR%%/manual/plugins/repeatmeasure.html
+%%DATADIR%%/manual/plugins/rest.html
+%%DATADIR%%/manual/plugins/score.html
+%%DATADIR%%/manual/plugins/scoreview.html
+%%DATADIR%%/manual/plugins/segment.html
+%%DATADIR%%/manual/plugins/sline.html
+%%DATADIR%%/manual/plugins/slur.html
+%%DATADIR%%/manual/plugins/slursegment.html
+%%DATADIR%%/manual/plugins/slurtie.html
+%%DATADIR%%/manual/plugins/spacer.html
+%%DATADIR%%/manual/plugins/spanner.html
+%%DATADIR%%/manual/plugins/spannersegment.html
+%%DATADIR%%/manual/plugins/stafflines.html
+%%DATADIR%%/manual/plugins/staffstate.html
+%%DATADIR%%/manual/plugins/stafftext.html
+%%DATADIR%%/manual/plugins/stem.html
+%%DATADIR%%/manual/plugins/stemslash.html
+%%DATADIR%%/manual/plugins/svggenerator.html
+%%DATADIR%%/manual/plugins/symbol.html
+%%DATADIR%%/manual/plugins/system.html
+%%DATADIR%%/manual/plugins/tbox.html
+%%DATADIR%%/manual/plugins/tempotext.html
+%%DATADIR%%/manual/plugins/text.html
+%%DATADIR%%/manual/plugins/textline.html
+%%DATADIR%%/manual/plugins/textlinesegment.html
+%%DATADIR%%/manual/plugins/tie.html
+%%DATADIR%%/manual/plugins/timesig.html
+%%DATADIR%%/manual/plugins/tremolo.html
+%%DATADIR%%/manual/plugins/tremolobar.html
+%%DATADIR%%/manual/plugins/trill.html
+%%DATADIR%%/manual/plugins/trillsegment.html
+%%DATADIR%%/manual/plugins/tuplet.html
+%%DATADIR%%/manual/plugins/vbox.html
+%%DATADIR%%/manual/plugins/volta.html
+%%DATADIR%%/manual/plugins/voltasegment.html
+%%DATADIR%%/plugins/abc_import.qml
+%%DATADIR%%/plugins/colornotes.qml
+%%DATADIR%%/plugins/createscore.qml
+%%DATADIR%%/plugins/helloqml/helloqml.qml
+%%DATADIR%%/plugins/helloqml/translations/locale_de.qm
+%%DATADIR%%/plugins/helloqml/translations/locale_de.ts
+%%DATADIR%%/plugins/notenames.qml
+%%DATADIR%%/plugins/panel.qml
+%%DATADIR%%/plugins/random.qml
+%%DATADIR%%/plugins/random2.qml
+%%DATADIR%%/plugins/run.qml
+%%DATADIR%%/plugins/scorelist.qml
+%%DATADIR%%/plugins/view.qml
+%%DATADIR%%/plugins/walk.qml
+%%DATADIR%%/sound/FluidR3Mono_GM.sf3
+%%DATADIR%%/sound/FluidR3Mono_License.md
+%%DATADIR%%/styles/MuseJazz.mss
+%%DATADIR%%/styles/cchords_muse.xml
+%%DATADIR%%/styles/cchords_nrb.xml
+%%DATADIR%%/styles/cchords_rb.xml
+%%DATADIR%%/styles/cchords_sym.xml
+%%DATADIR%%/styles/chords.xml
+%%DATADIR%%/styles/chords_jazz.xml
+%%DATADIR%%/styles/chords_std.xml
+%%DATADIR%%/styles/jazzchords.xml
+%%DATADIR%%/styles/stdchords.xml
+%%DATADIR%%/templates/01-General/00-Blank.mscz
+%%DATADIR%%/templates/01-General/01-Treble_Clef.mscz
+%%DATADIR%%/templates/01-General/02-Bass_Clef.mscz
+%%DATADIR%%/templates/01-General/03-Grand_Staff.mscz
+%%DATADIR%%/templates/02-Choral/01-SATB.mscz
+%%DATADIR%%/templates/02-Choral/02-SATB_+_Organ.mscz
+%%DATADIR%%/templates/02-Choral/03-SATB_+_Piano.mscz
+%%DATADIR%%/templates/02-Choral/04-SATB_Closed_Score.mscz
+%%DATADIR%%/templates/02-Choral/05-SATB_Closed_Score_+_Organ.mscz
+%%DATADIR%%/templates/02-Choral/06-SATB_Closed_Score_+_Piano.mscz
+%%DATADIR%%/templates/02-Choral/07-Voice_+_Piano.mscz
+%%DATADIR%%/templates/02-Choral/08-Barbershop_Quartet.mscz
+%%DATADIR%%/templates/02-Choral/09-Liturgical_Unmetrical.mscz
+%%DATADIR%%/templates/02-Choral/10-Liturgical_Unmetrical_+_Organ.mscz
+%%DATADIR%%/templates/03-Chamber_Music/01-String_Quartet.mscz
+%%DATADIR%%/templates/03-Chamber_Music/02-Wind_Quartet.mscz
+%%DATADIR%%/templates/03-Chamber_Music/03-Wind_Quintet.mscz
+%%DATADIR%%/templates/03-Chamber_Music/04-Saxophone_Quartet.mscz
+%%DATADIR%%/templates/03-Chamber_Music/05-Brass_Quartet.mscz
+%%DATADIR%%/templates/03-Chamber_Music/06-Brass_Quintet.mscz
+%%DATADIR%%/templates/04-Solo/01-Guitar.mscz
+%%DATADIR%%/templates/04-Solo/02-Guitar_+_Tablature.mscz
+%%DATADIR%%/templates/04-Solo/03-Guitar_Tablature.mscz
+%%DATADIR%%/templates/04-Solo/04-Piano.mscz
+%%DATADIR%%/templates/05-Jazz/01-Jazz_Lead_Sheet.mscz
+%%DATADIR%%/templates/05-Jazz/02-Big_Band.mscz
+%%DATADIR%%/templates/05-Jazz/03-Jazz_Combo.mscz
+%%DATADIR%%/templates/06-Popular/01-Rock_Band.mscz
+%%DATADIR%%/templates/07-Band/01-Concert_Band.mscz
+%%DATADIR%%/templates/08-Orchestral/01-Classical_Orchestra.mscz
+%%DATADIR%%/templates/08-Orchestral/02-Concert_Orchestra.mscz
+%%DATADIR%%/templates/08-Orchestral/03-String_Orchestra.mscz
+%%DATADIR%%/templates/drumset_fr.drm
+%%DATADIR%%/templates/orchestral.drm
+%%DATADIR%%/wallpaper/paper1.png
+%%DATADIR%%/wallpaper/paper2.png
+%%DATADIR%%/wallpaper/paper3.png
+%%DATADIR%%/wallpaper/paper4.png
+%%DATADIR%%/wallpaper/paper5.png
Property changes on: trunk/audio/musescore/pkg-plist
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
More information about the Midnightbsd-cvs
mailing list