diff -urN /usr/ports/audio/musescore/Makefile audio/musescore/Makefile --- /usr/ports/audio/musescore/Makefile 2015-06-11 05:08:57.905896000 +0900 +++ audio/musescore/Makefile 2015-08-04 21:00:00.000000000 +0900 @@ -2,59 +2,62 @@ # $FreeBSD: head/audio/musescore/Makefile 389106 2015-06-10 17:34:51Z amdmi3 $ PORTNAME= musescore -PORTVERSION= 1.3 -PORTREVISION= 5 +PORTVERSION= 2.0.2 CATEGORIES= audio -MASTER_SITES= SF/mscore/mscore/MuseScore-${PORTVERSION}/ -DISTNAME= mscore-${PORTVERSION} +MASTER_SITES= SF/mscore/mscore/MuseScore-${PORTVERSION} +DISTNAME= MuseScore-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Free music composition & notation software LICENSE= GPLv2 -LICENSE_FILE= ${WRKSRC}/mscore/COPYING - -BUILD_DEPENDS= qtscriptgenerator>0:${PORTSDIR}/devel/qtscriptgenerator -LIB_DEPENDS= libsndfile.so:${PORTSDIR}/audio/libsndfile -RUN_DEPENDS= qtscriptgenerator>0:${PORTSDIR}/devel/qtscriptgenerator - -USES= desktop-file-utils tar:bzip2 cmake:outsource -USE_QT4= corelib designer gui network script scripttools svg webkit xml \ - linguisttools_build moc_build qmake_build rcc_build uic_build -CMAKE_SOURCE_PATH= ${WRKSRC}/mscore -CMAKE_ARGS= -DBUILD_ALSA:BOOL=OFF -ALL_TARGET= lrelease all -MAKE_JOBS_UNSAFE= yes - -DATADIR= ${PREFIX}/share/mscore-${PORTVERSION} - -PORTDOCS= ChangeLog NEWS README README.scripts - -OPTIONS_DEFINE= DOCS JACK PORTAUDIO -OPTIONS_DEFAULT=PORTAUDIO - -OPTIONS_SUB= yes +#LICENSE_FILE= ${WRKSRC}/mscore/COPYING +LIB_DEPENDS= libmp3lame.so:${PORTSDIR}/audio/lame \ + libsndfile.so:${PORTSDIR}/audio/libsndfile \ + libvorbis.so:${PORTSDIR}/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} + +OPTIONS_DEFINE= ALSA JACK PORTAUDIO PULSEAUDIO +OPTIONS_DEFAULT= PORTAUDIO + +ALSA_LIB_DEPENDS= libasound.so:${PORTSDIR}/audio/alsa-lib +ALSA_CMAKE_ON= -DBUILD_ALSA:BOOL=ON +ALSA_CMAKE_OFF= -DBUILD_ALSA:BOOL=OFF JACK_LIB_DEPENDS= libjack.so:${PORTSDIR}/audio/jack JACK_CMAKE_ON= -DBUILD_JACK:BOOL=ON JACK_CMAKE_OFF= -DBUILD_JACK:BOOL=OFF - PORTAUDIO_LIB_DEPENDS= libportaudio.so:${PORTSDIR}/audio/portaudio PORTAUDIO_CMAKE_ON= -DBUILD_PORTAUDIO:BOOL=ON PORTAUDIO_CMAKE_OFF= -DBUILD_PORTAUDIO:BOOL=OFF +PULSEAUDIO_LIB_DEPENDS= libpulse.so:${PORTSDIR}/audio/pulseaudio +PULSEAUDIO_CMAKE_ON= -DBUILD_PULSEAUDIO:BOOL=ON +PULSEAUDIO_CMAKE_OFF= -DBUILD_PULSEAUDIO:BOOL=OFF + +.include + +.if ${CHOSEN_COMPILER_TYPE} == clang +CXXFLAGS+= -Wno-inconsistent-missing-override +.endif post-patch: @${FIND} ${WRKSRC} -name "CMakeLists.txt" -print0 | ${XARGS} -0 \ ${REINPLACE_CMD} -e \ - 's|%%LOCALBASE%%|${LOCALBASE}|g ; \ - s|-g -Wall|-Wall|g' -# add newline -.for file in mscore.cpp updatechecker.h webpage.cpp - @${ECHO_CMD} >> ${WRKSRC}/mscore/mscore/${file} -.endfor - -post-install: - @${MKDIR} ${STAGEDIR}${DOCSDIR} - ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/mscore/|} ${STAGEDIR}${DOCSDIR} + '/RELEASE/s|-O2 || ; \ + /COMPILE_FLAGS/s|-g || ; \ + /COMPILE_FLAGS/s|$${PCH_INCLUDE} |-include $${PROJECT_BINARY_DIR}/all.h |' + @${REINPLACE_CMD} -e \ + 's||| ; \ + s||| ; \ + s||| ; \ + s|||' ${WRKSRC}/all.h -.include +.include diff -urN /usr/ports/audio/musescore/distinfo audio/musescore/distinfo --- /usr/ports/audio/musescore/distinfo 2014-06-21 17:53:51.000000000 +0900 +++ audio/musescore/distinfo 2015-08-04 21:00:00.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (mscore-1.3.tar.bz2) = a0b60cc892ac0266c58fc6392be72c0a21c3aa7fd0b6e4f1dddad1c8b36be683 -SIZE (mscore-1.3.tar.bz2) = 94704857 +SHA256 (MuseScore-2.0.2.zip) = f1cca682e10f39ef04743343e9b7fa84c570ceef74e46bf7210b088d2fb81262 +SIZE (MuseScore-2.0.2.zip) = 47738511 diff -urN /usr/ports/audio/musescore/files/patch-CMakeLists.txt audio/musescore/files/patch-CMakeLists.txt --- /usr/ports/audio/musescore/files/patch-CMakeLists.txt 1970-01-01 09:00:00.000000000 +0900 +++ audio/musescore/files/patch-CMakeLists.txt 2015-08-04 21:00:00.000000000 +0900 @@ -0,0 +1,79 @@ +--- CMakeLists.txt.orig 2015-07-16 10:58:43 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. diff -urN /usr/ports/audio/musescore/files/patch-mscore-CMakeLists.txt audio/musescore/files/patch-mscore-CMakeLists.txt --- /usr/ports/audio/musescore/files/patch-mscore-CMakeLists.txt 2014-06-21 17:53:51.000000000 +0900 +++ audio/musescore/files/patch-mscore-CMakeLists.txt 2015-08-04 21:00:00.000000000 +0900 @@ -1,96 +1,20 @@ ---- mscore/CMakeLists.txt.orig 2012-03-13 22:37:09.000000000 +0900 -+++ mscore/CMakeLists.txt 2012-06-09 20:56:18.000000000 +0900 -@@ -32,7 +32,7 @@ - set(HAS_AUDIOFILE TRUE) # requires libsndfile - set(OSC TRUE) # osc remote control - --set(BUILD_SCRIPTGEN TRUE) #Generate Qt script bindings. (collides with qtscriptgenerator project on several distrib) -+set(BUILD_SCRIPTGEN FALSE) #Generate Qt script bindings. (collides with qtscriptgenerator project on several distrib) - set(STATIC_SCRIPT_BINDINGS FALSE) - set(USE_SSE FALSE) - -@@ -151,6 +151,8 @@ - ## alsa >= 1.0.0 - ## - -+SET(BUILD_ALSA AUTO CACHE STRING "Build with support for ALSA. [ON/OFF/AUTO]") -+IF(BUILD_ALSA) - if (APPLE OR MINGW) - message("Disabling ALSA support due to OS X or MINGW build.") - set (USE_ALSA 0) -@@ -165,6 +167,11 @@ - 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) - - - ## -@@ -219,6 +226,8 @@ - ## portaudio - ## - -+SET(BUILD_PORTAUDIO AUTO CACHE STRING "Build with support for portaudio. [ON/OFF/AUTO]") -+IF(BUILD_PORTAUDIO) - if (MINGW) - set ( USE_PORTAUDIO 1 ) - set ( USE_PORTMIDI 1 ) -@@ -237,6 +246,9 @@ - set (USE_PORTMIDI 0) - endif (APPLE) - endif (MINGW) -+ELSE(BUILD_PORTAUDIO) -+ MESSAGE(STATUS "portaudio support disabled") -+ENDIF(BUILD_PORTAUDIO) - - ## - ## produce config.h file -@@ -257,8 +269,8 @@ - WORKING_DIRECTORY ${PROJECT_BINARY_DIR} - ) - --set(CMAKE_CXX_FLAGS_DEBUG "-g") --set(CMAKE_CXX_FLAGS_RELEASE "-O2 -DNDEBUG") -+#set(CMAKE_CXX_FLAGS_DEBUG "-g") -+#set(CMAKE_CXX_FLAGS_RELEASE "-O2 -DNDEBUG") - - if (CMAKE_BUILD_TYPE STREQUAL "DEBUG") - if (MINGW) -@@ -294,7 +306,9 @@ - - - ADD_CUSTOM_TARGET(mops1 DEPENDS ${PROJECT_BINARY_DIR}/all.h) --ADD_CUSTOM_TARGET(mops2 DEPENDS ${PCH}) -+if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU") -+ADD_CUSTOM_TARGET(mops2 DEPENDS ${PCH}) -+endif (CMAKE_CXX_COMPILER_ID STREQUAL "GNU") - - - if (NOT MINGW AND NOT APPLE) -@@ -321,9 +335,10 @@ - ${PROJECT_SOURCE_DIR}/mscore - ${PROJECT_BINARY_DIR} - ${PROJECT_BINARY_DIR}/mscore -+ ${PORTAUDIO_INCDIR} - ${ALSA_INCDIR} - ${JACK_INCDIR} -- ${PORTAUDIO_INCDIR} -+ %%LOCALBASE%%/include - ) - - ## -@@ -427,8 +442,8 @@ - - add_custom_target(lrelease - COMMAND ${PROJECT_SOURCE_DIR}/gen-qt-projectfile ${PROJECT_SOURCE_DIR} > mscore.pro -- COMMAND lrelease ${PROJECT_SOURCE_DIR}/share/locale/*.ts -- COMMAND lrelease ${PROJECT_SOURCE_DIR}/share/plugins/musescore.com/translations/*.ts -+ COMMAND lrelease-qt4 ${PROJECT_SOURCE_DIR}/share/locale/*.ts -+ COMMAND lrelease-qt4 ${PROJECT_SOURCE_DIR}/share/plugins/musescore.com/translations/*.ts - WORKING_DIRECTORY ${PROJECT_BINARY_DIR} - ) +--- mscore/CMakeLists.txt.orig 2015-07-16 10:58:43 UTC ++++ mscore/CMakeLists.txt +@@ -474,7 +474,6 @@ else (MINGW) + ${ALSA_LIB} + ${QT_LIBRARIES} + z +- dl + pthread + ) + if (USE_PORTAUDIO) +@@ -509,9 +508,6 @@ + + # 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) diff -urN /usr/ports/audio/musescore/files/patch-mscore-mscore-CMakeLists.txt audio/musescore/files/patch-mscore-mscore-CMakeLists.txt --- /usr/ports/audio/musescore/files/patch-mscore-mscore-CMakeLists.txt 2014-06-21 17:53:51.000000000 +0900 +++ audio/musescore/files/patch-mscore-mscore-CMakeLists.txt 1970-01-01 09:00:00.000000000 +0900 @@ -1,52 +0,0 @@ ---- mscore/mscore/CMakeLists.txt.orig 2012-03-13 22:32:27.000000000 +0900 -+++ mscore/mscore/CMakeLists.txt 2012-06-09 20:57:43.000000000 +0900 -@@ -32,7 +32,7 @@ - - SET_SOURCE_FILES_PROPERTIES(revision.h PROPERTIES GENERATED TRUE) - --include_directories( -+include_directories(BEFORE - ${CMAKE_CURRENT_BINARY_DIR} - ${PROJECT_SOURCE_DIR} - ${PROJECT_SOURCE_DIR}/scriptdebug -@@ -160,9 +160,6 @@ - - # gold does not use indirect shared libraries for symbol resolution, Linux only - if (NOT MINGW AND NOT APPLE) -- if(USE_JACK) -- target_link_libraries(mscore dl) -- endif(USE_JACK) - target_link_libraries(mscore rt) - endif (NOT MINGW AND NOT APPLE) - -@@ -264,8 +261,8 @@ - ${QT_LIBRARIES} - ${QT_QTSCRIPT_LIBRARY_RELEASE} - ${QT_QTSCRIPT_TOOLS_LIBRARY_RELEASE} -- ${ALSA_LIB} - ${PORTAUDIO_LIB} -+ ${ALSA_LIB} - al - awl - bww -@@ -277,7 +274,7 @@ - ) - - if (HAS_AUDIOFILE) -- target_link_libraries(mscore sndfile) -+ target_link_libraries(mscore %%LOCALBASE%%/lib/libsndfile.so) - endif (HAS_AUDIOFILE) - - if (APPLE) -@@ -343,9 +340,9 @@ - ${ui_headers} - genft.cpp - ) -- target_link_libraries(genft al ${QT_LIBRARIES} -lfreetype ) -+ target_link_libraries(genft al ${QT_LIBRARIES} %%LOCALBASE%%/lib/libfreetype.so ) - set_target_properties(genft -- PROPERTIES COMPILE_FLAGS "-include ${PROJECT_BINARY_DIR}/all.h -I/usr/include/freetype2" -+ PROPERTIES COMPILE_FLAGS "-include ${PROJECT_BINARY_DIR}/all.h -I%%LOCALBASE%%/include/freetype2" - ) - endif (NOT MINGW AND NOT APPLE) - diff -urN /usr/ports/audio/musescore/files/patch-mscore__awl__denomspinbox.cpp audio/musescore/files/patch-mscore__awl__denomspinbox.cpp --- /usr/ports/audio/musescore/files/patch-mscore__awl__denomspinbox.cpp 2014-06-21 17:53:51.000000000 +0900 +++ audio/musescore/files/patch-mscore__awl__denomspinbox.cpp 1970-01-01 09:00:00.000000000 +0900 @@ -1,14 +0,0 @@ ---- mscore/awl/denomspinbox.cpp.orig 2012-03-13 22:31:52.000000000 +0900 -+++ mscore/awl/denomspinbox.cpp 2012-06-09 13:58:01.000000000 +0900 -@@ -20,6 +20,11 @@ - - #include "denomspinbox.h" - -+#include -+#if __FreeBSD_version <= 704100 || (__FreeBSD_version >= 800000 && __FreeBSD_version < 802502) || (__FreeBSD_version >= 900000 && __FreeBSD_version < 900027) -+#define log2(x) (log(x)/log(2.0)) -+#endif -+ - namespace Awl { - - //--------------------------------------------------------- diff -urN /usr/ports/audio/musescore/files/patch-mscore__mscore__measure.cpp audio/musescore/files/patch-mscore__mscore__measure.cpp --- /usr/ports/audio/musescore/files/patch-mscore__mscore__measure.cpp 2014-06-21 17:53:51.000000000 +0900 +++ audio/musescore/files/patch-mscore__mscore__measure.cpp 1970-01-01 09:00:00.000000000 +0900 @@ -1,14 +0,0 @@ ---- mscore/mscore/measure.cpp.orig 2012-03-13 22:32:27.000000000 +0900 -+++ mscore/mscore/measure.cpp 2012-06-09 13:58:36.000000000 +0900 -@@ -77,6 +77,11 @@ - #include "spacer.h" - #include "duration.h" - -+#include -+#if __FreeBSD_version <= 704100 || (__FreeBSD_version >= 800000 && __FreeBSD_version < 802502) || (__FreeBSD_version >= 900000 && __FreeBSD_version < 900027) -+#define log2(x) (log(x)/log(2.0)) -+#endif -+ - //--------------------------------------------------------- - // MStaff - //--------------------------------------------------------- diff -urN /usr/ports/audio/musescore/files/patch-mscore__mscore__rendermidi.cpp audio/musescore/files/patch-mscore__mscore__rendermidi.cpp --- /usr/ports/audio/musescore/files/patch-mscore__mscore__rendermidi.cpp 2014-06-21 17:53:51.000000000 +0900 +++ audio/musescore/files/patch-mscore__mscore__rendermidi.cpp 1970-01-01 09:00:00.000000000 +0900 @@ -1,29 +0,0 @@ ---- mscore/mscore/rendermidi.cpp.orig -+++ mscore/mscore/rendermidi.cpp -@@ -553,7 +553,7 @@ - int ns = nstaves(); - - //ugly but clang cannot deal with 2/ while gcc4.6 can cope with 1/ --#ifdef Q_WS_MAC -+#ifdef __clang__ - QList* osl = new QList[ns]; - #else - QList osl[ns]; -@@ -576,7 +576,7 @@ - // collect Dynamics - // - //ugly but clang cannot deal with 2/ while gcc4.6 can cope with 1/ --#ifdef Q_WS_MAC -+#ifdef __clang__ - VeloList *velo = new VeloList[ns]; - #else - VeloList velo[ns]; -@@ -675,7 +675,7 @@ - } - } - } --#ifdef Q_WS_MAC -+#ifdef __clang__ - delete[] velo; - delete[] osl; - #endif diff -urN /usr/ports/audio/musescore/files/patch-mscore_mscore_genft.cpp audio/musescore/files/patch-mscore_mscore_genft.cpp --- /usr/ports/audio/musescore/files/patch-mscore_mscore_genft.cpp 2014-06-21 17:53:51.000000000 +0900 +++ audio/musescore/files/patch-mscore_mscore_genft.cpp 1970-01-01 09:00:00.000000000 +0900 @@ -1,11 +0,0 @@ ---- mscore/mscore/genft.cpp.orig 2013-12-13 09:46:58.000000000 +0100 -+++ mscore/mscore/genft.cpp 2013-12-13 09:50:06.000000000 +0100 -@@ -27,7 +27,7 @@ - - #include - #include FT_FREETYPE_H --#include -+#include FT_TRUETYPE_TABLES_H - #include "al/xml.h" - - QMap codemap; diff -urN /usr/ports/audio/musescore/files/patch-thirdparty__qzip__qzip.cpp audio/musescore/files/patch-thirdparty__qzip__qzip.cpp --- /usr/ports/audio/musescore/files/patch-thirdparty__qzip__qzip.cpp 1970-01-01 09:00:00.000000000 +0900 +++ audio/musescore/files/patch-thirdparty__qzip__qzip.cpp 2015-08-04 21:00:00.000000000 +0900 @@ -0,0 +1,12 @@ +--- thirdparty/qzip/qzip.cpp.orig 2015-07-16 10:58:43 UTC ++++ thirdparty/qzip/qzip.cpp +@@ -45,6 +45,9 @@ + #include "qzipreader_p.h" + #include "qzipwriter_p.h" + ++#include ++#include ++ + #include + + #if defined(Q_OS_WIN) or defined(Q_OS_ANDROID) diff -urN /usr/ports/audio/musescore/pkg-plist audio/musescore/pkg-plist --- /usr/ports/audio/musescore/pkg-plist 2014-10-20 19:21:38.000000000 +0900 +++ audio/musescore/pkg-plist 2015-08-04 21:00:00.000000000 +0900 @@ -1,29 +1,75 @@ bin/mscore -%%QT_PLUGINDIR%%/designer/libawlplugin.so +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/Estudio-No1-Tarrega.mscx -%%DATADIR%%/demos/PlanxtyCarolan.mscx %%DATADIR%%/demos/Reunion.mscz %%DATADIR%%/demos/Triumph.mscz -%%DATADIR%%/demos/adeste.mscx -%%DATADIR%%/demos/bach-bc2.mscx -%%DATADIR%%/demos/golliwogg.mscx -%%DATADIR%%/demos/inv1.mscx -%%DATADIR%%/demos/inv10.mscx -%%DATADIR%%/demos/inv13.mscx -%%DATADIR%%/demos/inv4.mscx -%%DATADIR%%/demos/inv6.mscx -%%DATADIR%%/demos/italian-1.mscz -%%DATADIR%%/demos/praeludium1.mscx -%%DATADIR%%/demos/prelude.mscx -%%DATADIR%%/demos/promenade.mscx -%%DATADIR%%/demos/sarabande-gfh.mscz -%%DATADIR%%/demos/sarabande.xml -%%DATADIR%%/demos/scales.mscx -%%DATADIR%%/demos/schnee.mscz -%%DATADIR%%/demos/sonata16.mscx -%%DATADIR%%/demos/wtc1fuga5.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@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@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 @@ -31,7 +77,9 @@ %%DATADIR%%/locale/mscore_be.qm %%DATADIR%%/locale/mscore_bg.qm %%DATADIR%%/locale/mscore_ca.qm +%%DATADIR%%/locale/mscore_ca@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 @@ -53,10 +101,14 @@ %%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 @@ -64,10 +116,12 @@ %%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@Latn.qm %%DATADIR%%/locale/mscore_vi.qm %%DATADIR%%/locale/mscore_zh_CN.qm %%DATADIR%%/locale/mscore_zh_TW.qm @@ -90,6 +144,7 @@ %%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 @@ -103,88 +158,169 @@ %%DATADIR%%/locale/qt_vi.qm %%DATADIR%%/locale/qt_zh_CN.qm %%DATADIR%%/locale/qt_zh_TW.qm -%%DATADIR%%/man/MuseScore-da.pdf -%%DATADIR%%/man/MuseScore-de.pdf -%%DATADIR%%/man/MuseScore-en.pdf -%%DATADIR%%/man/MuseScore-es.pdf -%%DATADIR%%/man/MuseScore-fi.pdf -%%DATADIR%%/man/MuseScore-fr.pdf -%%DATADIR%%/man/MuseScore-gl.pdf -%%DATADIR%%/man/MuseScore-hu.pdf -%%DATADIR%%/man/MuseScore-it.pdf -%%DATADIR%%/man/MuseScore-ja.pdf -%%DATADIR%%/man/MuseScore-nb.pdf -%%DATADIR%%/man/MuseScore-nl.pdf -%%DATADIR%%/man/MuseScore-pl.pdf -%%DATADIR%%/man/MuseScore-pt_BR.pdf -%%DATADIR%%/man/MuseScore-ro.pdf -%%DATADIR%%/man/MuseScore-ru.pdf -%%DATADIR%%/man/MuseScore-zh_CN.pdf -%%DATADIR%%/plugins/abc_import/abc_import.js -%%DATADIR%%/plugins/abc_import/abc_import.ui -%%DATADIR%%/plugins/break/break.js -%%DATADIR%%/plugins/break/break.ui -%%DATADIR%%/plugins/chordchart.js -%%DATADIR%%/plugins/colornotes.js -%%DATADIR%%/plugins/musescore.com/README.txt -%%DATADIR%%/plugins/musescore.com/icons/filesaveonline.svg -%%DATADIR%%/plugins/musescore.com/musescore.com.js -%%DATADIR%%/plugins/musescore.com/translations/locale_de.qm -%%DATADIR%%/plugins/musescore.com/translations/locale_es.qm -%%DATADIR%%/plugins/musescore.com/translations/locale_fr.qm -%%DATADIR%%/plugins/musescore.com/ui/authorize_dialog.ui -%%DATADIR%%/plugins/musescore.com/ui/musescore_dialog.ui -%%DATADIR%%/plugins/musescore.com/ui/musescore_progress.ui -%%DATADIR%%/plugins/musescore.com/ui/start_browser_dialog.ui -%%DATADIR%%/plugins/notenames.js -%%DATADIR%%/plugins/removenotes.js -%%DATADIR%%/plugins/removenotes.ui -%%DATADIR%%/sound/TimGM6mb.sf2 -%%DATADIR%%/styles/Jazz_Lead_Sheet.mss +%%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/leadsheet.mss %%DATADIR%%/styles/stdchords.xml -%%DATADIR%%/templates/Chamber Orchestra.mscx -%%DATADIR%%/templates/Choir SATB with Piano.mscx -%%DATADIR%%/templates/Choir SATB.mscx -%%DATADIR%%/templates/Concert Band.mscx -%%DATADIR%%/templates/Hymn.mscz -%%DATADIR%%/templates/Jazz Big Band.mscz -%%DATADIR%%/templates/Jazz Combo.mscz -%%DATADIR%%/templates/Jazz Lead Sheet.mscz -%%DATADIR%%/templates/Lead Sheet.mscx -%%DATADIR%%/templates/Piano.mscx -%%DATADIR%%/templates/SA Festival Series.mscz -%%DATADIR%%/templates/SA General Series.mscz -%%DATADIR%%/templates/SA Triumph Series.mscz -%%DATADIR%%/templates/UK Brass Band.mscz +%%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/instruments.xml -%%DATADIR%%/templates/instruments_ca.xml -%%DATADIR%%/templates/instruments_de.xml -%%DATADIR%%/templates/instruments_es.xml -%%DATADIR%%/templates/instruments_fr.xml -%%DATADIR%%/templates/instruments_gl.xml -%%DATADIR%%/templates/instruments_it.xml -%%DATADIR%%/templates/instruments_ja.xml -%%DATADIR%%/templates/instruments_nb.xml -%%DATADIR%%/templates/instruments_nl.xml -%%DATADIR%%/templates/instruments_pt.xml -%%DATADIR%%/templates/instruments_pt_BR.xml -%%DATADIR%%/templates/instruments_ru.xml -%%DATADIR%%/templates/instruments_uk.xml -%%DATADIR%%/templates/instruments_zh_CN.xml -%%DATADIR%%/templates/instruments_zh_TW.xml +%%DATADIR%%/templates/orchestral.drm %%DATADIR%%/wallpaper/paper1.png %%DATADIR%%/wallpaper/paper2.png %%DATADIR%%/wallpaper/paper3.png %%DATADIR%%/wallpaper/paper4.png %%DATADIR%%/wallpaper/paper5.png -share/pixmaps/mscore.png -share/pixmaps/mscore.xpm