Attached is an update for audio/mscore. Musescore 2.1 was released last
week.
Seems ok on an amd64 virtual machine.

If the attachment is somehow bad, grab the patch here:
https://devio.us/~bcallah/mscore-21.diff

~Brian

Index: Makefile
===================================================================
RCS file: /cvs/ports/audio/mscore/Makefile,v
retrieving revision 1.28
diff -u -p -u -p -r1.28 Makefile
--- Makefile    25 Dec 2016 14:34:39 -0000      1.28
+++ Makefile    8 May 2017 16:15:59 -0000
@@ -3,13 +3,12 @@
 BROKEN-hppa =  ICE on moc_qtsingleapplication.cxx
 BROKEN-powerpc = libmscore/pitchspelling.h:56:42: error: enumerator value -1 
is too large for underlying type 'char'
 
-V =            2.0.2
+V =            2.1
 COMMENT =      WYSIWYG music notation software (MuseScore)
 DISTNAME =     MuseScore-${V}
 PKGNAME =      musescore-${V}
 EXTRACT_SUFX = .zip
 CATEGORIES =   audio x11
-REVISION =     1
 
 HOMEPAGE =     http://musescore.org/
 
@@ -42,6 +41,7 @@ RUN_DEPENDS = devel/desktop-file-utils \
                x11/gtk+3,-guic
 
 CONFIGURE_ARGS =-DCMAKE_INSTALL_PREFIX="${PREFIX}" \
+               -DBUILD_ALSA=OFF \
                -DBUILD_JACK=OFF
 
 NO_TEST =      Yes
Index: distinfo
===================================================================
RCS file: /cvs/ports/audio/mscore/distinfo,v
retrieving revision 1.5
diff -u -p -u -p -r1.5 distinfo
--- distinfo    22 Aug 2015 02:47:27 -0000      1.5
+++ distinfo    8 May 2017 16:15:59 -0000
@@ -1,2 +1,2 @@
-SHA256 (MuseScore-2.0.2.zip) = IdUzmipfoVr28IWlLTSE0uDXruaXkzFQhI0Zum9HZNU=
-SIZE (MuseScore-2.0.2.zip) = 47590201
+SHA256 (MuseScore-2.1.zip) = UbL9CdjQr/+EzmruDhSFRGVGJhaw75KtjdIyUlfTvBI=
+SIZE (MuseScore-2.1.zip) = 55072555
Index: patches/patch-CMakeLists_txt
===================================================================
RCS file: /cvs/ports/audio/mscore/patches/patch-CMakeLists_txt,v
retrieving revision 1.3
diff -u -p -u -p -r1.3 patch-CMakeLists_txt
--- patches/patch-CMakeLists_txt        22 Aug 2015 02:47:27 -0000      1.3
+++ patches/patch-CMakeLists_txt        8 May 2017 16:15:59 -0000
@@ -1,74 +1,72 @@
 $OpenBSD: patch-CMakeLists_txt,v 1.3 2015/08/22 02:47:27 bcallah Exp $
---- CMakeLists.txt.orig        Thu Jul 16 17:02:34 2015
-+++ CMakeLists.txt     Fri Aug 21 18:42:23 2015
-@@ -125,7 +125,7 @@ else (APPLE)
-       set(CMAKE_CXX_FLAGS_RELEASE "-std=gnu++0x -mno-ms-bitfields -O2 
-DNDEBUG -DQT_NO_DEBUG")
+Index: CMakeLists.txt
+--- CMakeLists.txt.orig
++++ CMakeLists.txt
+@@ -164,7 +164,7 @@ else (APPLE)
+       set(CMAKE_EXE_LINKER_FLAGS "-Wl,--large-address-aware")
     else (MINGW)
-       set(CMAKE_CXX_FLAGS_DEBUG   "-std=c++11 -fPIC -fPIE -g")
+       set(CMAKE_CXX_FLAGS_DEBUG   "-std=c++11 -fPIC -g")
 -      set(CMAKE_CXX_FLAGS_RELEASE "-std=c++11 -fPIC -O2 -DNDEBUG 
-DQT_NO_DEBUG")
 +      set(CMAKE_CXX_FLAGS_RELEASE "-std=c++11 -fPIC -DNDEBUG -DQT_NO_DEBUG")
     endif (MINGW)
  endif(APPLE)
  
-@@ -194,11 +194,11 @@ endif (APPLE)
- ## alsa >= 1.0.0
+@@ -268,13 +268,13 @@ endif (BUILD_ALSA)
+ ## MIDI
  ##
  
 -if (APPLE OR MINGW)
 +if (APPLE OR MINGW OR UNIX)
-       message("Disabling ALSA support due to OS X or MINGW build.")
-       set (USE_ALSA 0)
        set (HAS_MIDI 1)
 -else (APPLE OR MINGW)
 +else (APPLE OR MINGW OR UNIX)
-       PKGCONFIG (alsa 1.0.0 ALSA_INCDIR ALSA_LIBDIR ALSA_LIB ALSA_CPP )
-       if (NOT ALSA_INCDIR)
-             message(FATAL_ERROR "Fatal error: ALSA >= 1.0.0 required")
-@@ -207,7 +207,7 @@ else (APPLE OR MINGW)
-             set (USE_ALSA 1)
+       if (USE_ALSA)
              set (HAS_MIDI 1)
-       endif (NOT ALSA_INCDIR)
+       endif (USE_ALSA)
 -endif (APPLE OR MINGW)
 +endif (APPLE OR MINGW OR UNIX)
  
  ##
  ## pulseaudio
-@@ -217,8 +217,8 @@ if (APPLE OR MINGW)
-       set (USE_PULSEAUDIO 0)
- else (APPLE OR MINGW)
+@@ -282,8 +282,8 @@ endif (APPLE OR MINGW)
+ 
+ if (BUILD_PULSEAUDIO)
        if (PULSEAUDIO_FOUND)
 -            set(USE_PULSEAUDIO 1)
--            message("Pulseaudio found.")
+-            message("Pulseaudio found. Pulseaudio support enabled.")
 +            set(USE_PULSEAUDIO 0)
-+            message("Pulseaudio not used.")
++            message("Pulseaudio support disabled.")
        else (PULSEAUDIO_FOUND)
-             set(USE_PULSEAUDIO 0)
-             message("Pulseaudio not found.")
-@@ -431,7 +431,7 @@ if (NOT MINGW AND NOT APPLE)
+             message(SEND_ERROR "Error: Pulseaudio support requested 
(BUILD_PULSEAUDIO=${BUILD_PULSEAUDIO}), but Pulseaudio was not found.")
+       endif (PULSEAUDIO_FOUND)
+@@ -544,7 +544,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.
-@@ -449,11 +449,11 @@ add_custom_command(
-     DEPENDS ${PROJECT_SOURCE_DIR}/all.h
+-    install( FILES ${MAN_BUILD} DESTINATION share/man/man1 COMPONENT doc)
++    install( FILES ${MAN_BUILD} DESTINATION man/man1 COMPONENT doc)
+     # create symlink alias for man pages so `man musescore` = `man mscore`
+     find_program( LN_EXECUTABLE ln DOC "A tool for creating symbolic link 
aliases (optional)." )
+     if (LN_EXECUTABLE)
+@@ -555,7 +555,7 @@ if (NOT MINGW AND NOT APPLE)
+             COMMAND ${LN_EXECUTABLE} -sf "${MAN_FULL_NAME}" 
"${MAN_FULL_ALIAS}"
+             COMMAND echo 'Symlink alias: ${MAN_FULL_ALIAS} -> 
${MAN_FULL_NAME}'
+             )
+-        install( FILES ${PROJECT_BINARY_DIR}/${MAN_FULL_ALIAS} DESTINATION 
share/man/man1 COMPONENT doc)
++        install( FILES ${PROJECT_BINARY_DIR}/${MAN_FULL_ALIAS} DESTINATION 
man/man1 COMPONENT doc)
+      else (LN_EXECUTABLE)
+          message(STATUS "ln not found (it is optional). No symlink aliases 
will be created.")
+      endif (LN_EXECUTABLE)
+@@ -578,7 +578,7 @@ add_custom_command(
      WORKING_DIRECTORY ${PROJECT_BINARY_DIR}
      )
--if (MINGW)
-+if (MINGW OR UNIX)
-   set(BUILD_PCH false)
--else (MINGW)
-+else (MINGW OR UNIX)
-   set(BUILD_PCH true)
--endif(MINGW)
-+endif(MINGW OR UNIX)
+ if (NOT MINGW)
+-  set(BUILD_PCH true)
++  set(BUILD_PCH false)
+ endif(NOT MINGW)
  
  precompiled_header(QT_INCLUDES all ${BUILD_PCH})
- 
-@@ -528,18 +528,18 @@ include(Packaging)
+@@ -663,18 +663,18 @@ include(Packaging)
  ##  custom target for translation generation
  ##
  
Index: patches/patch-build_gen-qt-projectfile
===================================================================
RCS file: /cvs/ports/audio/mscore/patches/patch-build_gen-qt-projectfile,v
retrieving revision 1.2
diff -u -p -u -p -r1.2 patch-build_gen-qt-projectfile
--- patches/patch-build_gen-qt-projectfile      22 Aug 2015 02:47:27 -0000      
1.2
+++ patches/patch-build_gen-qt-projectfile      8 May 2017 16:15:59 -0000
@@ -1,7 +1,8 @@
 $OpenBSD: patch-build_gen-qt-projectfile,v 1.2 2015/08/22 02:47:27 bcallah Exp 
$
---- build/gen-qt-projectfile.orig      Thu Jul 16 17:02:34 2015
-+++ build/gen-qt-projectfile   Fri Aug 21 17:00:51 2015
-@@ -59,14 +59,14 @@ echo "      $1/share/locale/mscore_zh_TW.ts"
+Index: build/gen-qt-projectfile
+--- build/gen-qt-projectfile.orig
++++ build/gen-qt-projectfile
+@@ -102,14 +102,14 @@ echo "      $1/share/locale/qt_zh_TW.tsTW.ts"
  
  
  echo "FORMS = \\"
Index: patches/patch-mscore_CMakeLists_txt
===================================================================
RCS file: /cvs/ports/audio/mscore/patches/patch-mscore_CMakeLists_txt,v
retrieving revision 1.5
diff -u -p -u -p -r1.5 patch-mscore_CMakeLists_txt
--- patches/patch-mscore_CMakeLists_txt 22 Aug 2015 02:47:27 -0000      1.5
+++ patches/patch-mscore_CMakeLists_txt 8 May 2017 16:15:59 -0000
@@ -1,30 +1,30 @@
 $OpenBSD: patch-mscore_CMakeLists_txt,v 1.5 2015/08/22 02:47:27 bcallah Exp $
---- mscore/CMakeLists.txt.orig Thu Jul 16 17:02:34 2015
-+++ mscore/CMakeLists.txt      Fri Aug 21 18:16:55 2015
-@@ -474,7 +474,6 @@ else (MINGW)
-       ${ALSA_LIB}
-       ${QT_LIBRARIES}
-       z
--      dl
-       pthread
-       )
-     if (USE_PORTAUDIO)
-@@ -504,15 +503,15 @@ else (MINGW)
-      endif (USE_PORTMIDI)
-      target_link_libraries(mscore ${OsxFrameworks})
-    else (APPLE)
--       target_link_libraries(mscore rt)
-+       target_link_libraries(mscore)
-    endif (APPLE)
+Index: mscore/CMakeLists.txt
+--- mscore/CMakeLists.txt.orig
++++ mscore/CMakeLists.txt
+@@ -493,7 +493,6 @@ else (MINGW)
+             ${ALSA_LIB}
+             ${QT_LIBRARIES}
+             z
+-            dl
+             pthread
+             )
  
-    # gold does not use indirect shared libraries for symbol resolution, Linux 
only
-    if (NOT APPLE)
-       if(USE_JACK)
--         target_link_libraries(mscore dl)
-+         target_link_libraries(mscore)
-       endif(USE_JACK)
--      target_link_libraries(mscore rt)
-+      target_link_libraries(mscore)
-    endif (NOT APPLE)
+@@ -545,7 +544,7 @@ else (MINGW)
+             endif (USE_PORTMIDI)
+             target_link_libraries(mscore ${OsxFrameworks})
+       else (APPLE)
+-            target_link_libraries(mscore rt)
++            target_link_libraries(mscore)
+       endif (APPLE)
  
-    if (APPLE)
+       # gold does not use indirect shared libraries for symbol resolution, 
Linux only
+@@ -553,7 +552,7 @@ else (MINGW)
+             if (USE_JACK)
+                   target_link_libraries(mscore dl)
+             endif (USE_JACK)
+-                  target_link_libraries(mscore rt)
++                  target_link_libraries(mscore)
+       endif (NOT APPLE)
+ 
+       if (APPLE)
Index: pkg/PLIST
===================================================================
RCS file: /cvs/ports/audio/mscore/pkg/PLIST,v
retrieving revision 1.7
diff -u -p -u -p -r1.7 PLIST
--- pkg/PLIST   22 Aug 2015 02:47:27 -0000      1.7
+++ pkg/PLIST   8 May 2017 16:15:59 -0000
@@ -1,210 +1,227 @@
 @comment $OpenBSD: PLIST,v 1.7 2015/08/22 02:47:27 bcallah Exp $
 @conflict mscore-*
 @bin bin/mscore
+bin/musescore
 @man man/man1/mscore.1
+@man man/man1/musescore.1
 share/applications/mscore.desktop
+share/icons/hicolor/128x128/apps/mscore.png
+share/icons/hicolor/16x16/apps/mscore.png
+share/icons/hicolor/24x24/apps/mscore.png
+share/icons/hicolor/32x32/apps/mscore.png
+share/icons/hicolor/48x48/apps/mscore.png
 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/512x512/apps/mscore.png
 share/icons/hicolor/64x64/apps/mscore.png
+share/icons/hicolor/96x96/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
-share/mscore-2.0/
-share/mscore-2.0/demos/
-share/mscore-2.0/demos/All_Dudes.mscz
-share/mscore-2.0/demos/Reunion.mscz
-share/mscore-2.0/demos/Triumph.mscz
-share/mscore-2.0/instruments/
-share/mscore-2.0/instruments/instruments.xml
-share/mscore-2.0/manual/
-share/mscore-2.0/manual/plugins/
-share/mscore-2.0/manual/plugins/accidental.html
-share/mscore-2.0/manual/plugins/ambitus.html
-share/mscore-2.0/manual/plugins/arpeggio.html
-share/mscore-2.0/manual/plugins/articulation.html
-share/mscore-2.0/manual/plugins/barline.html
-share/mscore-2.0/manual/plugins/beam.html
-share/mscore-2.0/manual/plugins/bend.html
-share/mscore-2.0/manual/plugins/box.html
-share/mscore-2.0/manual/plugins/bracket.html
-share/mscore-2.0/manual/plugins/breath.html
-share/mscore-2.0/manual/plugins/bsymbol.html
-share/mscore-2.0/manual/plugins/chord.html
-share/mscore-2.0/manual/plugins/chordline.html
-share/mscore-2.0/manual/plugins/chordrest.html
-share/mscore-2.0/manual/plugins/clef.html
-share/mscore-2.0/manual/plugins/compound.html
-share/mscore-2.0/manual/plugins/cursor.html
-share/mscore-2.0/manual/plugins/durationelement.html
-share/mscore-2.0/manual/plugins/dynamic.html
-share/mscore-2.0/manual/plugins/element.html
-share/mscore-2.0/manual/plugins/excerpt.html
-share/mscore-2.0/manual/plugins/fbox.html
-share/mscore-2.0/manual/plugins/figuredbass.html
-share/mscore-2.0/manual/plugins/figuredbassitem.html
-share/mscore-2.0/manual/plugins/fileio.html
-share/mscore-2.0/manual/plugins/fingering.html
-share/mscore-2.0/manual/plugins/fretdiagram.html
-share/mscore-2.0/manual/plugins/fsymbol.html
-share/mscore-2.0/manual/plugins/glissando.html
-share/mscore-2.0/manual/plugins/glissandosegment.html
-share/mscore-2.0/manual/plugins/groups.html
-share/mscore-2.0/manual/plugins/hairpin.html
-share/mscore-2.0/manual/plugins/hairpinsegment.html
-share/mscore-2.0/manual/plugins/harmony.html
-share/mscore-2.0/manual/plugins/hbox.html
-share/mscore-2.0/manual/plugins/hook.html
-share/mscore-2.0/manual/plugins/image.html
-share/mscore-2.0/manual/plugins/instrumentchange.html
-share/mscore-2.0/manual/plugins/jump.html
-share/mscore-2.0/manual/plugins/keysig.html
-share/mscore-2.0/manual/plugins/layoutbreak.html
-share/mscore-2.0/manual/plugins/ledgerline.html
-share/mscore-2.0/manual/plugins/line.html
-share/mscore-2.0/manual/plugins/linesegment.html
-share/mscore-2.0/manual/plugins/lyrics.html
-share/mscore-2.0/manual/plugins/manual.css
-share/mscore-2.0/manual/plugins/marker.html
-share/mscore-2.0/manual/plugins/measure.html
-share/mscore-2.0/manual/plugins/measurebase.html
-share/mscore-2.0/manual/plugins/mscore.png
-share/mscore-2.0/manual/plugins/musescore.html
-share/mscore-2.0/manual/plugins/note.html
-share/mscore-2.0/manual/plugins/notedot.html
-share/mscore-2.0/manual/plugins/notehead.html
-share/mscore-2.0/manual/plugins/noteline.html
-share/mscore-2.0/manual/plugins/ossia.html
-share/mscore-2.0/manual/plugins/ottava.html
-share/mscore-2.0/manual/plugins/ottavasegment.html
-share/mscore-2.0/manual/plugins/page.html
-share/mscore-2.0/manual/plugins/pageformat.html
-share/mscore-2.0/manual/plugins/part.html
-share/mscore-2.0/manual/plugins/pedal.html
-share/mscore-2.0/manual/plugins/pedalsegment.html
-share/mscore-2.0/manual/plugins/plugins.html
-share/mscore-2.0/manual/plugins/qprocess.html
-share/mscore-2.0/manual/plugins/rehearsalmark.html
-share/mscore-2.0/manual/plugins/repeatmeasure.html
-share/mscore-2.0/manual/plugins/rest.html
-share/mscore-2.0/manual/plugins/score.html
-share/mscore-2.0/manual/plugins/scoreview.html
-share/mscore-2.0/manual/plugins/segment.html
-share/mscore-2.0/manual/plugins/sline.html
-share/mscore-2.0/manual/plugins/slur.html
-share/mscore-2.0/manual/plugins/slursegment.html
-share/mscore-2.0/manual/plugins/slurtie.html
-share/mscore-2.0/manual/plugins/spacer.html
-share/mscore-2.0/manual/plugins/spanner.html
-share/mscore-2.0/manual/plugins/spannersegment.html
-share/mscore-2.0/manual/plugins/stafflines.html
-share/mscore-2.0/manual/plugins/staffstate.html
-share/mscore-2.0/manual/plugins/stafftext.html
-share/mscore-2.0/manual/plugins/stem.html
-share/mscore-2.0/manual/plugins/stemslash.html
-share/mscore-2.0/manual/plugins/svggenerator.html
-share/mscore-2.0/manual/plugins/symbol.html
-share/mscore-2.0/manual/plugins/system.html
-share/mscore-2.0/manual/plugins/tbox.html
-share/mscore-2.0/manual/plugins/tempotext.html
-share/mscore-2.0/manual/plugins/text.html
-share/mscore-2.0/manual/plugins/textline.html
-share/mscore-2.0/manual/plugins/textlinesegment.html
-share/mscore-2.0/manual/plugins/tie.html
-share/mscore-2.0/manual/plugins/timesig.html
-share/mscore-2.0/manual/plugins/tremolo.html
-share/mscore-2.0/manual/plugins/tremolobar.html
-share/mscore-2.0/manual/plugins/trill.html
-share/mscore-2.0/manual/plugins/trillsegment.html
-share/mscore-2.0/manual/plugins/tuplet.html
-share/mscore-2.0/manual/plugins/vbox.html
-share/mscore-2.0/manual/plugins/volta.html
-share/mscore-2.0/manual/plugins/voltasegment.html
-share/mscore-2.0/plugins/
-share/mscore-2.0/plugins/abc_import.qml
-share/mscore-2.0/plugins/colornotes.qml
-share/mscore-2.0/plugins/createscore.qml
-share/mscore-2.0/plugins/helloqml/
-share/mscore-2.0/plugins/helloqml/helloqml.qml
-share/mscore-2.0/plugins/helloqml/translations/
-share/mscore-2.0/plugins/helloqml/translations/locale_de.qm
-share/mscore-2.0/plugins/helloqml/translations/locale_de.ts
-share/mscore-2.0/plugins/notenames.qml
-share/mscore-2.0/plugins/panel.qml
-share/mscore-2.0/plugins/random.qml
-share/mscore-2.0/plugins/random2.qml
-share/mscore-2.0/plugins/run.qml
-share/mscore-2.0/plugins/scorelist.qml
-share/mscore-2.0/plugins/view.qml
-share/mscore-2.0/plugins/walk.qml
-share/mscore-2.0/sound/
-share/mscore-2.0/sound/FluidR3Mono_GM.sf3
-share/mscore-2.0/sound/FluidR3Mono_License.md
-share/mscore-2.0/styles/
-share/mscore-2.0/styles/MuseJazz.mss
-share/mscore-2.0/styles/cchords_muse.xml
-share/mscore-2.0/styles/cchords_nrb.xml
-share/mscore-2.0/styles/cchords_rb.xml
-share/mscore-2.0/styles/cchords_sym.xml
-share/mscore-2.0/styles/chords.xml
-share/mscore-2.0/styles/chords_jazz.xml
-share/mscore-2.0/styles/chords_std.xml
-share/mscore-2.0/styles/jazzchords.xml
-share/mscore-2.0/styles/stdchords.xml
-share/mscore-2.0/templates/
-share/mscore-2.0/templates/01-General/
-share/mscore-2.0/templates/01-General/00-Blank.mscz
-share/mscore-2.0/templates/01-General/01-Treble_Clef.mscz
-share/mscore-2.0/templates/01-General/02-Bass_Clef.mscz
-share/mscore-2.0/templates/01-General/03-Grand_Staff.mscz
-share/mscore-2.0/templates/02-Choral/
-share/mscore-2.0/templates/02-Choral/01-SATB.mscz
-share/mscore-2.0/templates/02-Choral/02-SATB_+_Organ.mscz
-share/mscore-2.0/templates/02-Choral/03-SATB_+_Piano.mscz
-share/mscore-2.0/templates/02-Choral/04-SATB_Closed_Score.mscz
-share/mscore-2.0/templates/02-Choral/05-SATB_Closed_Score_+_Organ.mscz
-share/mscore-2.0/templates/02-Choral/06-SATB_Closed_Score_+_Piano.mscz
-share/mscore-2.0/templates/02-Choral/07-Voice_+_Piano.mscz
-share/mscore-2.0/templates/02-Choral/08-Barbershop_Quartet.mscz
-share/mscore-2.0/templates/02-Choral/09-Liturgical_Unmetrical.mscz
-share/mscore-2.0/templates/02-Choral/10-Liturgical_Unmetrical_+_Organ.mscz
-share/mscore-2.0/templates/03-Chamber_Music/
-share/mscore-2.0/templates/03-Chamber_Music/01-String_Quartet.mscz
-share/mscore-2.0/templates/03-Chamber_Music/02-Wind_Quartet.mscz
-share/mscore-2.0/templates/03-Chamber_Music/03-Wind_Quintet.mscz
-share/mscore-2.0/templates/03-Chamber_Music/04-Saxophone_Quartet.mscz
-share/mscore-2.0/templates/03-Chamber_Music/05-Brass_Quartet.mscz
-share/mscore-2.0/templates/03-Chamber_Music/06-Brass_Quintet.mscz
-share/mscore-2.0/templates/04-Solo/
-share/mscore-2.0/templates/04-Solo/01-Guitar.mscz
-share/mscore-2.0/templates/04-Solo/02-Guitar_+_Tablature.mscz
-share/mscore-2.0/templates/04-Solo/03-Guitar_Tablature.mscz
-share/mscore-2.0/templates/04-Solo/04-Piano.mscz
-share/mscore-2.0/templates/05-Jazz/
-share/mscore-2.0/templates/05-Jazz/01-Jazz_Lead_Sheet.mscz
-share/mscore-2.0/templates/05-Jazz/02-Big_Band.mscz
-share/mscore-2.0/templates/05-Jazz/03-Jazz_Combo.mscz
-share/mscore-2.0/templates/06-Popular/
-share/mscore-2.0/templates/06-Popular/01-Rock_Band.mscz
-share/mscore-2.0/templates/07-Band/
-share/mscore-2.0/templates/07-Band/01-Concert_Band.mscz
-share/mscore-2.0/templates/08-Orchestral/
-share/mscore-2.0/templates/08-Orchestral/01-Classical_Orchestra.mscz
-share/mscore-2.0/templates/08-Orchestral/02-Concert_Orchestra.mscz
-share/mscore-2.0/templates/08-Orchestral/03-String_Orchestra.mscz
-share/mscore-2.0/templates/drumset_fr.drm
-share/mscore-2.0/templates/orchestral.drm
-share/mscore-2.0/wallpaper/
-share/mscore-2.0/wallpaper/paper1.png
-share/mscore-2.0/wallpaper/paper2.png
-share/mscore-2.0/wallpaper/paper3.png
-share/mscore-2.0/wallpaper/paper4.png
-share/mscore-2.0/wallpaper/paper5.png
 @exec %D/bin/gtk-update-icon-cache -q -t %D/share/icons/hicolor
 @unexec-delete %D/bin/gtk-update-icon-cache -q -t %D/share/icons/hicolor
 @exec %D/bin/update-desktop-database
 @unexec-delete %D/bin/update-desktop-database
+share/mscore-2.1/
+share/mscore-2.1/demos/
+share/mscore-2.1/demos/All_Dudes.mscz
+share/mscore-2.1/demos/Reunion.mscz
+share/mscore-2.1/demos/Triumph.mscz
+share/mscore-2.1/instruments/
+share/mscore-2.1/instruments/instruments.xml
+share/mscore-2.1/manual/
+share/mscore-2.1/manual/plugins/
+share/mscore-2.1/manual/plugins/accidental.html
+share/mscore-2.1/manual/plugins/ambitus.html
+share/mscore-2.1/manual/plugins/arpeggio.html
+share/mscore-2.1/manual/plugins/articulation.html
+share/mscore-2.1/manual/plugins/barline.html
+share/mscore-2.1/manual/plugins/beam.html
+share/mscore-2.1/manual/plugins/bend.html
+share/mscore-2.1/manual/plugins/box.html
+share/mscore-2.1/manual/plugins/bracket.html
+share/mscore-2.1/manual/plugins/breath.html
+share/mscore-2.1/manual/plugins/bsymbol.html
+share/mscore-2.1/manual/plugins/chord.html
+share/mscore-2.1/manual/plugins/chordline.html
+share/mscore-2.1/manual/plugins/chordrest.html
+share/mscore-2.1/manual/plugins/clef.html
+share/mscore-2.1/manual/plugins/compound.html
+share/mscore-2.1/manual/plugins/cursor.html
+share/mscore-2.1/manual/plugins/durationelement.html
+share/mscore-2.1/manual/plugins/dynamic.html
+share/mscore-2.1/manual/plugins/element.html
+share/mscore-2.1/manual/plugins/excerpt.html
+share/mscore-2.1/manual/plugins/fbox.html
+share/mscore-2.1/manual/plugins/figuredbass.html
+share/mscore-2.1/manual/plugins/figuredbassitem.html
+share/mscore-2.1/manual/plugins/fileio.html
+share/mscore-2.1/manual/plugins/fingering.html
+share/mscore-2.1/manual/plugins/fretdiagram.html
+share/mscore-2.1/manual/plugins/fsymbol.html
+share/mscore-2.1/manual/plugins/glissando.html
+share/mscore-2.1/manual/plugins/glissandosegment.html
+share/mscore-2.1/manual/plugins/groups.html
+share/mscore-2.1/manual/plugins/hairpin.html
+share/mscore-2.1/manual/plugins/hairpinsegment.html
+share/mscore-2.1/manual/plugins/harmony.html
+share/mscore-2.1/manual/plugins/hbox.html
+share/mscore-2.1/manual/plugins/hook.html
+share/mscore-2.1/manual/plugins/image.html
+share/mscore-2.1/manual/plugins/instrumentchange.html
+share/mscore-2.1/manual/plugins/jump.html
+share/mscore-2.1/manual/plugins/keysig.html
+share/mscore-2.1/manual/plugins/layoutbreak.html
+share/mscore-2.1/manual/plugins/ledgerline.html
+share/mscore-2.1/manual/plugins/line.html
+share/mscore-2.1/manual/plugins/linesegment.html
+share/mscore-2.1/manual/plugins/lyrics.html
+share/mscore-2.1/manual/plugins/manual.css
+share/mscore-2.1/manual/plugins/marker.html
+share/mscore-2.1/manual/plugins/measure.html
+share/mscore-2.1/manual/plugins/measurebase.html
+share/mscore-2.1/manual/plugins/mscore.png
+share/mscore-2.1/manual/plugins/mtext.html
+share/mscore-2.1/manual/plugins/musescore.html
+share/mscore-2.1/manual/plugins/note.html
+share/mscore-2.1/manual/plugins/notedot.html
+share/mscore-2.1/manual/plugins/notehead.html
+share/mscore-2.1/manual/plugins/noteline.html
+share/mscore-2.1/manual/plugins/ossia.html
+share/mscore-2.1/manual/plugins/ottava.html
+share/mscore-2.1/manual/plugins/ottavasegment.html
+share/mscore-2.1/manual/plugins/page.html
+share/mscore-2.1/manual/plugins/pageformat.html
+share/mscore-2.1/manual/plugins/part.html
+share/mscore-2.1/manual/plugins/pedal.html
+share/mscore-2.1/manual/plugins/pedalsegment.html
+share/mscore-2.1/manual/plugins/plugins.html
+share/mscore-2.1/manual/plugins/qprocess.html
+share/mscore-2.1/manual/plugins/rehearsalmark.html
+share/mscore-2.1/manual/plugins/repeatmeasure.html
+share/mscore-2.1/manual/plugins/rest.html
+share/mscore-2.1/manual/plugins/score.html
+share/mscore-2.1/manual/plugins/scoreview.html
+share/mscore-2.1/manual/plugins/segment.html
+share/mscore-2.1/manual/plugins/sline.html
+share/mscore-2.1/manual/plugins/slur.html
+share/mscore-2.1/manual/plugins/slursegment.html
+share/mscore-2.1/manual/plugins/slurtie.html
+share/mscore-2.1/manual/plugins/spacer.html
+share/mscore-2.1/manual/plugins/spanner.html
+share/mscore-2.1/manual/plugins/spannersegment.html
+share/mscore-2.1/manual/plugins/stafflines.html
+share/mscore-2.1/manual/plugins/staffstate.html
+share/mscore-2.1/manual/plugins/stafftext.html
+share/mscore-2.1/manual/plugins/stem.html
+share/mscore-2.1/manual/plugins/stemslash.html
+share/mscore-2.1/manual/plugins/svggenerator.html
+share/mscore-2.1/manual/plugins/symbol.html
+share/mscore-2.1/manual/plugins/system.html
+share/mscore-2.1/manual/plugins/tbox.html
+share/mscore-2.1/manual/plugins/tempotext.html
+share/mscore-2.1/manual/plugins/textline.html
+share/mscore-2.1/manual/plugins/textlinesegment.html
+share/mscore-2.1/manual/plugins/tie.html
+share/mscore-2.1/manual/plugins/timesig.html
+share/mscore-2.1/manual/plugins/tremolo.html
+share/mscore-2.1/manual/plugins/tremolobar.html
+share/mscore-2.1/manual/plugins/trill.html
+share/mscore-2.1/manual/plugins/trillsegment.html
+share/mscore-2.1/manual/plugins/tuplet.html
+share/mscore-2.1/manual/plugins/vbox.html
+share/mscore-2.1/manual/plugins/volta.html
+share/mscore-2.1/manual/plugins/voltasegment.html
+share/mscore-2.1/plugins/
+share/mscore-2.1/plugins/abc_import.qml
+share/mscore-2.1/plugins/colornotes.qml
+share/mscore-2.1/plugins/createscore.qml
+share/mscore-2.1/plugins/helloqml/
+share/mscore-2.1/plugins/helloqml/helloqml.qml
+share/mscore-2.1/plugins/helloqml/translations/
+share/mscore-2.1/plugins/helloqml/translations/locale_de.qm
+share/mscore-2.1/plugins/helloqml/translations/locale_de.ts
+share/mscore-2.1/plugins/notenames.qml
+share/mscore-2.1/plugins/panel.qml
+share/mscore-2.1/plugins/random.qml
+share/mscore-2.1/plugins/random2.qml
+share/mscore-2.1/plugins/run.qml
+share/mscore-2.1/plugins/scorelist.qml
+share/mscore-2.1/plugins/view.qml
+share/mscore-2.1/plugins/walk.qml
+share/mscore-2.1/sound/
+share/mscore-2.1/sound/FluidR3Mono_GM.sf3
+share/mscore-2.1/sound/FluidR3Mono_License.md
+share/mscore-2.1/styles/
+share/mscore-2.1/styles/MuseJazz.mss
+share/mscore-2.1/styles/cchords_muse.xml
+share/mscore-2.1/styles/cchords_nrb.xml
+share/mscore-2.1/styles/cchords_rb.xml
+share/mscore-2.1/styles/cchords_sym.xml
+share/mscore-2.1/styles/chords.xml
+share/mscore-2.1/styles/chords_jazz.xml
+share/mscore-2.1/styles/chords_std.xml
+share/mscore-2.1/styles/jazzchords.xml
+share/mscore-2.1/styles/stdchords.xml
+share/mscore-2.1/templates/
+share/mscore-2.1/templates/01-General/
+share/mscore-2.1/templates/01-General/00-Blank.mscz
+share/mscore-2.1/templates/01-General/01-Treble_Clef.mscz
+share/mscore-2.1/templates/01-General/02-Bass_Clef.mscz
+share/mscore-2.1/templates/01-General/03-Grand_Staff.mscz
+share/mscore-2.1/templates/02-Choral/
+share/mscore-2.1/templates/02-Choral/01-SATB.mscz
+share/mscore-2.1/templates/02-Choral/02-SATB_+_Organ.mscz
+share/mscore-2.1/templates/02-Choral/03-SATB_+_Piano.mscz
+share/mscore-2.1/templates/02-Choral/04-SATB_Closed_Score.mscz
+share/mscore-2.1/templates/02-Choral/05-SATB_Closed_Score_+_Organ.mscz
+share/mscore-2.1/templates/02-Choral/06-SATB_Closed_Score_+_Piano.mscz
+share/mscore-2.1/templates/02-Choral/07-Voice_+_Piano.mscz
+share/mscore-2.1/templates/02-Choral/08-Barbershop_Quartet.mscz
+share/mscore-2.1/templates/02-Choral/09-Liturgical_Unmetrical.mscz
+share/mscore-2.1/templates/02-Choral/10-Liturgical_Unmetrical_+_Organ.mscz
+share/mscore-2.1/templates/03-Chamber_Music/
+share/mscore-2.1/templates/03-Chamber_Music/01-String_Quartet.mscz
+share/mscore-2.1/templates/03-Chamber_Music/02-Wind_Quartet.mscz
+share/mscore-2.1/templates/03-Chamber_Music/03-Wind_Quintet.mscz
+share/mscore-2.1/templates/03-Chamber_Music/04-Saxophone_Quartet.mscz
+share/mscore-2.1/templates/03-Chamber_Music/05-Brass_Quartet.mscz
+share/mscore-2.1/templates/03-Chamber_Music/06-Brass_Quintet.mscz
+share/mscore-2.1/templates/04-Solo/
+share/mscore-2.1/templates/04-Solo/01-Guitar.mscz
+share/mscore-2.1/templates/04-Solo/02-Guitar_+_Tablature.mscz
+share/mscore-2.1/templates/04-Solo/03-Guitar_Tablature.mscz
+share/mscore-2.1/templates/04-Solo/04-Piano.mscz
+share/mscore-2.1/templates/05-Jazz/
+share/mscore-2.1/templates/05-Jazz/01-Jazz_Lead_Sheet.mscz
+share/mscore-2.1/templates/05-Jazz/02-Big_Band.mscz
+share/mscore-2.1/templates/05-Jazz/03-Jazz_Combo.mscz
+share/mscore-2.1/templates/06-Popular/
+share/mscore-2.1/templates/06-Popular/01-Rock_Band.mscz
+share/mscore-2.1/templates/06-Popular/02-Bluegrass_Band.mscz
+share/mscore-2.1/templates/07-Band_and_Percussion/
+share/mscore-2.1/templates/07-Band_and_Percussion/01-Concert_Band.mscz
+share/mscore-2.1/templates/07-Band_and_Percussion/02-Small_Concert_Band.mscz
+share/mscore-2.1/templates/07-Band_and_Percussion/03-Brass_Band.mscz
+share/mscore-2.1/templates/07-Band_and_Percussion/04-Marching_Band.mscz
+share/mscore-2.1/templates/07-Band_and_Percussion/05-Small_Marching_Band.mscz
+share/mscore-2.1/templates/07-Band_and_Percussion/06-Battery_Percussion.mscz
+share/mscore-2.1/templates/07-Band_and_Percussion/07-Large_Pit_Percussion.mscz
+share/mscore-2.1/templates/07-Band_and_Percussion/08-Small_Pit_Percussion.mscz
+share/mscore-2.1/templates/08-Orchestral/
+share/mscore-2.1/templates/08-Orchestral/01-Classical_Orchestra.mscz
+share/mscore-2.1/templates/08-Orchestral/02-Concert_Orchestra.mscz
+share/mscore-2.1/templates/08-Orchestral/03-String_Orchestra.mscz
+share/mscore-2.1/templates/drumset_fr.drm
+share/mscore-2.1/templates/orchestral.drm
+share/mscore-2.1/wallpaper/
+share/mscore-2.1/wallpaper/paper1.png
+share/mscore-2.1/wallpaper/paper2.png
+share/mscore-2.1/wallpaper/paper3.png
+share/mscore-2.1/wallpaper/paper4.png
+share/mscore-2.1/wallpaper/paper5.png

Reply via email to