Hi ports --

Attached is an update to MuseScore. Wondering if there's any Ninja gurus here who can figure out the circular dependencies going on (see diff). I had to use USE_NINJA=No in order to get MuseScore to build.

In case there isn't a good Ninja solution, ok?

~Brian

Index: Makefile
===================================================================
RCS file: /cvs/ports/audio/mscore/Makefile,v
retrieving revision 1.32
diff -u -p -r1.32 Makefile
--- Makefile	30 Dec 2017 14:12:20 -0000	1.32
+++ Makefile	24 Apr 2018 02:52:43 -0000
@@ -2,8 +2,7 @@
 
 BROKEN-hppa =	ICE on moc_qtsingleapplication.cxx
 
-V =		2.1
-REVISION =	1
+V =		2.2.1
 COMMENT =	WYSIWYG music notation software (MuseScore)
 DISTNAME =	MuseScore-${V}
 PKGNAME =	musescore-${V}
@@ -25,6 +24,9 @@ WANTLIB += ${COMPILER_LIBCXX}
 
 MASTER_SITES =	http://ftp.osuosl.org/pub/musescore/releases/MuseScore-${V}/
 
+# C++11
+COMPILER =	base-clang ports-gcc ports-clang
+
 MODULES =	devel/cmake \
 		x11/qt5
 
@@ -45,9 +47,16 @@ RUN_DEPENDS =	devel/desktop-file-utils \
 CONFIGURE_ARGS =-DCMAKE_INSTALL_PREFIX="${PREFIX}" \
 		-DBUILD_ALSA=OFF \
 		-DBUILD_JACK=OFF \
+		-DBUILD_PORTMIDI=OFF \
 		-DBUILD_PULSEAUDIO=OFF \
 		-DUSE_SYSTEM_FREETYPE=ON
 
+# ninja: error: dependency cycle: all.h -> mops1 -> CMakeFiles/mops1 -> all.h
+USE_NINJA =	No
+
 NO_TEST =	Yes
+
+# MuseScore-2.2.1 is a bad zip file...
+WRKDIST =	${WRKDIR}
 
 .include <bsd.port.mk>
Index: distinfo
===================================================================
RCS file: /cvs/ports/audio/mscore/distinfo,v
retrieving revision 1.6
diff -u -p -r1.6 distinfo
--- distinfo	6 Jul 2017 08:01:09 -0000	1.6
+++ distinfo	24 Apr 2018 02:52:43 -0000
@@ -1,2 +1,2 @@
-SHA256 (MuseScore-2.1.zip) = UbL9CdjQr/+EzmruDhSFRGVGJhaw75KtjdIyUlfTvBI=
-SIZE (MuseScore-2.1.zip) = 55072555
+SHA256 (MuseScore-2.2.1.zip) = Pfasv5JpNr3Iubc/HBPM9IYFywPMQhCASFrBDmEm/mg=
+SIZE (MuseScore-2.2.1.zip) = 78460909
Index: patches/patch-CMakeLists_txt
===================================================================
RCS file: /cvs/ports/audio/mscore/patches/patch-CMakeLists_txt,v
retrieving revision 1.4
diff -u -p -r1.4 patch-CMakeLists_txt
--- patches/patch-CMakeLists_txt	6 Jul 2017 08:01:09 -0000	1.4
+++ patches/patch-CMakeLists_txt	24 Apr 2018 02:52:43 -0000
@@ -2,16 +2,16 @@ $OpenBSD: patch-CMakeLists_txt,v 1.4 201
 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 -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)
+@@ -170,7 +170,7 @@ if ("${CMAKE_CXX_COMPILER_ID}" MATCHES "GNU")
+ endif ("${CMAKE_CXX_COMPILER_ID}" MATCHES "GNU")
  
-@@ -268,13 +268,13 @@ endif (BUILD_ALSA)
+ set(CMAKE_CXX_FLAGS_DEBUG   "-g")
+-set(CMAKE_CXX_FLAGS_RELEASE "-O2 -DNDEBUG -DQT_NO_DEBUG")
++set(CMAKE_CXX_FLAGS_RELEASE "-DNDEBUG -DQT_NO_DEBUG")
+ 
+ if (APPLE)
+    set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -fPIC -stdlib=libc++ -Wno-inconsistent-missing-override")
+@@ -328,13 +328,13 @@ endif (BUILD_ALSA)
  ## MIDI
  ##
  
@@ -28,7 +28,7 @@ Index: CMakeLists.txt
  
  ##
  ## pulseaudio
-@@ -282,8 +282,8 @@ endif (APPLE OR MINGW)
+@@ -342,8 +342,8 @@ endif (APPLE OR MINGW)
  
  if (BUILD_PULSEAUDIO)
        if (PULSEAUDIO_FOUND)
@@ -39,7 +39,7 @@ Index: CMakeLists.txt
        else (PULSEAUDIO_FOUND)
              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)
+@@ -604,7 +604,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
@@ -48,7 +48,7 @@ Index: CMakeLists.txt
      # 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)
+@@ -615,7 +615,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}'
              )
@@ -57,7 +57,7 @@ Index: CMakeLists.txt
       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(
+@@ -635,7 +635,7 @@ execute_process(
      WORKING_DIRECTORY ${PROJECT_BINARY_DIR}
      )
  if (NOT MINGW)
@@ -66,7 +66,7 @@ Index: CMakeLists.txt
  endif(NOT MINGW)
  
  precompiled_header(QT_INCLUDES all ${BUILD_PCH})
-@@ -663,18 +663,18 @@ include(Packaging)
+@@ -721,16 +721,16 @@ include(Packaging)
  ##  custom target for translation generation
  ##
  
@@ -82,10 +82,8 @@ Index: CMakeLists.txt
     )
  
 -add_custom_target(lrelease
-+add_custom_target(lrelease-qt5
-    COMMAND ${PROJECT_SOURCE_DIR}/build/gen-qt-projectfile ${PROJECT_SOURCE_DIR} > mscore.pro
-    COMMAND ${PROJECT_SOURCE_DIR}/build/gen-qt-projectfile ${PROJECT_SOURCE_DIR}/share/instruments > instruments.pro
 -   COMMAND ${QT_LRELEASE_EXECUTABLE} ${PROJECT_SOURCE_DIR}/share/locale/*.ts
++add_custom_target(lrelease-qt5
 +   COMMAND lrelease-qt5 ${PROJECT_SOURCE_DIR}/share/locale/*.ts
     WORKING_DIRECTORY ${PROJECT_BINARY_DIR}
     )
Index: patches/patch-build_CreatePrecompiledHeader_cmake
===================================================================
RCS file: patches/patch-build_CreatePrecompiledHeader_cmake
diff -N patches/patch-build_CreatePrecompiledHeader_cmake
--- patches/patch-build_CreatePrecompiledHeader_cmake	25 Jul 2017 00:03:12 -0000	1.1
+++ /dev/null	1 Jan 1970 00:00:00 -0000
@@ -1,25 +0,0 @@
-$OpenBSD: patch-build_CreatePrecompiledHeader_cmake,v 1.1 2017/07/25 00:03:12 zhuk Exp $
-Unbreak build with non-GCC. The upstream pull request:
-https://github.com/musescore/MuseScore/pull/3249
-
-Index: build/CreatePrecompiledHeader.cmake
---- build/CreatePrecompiledHeader.cmake.orig
-+++ build/CreatePrecompiledHeader.cmake
-@@ -1,4 +1,7 @@
- macro( precompiled_header includes header_name build_pch)
-+    set (PCH_HEADER "${PROJECT_BINARY_DIR}/${header_name}.h")
-+    set (PCH_INCLUDE "-include ${PCH_HEADER}")
-+
-     if( ${CMAKE_COMPILER_IS_GNUCXX})
-         message(STATUS "precompiled header generation")
-         # Get the compiler flags for this build type
-@@ -28,9 +31,6 @@ macro( precompiled_header includes header_name build_p
- 
-         # Prepare the compile flags var for passing to GCC
-         separate_arguments( compile_flags )
--
--        set (PCH_HEADER "${PROJECT_BINARY_DIR}/${header_name}.h")
--        set (PCH_INCLUDE "-include ${PCH_HEADER}")
- 
-         if( ${build_pch} )
-             set (PCH ${PROJECT_BINARY_DIR}/${header_name}.h.gch)
Index: patches/patch-build_gen-qt-projectfile
===================================================================
RCS file: /cvs/ports/audio/mscore/patches/patch-build_gen-qt-projectfile,v
retrieving revision 1.3
diff -u -p -r1.3 patch-build_gen-qt-projectfile
--- patches/patch-build_gen-qt-projectfile	6 Jul 2017 08:01:09 -0000	1.3
+++ patches/patch-build_gen-qt-projectfile	24 Apr 2018 02:52:43 -0000
@@ -2,8 +2,8 @@ $OpenBSD: patch-build_gen-qt-projectfile
 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"
- 
+@@ -13,14 +13,14 @@ for a in $uis; do
+ echo
  
  echo "FORMS = \\"
 -uis=`find $1 -name "*.ui"`
Index: patches/patch-mscore_CMakeLists_txt
===================================================================
RCS file: /cvs/ports/audio/mscore/patches/patch-mscore_CMakeLists_txt,v
retrieving revision 1.6
diff -u -p -r1.6 patch-mscore_CMakeLists_txt
--- patches/patch-mscore_CMakeLists_txt	6 Jul 2017 08:01:09 -0000	1.6
+++ patches/patch-mscore_CMakeLists_txt	24 Apr 2018 02:52:43 -0000
@@ -2,15 +2,7 @@ $OpenBSD: patch-mscore_CMakeLists_txt,v 
 Index: mscore/CMakeLists.txt
 --- mscore/CMakeLists.txt.orig
 +++ mscore/CMakeLists.txt
-@@ -493,7 +493,6 @@ else (MINGW)
-             ${ALSA_LIB}
-             ${QT_LIBRARIES}
-             z
--            dl
-             pthread
-             )
- 
-@@ -545,7 +544,7 @@ else (MINGW)
+@@ -552,7 +552,7 @@ else (MINGW)
              endif (USE_PORTMIDI)
              target_link_libraries(mscore ${OsxFrameworks})
        else (APPLE)
@@ -19,9 +11,9 @@ Index: mscore/CMakeLists.txt
        endif (APPLE)
  
        # gold does not use indirect shared libraries for symbol resolution, Linux only
-@@ -553,7 +552,7 @@ else (MINGW)
+@@ -560,7 +560,7 @@ else (MINGW)
              if (USE_JACK)
-                   target_link_libraries(mscore dl)
+                   target_link_libraries(mscore ${CMAKE_DL_LIBS})
              endif (USE_JACK)
 -                  target_link_libraries(mscore rt)
 +                  target_link_libraries(mscore)
Index: pkg/PLIST
===================================================================
RCS file: /cvs/ports/audio/mscore/pkg/PLIST,v
retrieving revision 1.8
diff -u -p -r1.8 PLIST
--- pkg/PLIST	6 Jul 2017 08:01:09 -0000	1.8
+++ pkg/PLIST	24 Apr 2018 02:52:43 -0000
@@ -23,204 +23,204 @@ share/icons/hicolor/scalable/mimetypes/a
 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.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
+share/mscore-2.2/
+share/mscore-2.2/demos/
+share/mscore-2.2/demos/All_Dudes.mscz
+share/mscore-2.2/demos/Reunion.mscz
+share/mscore-2.2/demos/Triumph.mscz
+share/mscore-2.2/instruments/
+share/mscore-2.2/instruments/instruments.xml
+share/mscore-2.2/manual/
+share/mscore-2.2/manual/plugins/
+share/mscore-2.2/manual/plugins/accidental.html
+share/mscore-2.2/manual/plugins/ambitus.html
+share/mscore-2.2/manual/plugins/arpeggio.html
+share/mscore-2.2/manual/plugins/articulation.html
+share/mscore-2.2/manual/plugins/barline.html
+share/mscore-2.2/manual/plugins/beam.html
+share/mscore-2.2/manual/plugins/bend.html
+share/mscore-2.2/manual/plugins/box.html
+share/mscore-2.2/manual/plugins/bracket.html
+share/mscore-2.2/manual/plugins/breath.html
+share/mscore-2.2/manual/plugins/bsymbol.html
+share/mscore-2.2/manual/plugins/chord.html
+share/mscore-2.2/manual/plugins/chordline.html
+share/mscore-2.2/manual/plugins/chordrest.html
+share/mscore-2.2/manual/plugins/clef.html
+share/mscore-2.2/manual/plugins/compound.html
+share/mscore-2.2/manual/plugins/cursor.html
+share/mscore-2.2/manual/plugins/durationelement.html
+share/mscore-2.2/manual/plugins/dynamic.html
+share/mscore-2.2/manual/plugins/element.html
+share/mscore-2.2/manual/plugins/excerpt.html
+share/mscore-2.2/manual/plugins/fbox.html
+share/mscore-2.2/manual/plugins/figuredbass.html
+share/mscore-2.2/manual/plugins/figuredbassitem.html
+share/mscore-2.2/manual/plugins/fileio.html
+share/mscore-2.2/manual/plugins/fingering.html
+share/mscore-2.2/manual/plugins/fretdiagram.html
+share/mscore-2.2/manual/plugins/fsymbol.html
+share/mscore-2.2/manual/plugins/glissando.html
+share/mscore-2.2/manual/plugins/glissandosegment.html
+share/mscore-2.2/manual/plugins/groups.html
+share/mscore-2.2/manual/plugins/hairpin.html
+share/mscore-2.2/manual/plugins/hairpinsegment.html
+share/mscore-2.2/manual/plugins/harmony.html
+share/mscore-2.2/manual/plugins/hbox.html
+share/mscore-2.2/manual/plugins/hook.html
+share/mscore-2.2/manual/plugins/image.html
+share/mscore-2.2/manual/plugins/instrumentchange.html
+share/mscore-2.2/manual/plugins/jump.html
+share/mscore-2.2/manual/plugins/keysig.html
+share/mscore-2.2/manual/plugins/layoutbreak.html
+share/mscore-2.2/manual/plugins/ledgerline.html
+share/mscore-2.2/manual/plugins/line.html
+share/mscore-2.2/manual/plugins/linesegment.html
+share/mscore-2.2/manual/plugins/lyrics.html
+share/mscore-2.2/manual/plugins/manual.css
+share/mscore-2.2/manual/plugins/marker.html
+share/mscore-2.2/manual/plugins/measure.html
+share/mscore-2.2/manual/plugins/measurebase.html
+share/mscore-2.2/manual/plugins/mscore.png
+share/mscore-2.2/manual/plugins/mtext.html
+share/mscore-2.2/manual/plugins/musescore.html
+share/mscore-2.2/manual/plugins/note.html
+share/mscore-2.2/manual/plugins/notedot.html
+share/mscore-2.2/manual/plugins/notehead.html
+share/mscore-2.2/manual/plugins/noteline.html
+share/mscore-2.2/manual/plugins/ossia.html
+share/mscore-2.2/manual/plugins/ottava.html
+share/mscore-2.2/manual/plugins/ottavasegment.html
+share/mscore-2.2/manual/plugins/page.html
+share/mscore-2.2/manual/plugins/pageformat.html
+share/mscore-2.2/manual/plugins/part.html
+share/mscore-2.2/manual/plugins/pedal.html
+share/mscore-2.2/manual/plugins/pedalsegment.html
+share/mscore-2.2/manual/plugins/plugins.html
+share/mscore-2.2/manual/plugins/qprocess.html
+share/mscore-2.2/manual/plugins/rehearsalmark.html
+share/mscore-2.2/manual/plugins/repeatmeasure.html
+share/mscore-2.2/manual/plugins/rest.html
+share/mscore-2.2/manual/plugins/score.html
+share/mscore-2.2/manual/plugins/scoreview.html
+share/mscore-2.2/manual/plugins/segment.html
+share/mscore-2.2/manual/plugins/sline.html
+share/mscore-2.2/manual/plugins/slur.html
+share/mscore-2.2/manual/plugins/slursegment.html
+share/mscore-2.2/manual/plugins/slurtie.html
+share/mscore-2.2/manual/plugins/spacer.html
+share/mscore-2.2/manual/plugins/spanner.html
+share/mscore-2.2/manual/plugins/spannersegment.html
+share/mscore-2.2/manual/plugins/stafflines.html
+share/mscore-2.2/manual/plugins/staffstate.html
+share/mscore-2.2/manual/plugins/stafftext.html
+share/mscore-2.2/manual/plugins/stem.html
+share/mscore-2.2/manual/plugins/stemslash.html
+share/mscore-2.2/manual/plugins/svggenerator.html
+share/mscore-2.2/manual/plugins/symbol.html
+share/mscore-2.2/manual/plugins/system.html
+share/mscore-2.2/manual/plugins/tbox.html
+share/mscore-2.2/manual/plugins/tempotext.html
+share/mscore-2.2/manual/plugins/textline.html
+share/mscore-2.2/manual/plugins/textlinesegment.html
+share/mscore-2.2/manual/plugins/tie.html
+share/mscore-2.2/manual/plugins/timesig.html
+share/mscore-2.2/manual/plugins/tremolo.html
+share/mscore-2.2/manual/plugins/tremolobar.html
+share/mscore-2.2/manual/plugins/trill.html
+share/mscore-2.2/manual/plugins/trillsegment.html
+share/mscore-2.2/manual/plugins/tuplet.html
+share/mscore-2.2/manual/plugins/vbox.html
+share/mscore-2.2/manual/plugins/volta.html
+share/mscore-2.2/manual/plugins/voltasegment.html
+share/mscore-2.2/plugins/
+share/mscore-2.2/plugins/abc_import.qml
+share/mscore-2.2/plugins/colornotes.qml
+share/mscore-2.2/plugins/createscore.qml
+share/mscore-2.2/plugins/helloqml/
+share/mscore-2.2/plugins/helloqml/helloqml.qml
+share/mscore-2.2/plugins/helloqml/translations/
+share/mscore-2.2/plugins/helloqml/translations/locale_de.qm
+share/mscore-2.2/plugins/helloqml/translations/locale_de.ts
+share/mscore-2.2/plugins/notenames.qml
+share/mscore-2.2/plugins/panel.qml
+share/mscore-2.2/plugins/random.qml
+share/mscore-2.2/plugins/random2.qml
+share/mscore-2.2/plugins/run.qml
+share/mscore-2.2/plugins/scorelist.qml
+share/mscore-2.2/plugins/view.qml
+share/mscore-2.2/plugins/walk.qml
+share/mscore-2.2/sound/
+share/mscore-2.2/sound/MuseScore_General-License.md
+share/mscore-2.2/sound/MuseScore_General.sf3
+share/mscore-2.2/styles/
+share/mscore-2.2/styles/MuseJazz.mss
+share/mscore-2.2/styles/cchords_muse.xml
+share/mscore-2.2/styles/cchords_nrb.xml
+share/mscore-2.2/styles/cchords_rb.xml
+share/mscore-2.2/styles/cchords_sym.xml
+share/mscore-2.2/styles/chords.xml
+share/mscore-2.2/styles/chords_jazz.xml
+share/mscore-2.2/styles/chords_std.xml
+share/mscore-2.2/styles/jazzchords.xml
+share/mscore-2.2/styles/stdchords.xml
+share/mscore-2.2/templates/
+share/mscore-2.2/templates/01-General/
+share/mscore-2.2/templates/01-General/00-Blank.mscz
+share/mscore-2.2/templates/01-General/01-Treble_Clef.mscz
+share/mscore-2.2/templates/01-General/02-Bass_Clef.mscz
+share/mscore-2.2/templates/01-General/03-Grand_Staff.mscz
+share/mscore-2.2/templates/02-Choral/
+share/mscore-2.2/templates/02-Choral/01-SATB.mscz
+share/mscore-2.2/templates/02-Choral/02-SATB_+_Organ.mscz
+share/mscore-2.2/templates/02-Choral/03-SATB_+_Piano.mscz
+share/mscore-2.2/templates/02-Choral/04-SATB_Closed_Score.mscz
+share/mscore-2.2/templates/02-Choral/05-SATB_Closed_Score_+_Organ.mscz
+share/mscore-2.2/templates/02-Choral/06-SATB_Closed_Score_+_Piano.mscz
+share/mscore-2.2/templates/02-Choral/07-Voice_+_Piano.mscz
+share/mscore-2.2/templates/02-Choral/08-Barbershop_Quartet.mscz
+share/mscore-2.2/templates/02-Choral/09-Liturgical_Unmetrical.mscz
+share/mscore-2.2/templates/02-Choral/10-Liturgical_Unmetrical_+_Organ.mscz
+share/mscore-2.2/templates/03-Chamber_Music/
+share/mscore-2.2/templates/03-Chamber_Music/01-String_Quartet.mscz
+share/mscore-2.2/templates/03-Chamber_Music/02-Wind_Quartet.mscz
+share/mscore-2.2/templates/03-Chamber_Music/03-Wind_Quintet.mscz
+share/mscore-2.2/templates/03-Chamber_Music/04-Saxophone_Quartet.mscz
+share/mscore-2.2/templates/03-Chamber_Music/05-Brass_Quartet.mscz
+share/mscore-2.2/templates/03-Chamber_Music/06-Brass_Quintet.mscz
+share/mscore-2.2/templates/04-Solo/
+share/mscore-2.2/templates/04-Solo/01-Guitar.mscz
+share/mscore-2.2/templates/04-Solo/02-Guitar_+_Tablature.mscz
+share/mscore-2.2/templates/04-Solo/03-Guitar_Tablature.mscz
+share/mscore-2.2/templates/04-Solo/04-Piano.mscz
+share/mscore-2.2/templates/05-Jazz/
+share/mscore-2.2/templates/05-Jazz/01-Jazz_Lead_Sheet.mscz
+share/mscore-2.2/templates/05-Jazz/02-Big_Band.mscz
+share/mscore-2.2/templates/05-Jazz/03-Jazz_Combo.mscz
+share/mscore-2.2/templates/06-Popular/
+share/mscore-2.2/templates/06-Popular/01-Rock_Band.mscz
+share/mscore-2.2/templates/06-Popular/02-Bluegrass_Band.mscz
+share/mscore-2.2/templates/07-Band_and_Percussion/
+share/mscore-2.2/templates/07-Band_and_Percussion/01-Concert_Band.mscz
+share/mscore-2.2/templates/07-Band_and_Percussion/02-Small_Concert_Band.mscz
+share/mscore-2.2/templates/07-Band_and_Percussion/03-Brass_Band.mscz
+share/mscore-2.2/templates/07-Band_and_Percussion/04-Marching_Band.mscz
+share/mscore-2.2/templates/07-Band_and_Percussion/05-Small_Marching_Band.mscz
+share/mscore-2.2/templates/07-Band_and_Percussion/06-Battery_Percussion.mscz
+share/mscore-2.2/templates/07-Band_and_Percussion/07-Large_Pit_Percussion.mscz
+share/mscore-2.2/templates/07-Band_and_Percussion/08-Small_Pit_Percussion.mscz
+share/mscore-2.2/templates/08-Orchestral/
+share/mscore-2.2/templates/08-Orchestral/01-Classical_Orchestra.mscz
+share/mscore-2.2/templates/08-Orchestral/02-Concert_Orchestra.mscz
+share/mscore-2.2/templates/08-Orchestral/03-String_Orchestra.mscz
+share/mscore-2.2/templates/drumset_fr.drm
+share/mscore-2.2/templates/orchestral.drm
+share/mscore-2.2/wallpaper/
+share/mscore-2.2/wallpaper/paper1.png
+share/mscore-2.2/wallpaper/paper2.png
+share/mscore-2.2/wallpaper/paper3.png
+share/mscore-2.2/wallpaper/paper4.png
+share/mscore-2.2/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

Reply via email to