From owner-svn-ports-head@freebsd.org Tue Jan 23 14:15:57 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C5537ED5F93; Tue, 23 Jan 2018 14:15:57 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 909F37D49F; Tue, 23 Jan 2018 14:15:57 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E2DF97A05; Tue, 23 Jan 2018 14:15:56 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w0NEFuIY082959; Tue, 23 Jan 2018 14:15:56 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w0NEFuvx082953; Tue, 23 Jan 2018 14:15:56 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201801231415.w0NEFuvx082953@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Tue, 23 Jan 2018 14:15:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r459753 - in head/deskutils: . freeplane freeplane/files X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: in head/deskutils: . freeplane freeplane/files X-SVN-Commit-Revision: 459753 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 23 Jan 2018 14:15:57 -0000 Author: tobik Date: Tue Jan 23 14:15:56 2018 New Revision: 459753 URL: https://svnweb.freebsd.org/changeset/ports/459753 Log: New port: deskutils/freeplane Freeplane is a free and open source software application that supports thinking, sharing information and getting things done at work, in school and at home. The software can be used for mind mapping and analyzing the information contained in mind maps. WWW: https://www.freeplane.org/ PR: 225399 Submitted by: lbartoletti@tuxfamily.org Added: head/deskutils/freeplane/ head/deskutils/freeplane/Makefile (contents, props changed) head/deskutils/freeplane/distinfo (contents, props changed) head/deskutils/freeplane/files/ head/deskutils/freeplane/files/patch-freeplane.sh (contents, props changed) head/deskutils/freeplane/pkg-descr (contents, props changed) head/deskutils/freeplane/pkg-plist (contents, props changed) Modified: head/deskutils/Makefile Modified: head/deskutils/Makefile ============================================================================== --- head/deskutils/Makefile Tue Jan 23 14:08:44 2018 (r459752) +++ head/deskutils/Makefile Tue Jan 23 14:15:56 2018 (r459753) @@ -45,6 +45,7 @@ SUBDIR += fet SUBDIR += flameshot SUBDIR += freemind + SUBDIR += freeplane SUBDIR += fusenshi SUBDIR += gaddr SUBDIR += ganttproject Added: head/deskutils/freeplane/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/deskutils/freeplane/Makefile Tue Jan 23 14:15:56 2018 (r459753) @@ -0,0 +1,35 @@ +# Created by: Loïc Bartoletti +# $FreeBSD$ + +PORTNAME= freeplane +PORTVERSION= 1.6.12 +CATEGORIES= deskutils editors java +MASTER_SITES= SF/${PORTNAME}/${PORTNAME}%20stable +DISTNAME= ${PORTNAME}_bin-${PORTVERSION} + +MAINTAINER= lbartoletti@tuxfamily.org +COMMENT= Free mind mapping and knowledge management software + +LICENSE= GPLv2+ +LICENSE_FILE= ${WRKSRC}/license.txt + +USES= cpe zip +USE_JAVA= yes +JAVA_VERSION= 1.6+ + +NO_ARCH= yes +NO_BUILD= yes + +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} + +do-install: + @cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR} \ + "! ( -name freeplane\.sh* -or -name license\.txt -or -name *\.bat -or -name *\.exe )" +# Install freeplane.sh with the right permission, link to it to bin/ +# and let it resolve the path to DATADIR automatically to avoid +# patching it further. For this to work it has to be a link to an +# absolute path. + ${INSTALL_SCRIPT} ${WRKSRC}/freeplane.sh ${STAGEDIR}${DATADIR} + ${LN} -s ${DATADIR}/freeplane.sh ${STAGEDIR}${PREFIX}/bin/freeplane + +.include Added: head/deskutils/freeplane/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/deskutils/freeplane/distinfo Tue Jan 23 14:15:56 2018 (r459753) @@ -0,0 +1,3 @@ +TIMESTAMP = 1516389249 +SHA256 (freeplane_bin-1.6.12.zip) = 34ebea17df37edd8bd1f52ea5e7e40d3e83e2b409a62dbd0d74a86967c9ea6f0 +SIZE (freeplane_bin-1.6.12.zip) = 36164443 Added: head/deskutils/freeplane/files/patch-freeplane.sh ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/deskutils/freeplane/files/patch-freeplane.sh Tue Jan 23 14:15:56 2018 (r459753) @@ -0,0 +1,17 @@ +--- freeplane.sh.orig 2018-01-07 18:16:56 UTC ++++ freeplane.sh +@@ -1,4 +1,4 @@ +-#!/bin/bash ++#!/bin/sh + + # we only want to test the script, not Freeplane itself + if ( echo "${DEBUG}" | grep -qe "script" ); then +@@ -123,7 +123,7 @@ if [ -x $(which readlink) ] && [ "`echo $OSTYPE | cut + # if we have 'readlink' we can use it to get an absolute path + # -m should be faster and link does always resolve, else this script + # wouldn't be called, would it? +- freefile=$(readlink -mn "$0") ++ freefile=$(readlink -n "$0") + _debug "Link '$0' resolved to '${freefile}'." + else + freefile="$0" Added: head/deskutils/freeplane/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/deskutils/freeplane/pkg-descr Tue Jan 23 14:15:56 2018 (r459753) @@ -0,0 +1,6 @@ +Freeplane is a free and open source software application that supports +thinking, sharing information and getting things done at work, in +school and at home. The software can be used for mind mapping and +analyzing the information contained in mind maps. + +WWW: https://www.freeplane.org/ Added: head/deskutils/freeplane/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/deskutils/freeplane/pkg-plist Tue Jan 23 14:15:56 2018 (r459753) @@ -0,0 +1,238 @@ +bin/freeplane +%%DATADIR%%/core/org.freeplane.core/META-INF/MANIFEST.MF +%%DATADIR%%/core/org.freeplane.core/lib/SimplyHTML-0.17.3.jar +%%DATADIR%%/core/org.freeplane.core/lib/commons-codec-1.7.jar +%%DATADIR%%/core/org.freeplane.core/lib/commons-io-2.4.jar +%%DATADIR%%/core/org.freeplane.core/lib/commons-lang-2.6.jar +%%DATADIR%%/core/org.freeplane.core/lib/freeplane_mac-1.5.jar +%%DATADIR%%/core/org.freeplane.core/lib/freeplaneeditor-1.5.jar +%%DATADIR%%/core/org.freeplane.core/lib/freeplaneosgi-1.5.jar +%%DATADIR%%/core/org.freeplane.core/lib/freeplaneviewer.jar +%%DATADIR%%/core/org.freeplane.core/lib/idw-gpl-1.6.1.jar +%%DATADIR%%/core/org.freeplane.core/lib/jgoodies-common-1.8.1.jar +%%DATADIR%%/core/org.freeplane.core/lib/jgoodies-forms-1.9.0.jar +%%DATADIR%%/core/org.freeplane.core/lib/jortho-1.5.jar +%%DATADIR%%/core/org.freeplane.core/lib/jortho.jar +%%DATADIR%%/core/org.freeplane.core/lib/kitfox-svg-salamander-1.1.1-p1.jar +%%DATADIR%%/doc/Freeplane_LaTeX.mm +%%DATADIR%%/doc/Images/Preferences_Joining nodes.png +%%DATADIR%%/doc/Images/doc/BackgroundContextMenu.png +%%DATADIR%%/doc/Images/doc/BackgroundContextMenu_nl.png +%%DATADIR%%/doc/Images/doc/HotKeysTable.png +%%DATADIR%%/doc/Images/doc/HotKeysTable_nl.png +%%DATADIR%%/doc/Images/doc/MenusPropertiesPanel.png +%%DATADIR%%/doc/Images/doc/MenusPropertiesPanel_nl.png +%%DATADIR%%/doc/Images/doc/freeplaneApplications.png +%%DATADIR%%/doc/Images/doc/goto node with ID.png +%%DATADIR%%/doc/Images/doc/key mapping dialog.png +%%DATADIR%%/doc/Images/doc/mapView v outlineView.png +%%DATADIR%%/doc/Images/doc/right-click menu - open maps.png +%%DATADIR%%/doc/Images/doc/tabs in workspace.png +%%DATADIR%%/doc/Images/examples.png +%%DATADIR%%/doc/Images/eyes.png +%%DATADIR%%/doc/Images/icons toolbar - collapsed.png +%%DATADIR%%/doc/Images/mouse/mouse_RB.png +%%DATADIR%%/doc/Images/other/workspace/Freeplane workspace (annotated).png +%%DATADIR%%/doc/Images/other/workspace/Freeplane workspace.png +%%DATADIR%%/doc/Images/other/workspace/details arrow_.png +%%DATADIR%%/doc/Images/other/workspace/f bar - split.png +%%DATADIR%%/doc/Images/other/workspace/f bar.png +%%DATADIR%%/doc/Images/other/workspace/filter toolbar - split.png +%%DATADIR%%/doc/Images/other/workspace/filter toolbar.png +%%DATADIR%%/doc/Images/other/workspace/icons toolbar.png +%%DATADIR%%/doc/Images/other/workspace/menubar.png +%%DATADIR%%/doc/Images/other/workspace/notes panel.png +%%DATADIR%%/doc/Images/other/workspace/properties panel.png +%%DATADIR%%/doc/Images/other/workspace/resize arrows.png +%%DATADIR%%/doc/Images/other/workspace/right-click menu.png +%%DATADIR%%/doc/Images/other/workspace/scroll bars.png +%%DATADIR%%/doc/Images/other/workspace/status line.png +%%DATADIR%%/doc/Images/other/workspace/submenu flyouts (basic).png +%%DATADIR%%/doc/Images/other/workspace/submenu flyouts.png +%%DATADIR%%/doc/Images/other/workspace/toolbar - split.png +%%DATADIR%%/doc/Images/other/workspace/toolbar.png +%%DATADIR%%/doc/Images/other/workspace/view - toolbars.png +%%DATADIR%%/doc/Images/other/workspace/view - view settings.png +%%DATADIR%%/doc/Images/properties toolbar - collapsed.png +%%DATADIR%%/doc/api/allclasses-frame.html +%%DATADIR%%/doc/api/allclasses-noframe.html +%%DATADIR%%/doc/api/constant-values.html +%%DATADIR%%/doc/api/deprecated-list.html +%%DATADIR%%/doc/api/help-doc.html +%%DATADIR%%/doc/api/index-all.html +%%DATADIR%%/doc/api/index.html +%%DATADIR%%/doc/api/org/freeplane/core/ui/components/UITools.InsertEolAction.html +%%DATADIR%%/doc/api/org/freeplane/core/ui/components/UITools.html +%%DATADIR%%/doc/api/org/freeplane/core/ui/components/package-frame.html +%%DATADIR%%/doc/api/org/freeplane/core/ui/components/package-summary.html +%%DATADIR%%/doc/api/org/freeplane/core/ui/components/package-tree.html +%%DATADIR%%/doc/api/org/freeplane/core/util/FreeplaneVersion.html +%%DATADIR%%/doc/api/org/freeplane/core/util/HtmlUtils.IndexPair.html +%%DATADIR%%/doc/api/org/freeplane/core/util/HtmlUtils.html +%%DATADIR%%/doc/api/org/freeplane/core/util/LogUtils.html +%%DATADIR%%/doc/api/org/freeplane/core/util/MenuUtils.MenuEntry.html +%%DATADIR%%/doc/api/org/freeplane/core/util/MenuUtils.MenuEntryTreeBuilder.html +%%DATADIR%%/doc/api/org/freeplane/core/util/MenuUtils.html +%%DATADIR%%/doc/api/org/freeplane/core/util/TextUtils.html +%%DATADIR%%/doc/api/org/freeplane/core/util/package-frame.html +%%DATADIR%%/doc/api/org/freeplane/core/util/package-summary.html +%%DATADIR%%/doc/api/org/freeplane/core/util/package-tree.html +%%DATADIR%%/doc/api/org/freeplane/plugin/script/FreeplaneScriptBaseClass.ConfigProperties.html +%%DATADIR%%/doc/api/org/freeplane/plugin/script/FreeplaneScriptBaseClass.html +%%DATADIR%%/doc/api/org/freeplane/plugin/script/package-frame.html +%%DATADIR%%/doc/api/org/freeplane/plugin/script/package-summary.html +%%DATADIR%%/doc/api/org/freeplane/plugin/script/package-tree.html +%%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/Convertible.html +%%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/Proxy.Attributes.html +%%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/Proxy.AttributesRO.html +%%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/Proxy.Cloud.html +%%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/Proxy.Connector.html +%%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/Proxy.ConnectorRO.html +%%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/Proxy.Controller.html +%%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/Proxy.ControllerRO.html +%%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/Proxy.Edge.html +%%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/Proxy.EdgeRO.html +%%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/Proxy.ExternalObject.html +%%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/Proxy.ExternalObjectRO.html +%%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/Proxy.Font.html +%%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/Proxy.FontRO.html +%%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/Proxy.Icons.html +%%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/Proxy.IconsRO.html +%%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/Proxy.Link.html +%%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/Proxy.LinkRO.html +%%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/Proxy.Map.html +%%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/Proxy.MapRO.html +%%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/Proxy.Node.html +%%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/Proxy.NodeRO.html +%%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/Proxy.NodeStyle.html +%%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/Proxy.NodeStyleRO.html +%%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/Proxy.Properties.html +%%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/Proxy.Reminder.html +%%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/Proxy.ReminderRO.html +%%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/Proxy.html +%%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/ScriptUtils.html +%%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/package-frame.html +%%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/package-summary.html +%%DATADIR%%/doc/api/org/freeplane/plugin/script/proxy/package-tree.html +%%DATADIR%%/doc/api/overview-frame.html +%%DATADIR%%/doc/api/overview-summary.html +%%DATADIR%%/doc/api/overview-tree.html +%%DATADIR%%/doc/api/package-list +%%DATADIR%%/doc/api/script.js +%%DATADIR%%/doc/api/serialized-form.html +%%DATADIR%%/doc/api/stylesheet.css +%%DATADIR%%/doc/examplepicture_nl.JPG +%%DATADIR%%/doc/freeplane.jpg +%%DATADIR%%/doc/freeplane.mm +%%DATADIR%%/doc/freeplaneApplications.mm +%%DATADIR%%/doc/freeplaneApplications_ja.mm +%%DATADIR%%/doc/freeplaneApplications_nl.mm +%%DATADIR%%/doc/freeplaneFunctions.mm +%%DATADIR%%/doc/freeplaneFunctions_ja.mm +%%DATADIR%%/doc/freeplaneFunctions_nl.mm +%%DATADIR%%/doc/freeplaneTutorial.jpg +%%DATADIR%%/doc/freeplaneTutorial.mm +%%DATADIR%%/doc/freeplaneTutorial.mmfilter +%%DATADIR%%/doc/freeplaneTutorial_ja.mm +%%DATADIR%%/doc/freeplaneTutorial_ja.mmfilter +%%DATADIR%%/doc/freeplaneTutorial_nl.jpg +%%DATADIR%%/doc/freeplaneTutorial_nl.mm +%%DATADIR%%/doc/freeplaneTutorial_nl.mmfilter +%%DATADIR%%/doc/freeplane_de.mm +%%DATADIR%%/doc/freeplane_es.mm +%%DATADIR%%/doc/freeplane_et.mm +%%DATADIR%%/doc/freeplane_fr.mm +%%DATADIR%%/doc/freeplane_id.mm +%%DATADIR%%/doc/freeplane_it.mm +%%DATADIR%%/doc/freeplane_ja.mm +%%DATADIR%%/doc/freeplane_menuposition_nl.jpg +%%DATADIR%%/doc/freeplane_nl.jpg +%%DATADIR%%/doc/freeplane_ru.mm +%%DATADIR%%/doc/freeplane_vi.mm +%%DATADIR%%/doc/history_en.txt +%%DATADIR%%/doc/whatsNew-1.5.x.mm +%%DATADIR%%/framework.jar +%%DATADIR%%/freeplane.l4j.ini +%%DATADIR%%/freeplane.png +%%DATADIR%%/freeplane.policy +%%DATADIR%%/freeplane.sh +%%DATADIR%%/freeplane.svg +%%DATADIR%%/freeplaneConsole.l4j.ini +%%DATADIR%%/freeplaneIcons.dll +%%DATADIR%%/freeplanelauncher.jar +%%DATADIR%%/gitinfo.txt +%%DATADIR%%/init.xargs +%%DATADIR%%/plugins/org.freeplane.plugin.bugreport/META-INF/MANIFEST.MF +%%DATADIR%%/plugins/org.freeplane.plugin.bugreport/lib/plugin-1.5.jar +%%DATADIR%%/plugins/org.freeplane.plugin.formula/META-INF/MANIFEST.MF +%%DATADIR%%/plugins/org.freeplane.plugin.formula/lib/plugin-1.5.jar +%%DATADIR%%/plugins/org.freeplane.plugin.jsyntaxpane/META-INF/MANIFEST.MF +%%DATADIR%%/plugins/org.freeplane.plugin.jsyntaxpane/lib/jsyntaxpane-0.9.6~r156-5.jar +%%DATADIR%%/plugins/org.freeplane.plugin.jsyntaxpane/lib/plugin-1.5.jar +%%DATADIR%%/plugins/org.freeplane.plugin.latex/META-INF/MANIFEST.MF +%%DATADIR%%/plugins/org.freeplane.plugin.latex/lib/jlatexmath-1.0.6.jar +%%DATADIR%%/plugins/org.freeplane.plugin.latex/lib/jlatexmath-font-cyrillic-1.0.6.jar +%%DATADIR%%/plugins/org.freeplane.plugin.latex/lib/jlatexmath-font-greek-1.0.6.jar +%%DATADIR%%/plugins/org.freeplane.plugin.latex/lib/plugin-1.5.jar +%%DATADIR%%/plugins/org.freeplane.plugin.openmaps/META-INF/MANIFEST.MF +%%DATADIR%%/plugins/org.freeplane.plugin.openmaps/lib/jmapviewer-1.14.jar +%%DATADIR%%/plugins/org.freeplane.plugin.openmaps/lib/plugin-1.5.jar +%%DATADIR%%/plugins/org.freeplane.plugin.script/META-INF/MANIFEST.MF +%%DATADIR%%/plugins/org.freeplane.plugin.script/lib/byte-buddy-1.6.9.jar +%%DATADIR%%/plugins/org.freeplane.plugin.script/lib/groovy-all-2.3.1.jar +%%DATADIR%%/plugins/org.freeplane.plugin.script/lib/groovy-patcher-0.0.2.jar +%%DATADIR%%/plugins/org.freeplane.plugin.script/lib/plugin-1.5.jar +%%DATADIR%%/plugins/org.freeplane.plugin.svg/META-INF/MANIFEST.MF +%%DATADIR%%/plugins/org.freeplane.plugin.svg/lib/avalon-framework-api-4.3.1.jar +%%DATADIR%%/plugins/org.freeplane.plugin.svg/lib/avalon-framework-impl-4.3.1.jar +%%DATADIR%%/plugins/org.freeplane.plugin.svg/lib/batik-all-1.9.1.jar +%%DATADIR%%/plugins/org.freeplane.plugin.svg/lib/commons-logging-1.2.jar +%%DATADIR%%/plugins/org.freeplane.plugin.svg/lib/fop-2.1.jar +%%DATADIR%%/plugins/org.freeplane.plugin.svg/lib/plugin-1.5.jar +%%DATADIR%%/plugins/org.freeplane.plugin.svg/lib/xml-apis-1.4.01.jar +%%DATADIR%%/plugins/org.freeplane.plugin.svg/lib/xml-apis-ext-1.3.04.jar +%%DATADIR%%/plugins/org.freeplane.plugin.svg/lib/xmlgraphics-commons-2.2.jar +%%DATADIR%%/props.xargs +%%DATADIR%%/resources/gitinfo.properties +%%DATADIR%%/resources/ortho/dictionary_de.ortho +%%DATADIR%%/resources/ortho/dictionary_en.ortho +%%DATADIR%%/resources/ortho/dictionary_fr.ortho +%%DATADIR%%/resources/templates/BigMap.mm +%%DATADIR%%/resources/templates/BuzanMap.mm +%%DATADIR%%/resources/templates/conceptMap.mm +%%DATADIR%%/resources/templates/essay.mm +%%DATADIR%%/resources/templates/standard-1.6-noEdgeColor.mm +%%DATADIR%%/resources/templates/standard-1.6.mm +%%DATADIR%%/resources/xml/filemodemenu.xml +%%DATADIR%%/resources/xml/mindmapmodemenu.xml +%%DATADIR%%/resources/xml/preferences.xml +%%DATADIR%%/resources/xml/stylemodemenu.xml +%%DATADIR%%/resources/xslt/export2oowriter.manifest.xsl +%%DATADIR%%/resources/xslt/export2oowriter.styles.xsl +%%DATADIR%%/resources/xslt/export2oowriter.xsl +%%DATADIR%%/resources/xslt/mm2adoc.xsl +%%DATADIR%%/resources/xslt/mm2freeplane1_1-mm.xsl +%%DATADIR%%/resources/xslt/mm2html.xsl +%%DATADIR%%/resources/xslt/mm2latexartcl.xsl +%%DATADIR%%/resources/xslt/mm2latexbeamer_richcontent_1.3.x.xsl +%%DATADIR%%/resources/xslt/mm2latexbook.xsl +%%DATADIR%%/resources/xslt/mm2latexinput.xsl +%%DATADIR%%/resources/xslt/mm2markdown.xsl +%%DATADIR%%/resources/xslt/mm2msp_utf8.xsl +%%DATADIR%%/resources/xslt/mm2msp_utf8_TEMPLATE.mm +%%DATADIR%%/resources/xslt/mm2mwiki.xsl +%%DATADIR%%/resources/xslt/mm2opml.xsl +%%DATADIR%%/resources/xslt/mm2raw.xsl +%%DATADIR%%/resources/xslt/mm2text.xsl +%%DATADIR%%/resources/xslt/mm2wordml_utf8.xsl +%%DATADIR%%/resources/xslt/mm2wordml_utf8_TEMPLATE.mm +%%DATADIR%%/resources/xslt/mm2xbel.xsl +%%DATADIR%%/resources/xslt/mm2xls_utf8.xsl +%%DATADIR%%/resources/xslt/mm2xml.xsl +%%DATADIR%%/resources/xslt/tohtml.xsl +%%DATADIR%%/resources/xslt/xbel2mm.xsl +%%DATADIR%%/scripts/apiGenerator.groovy +%%DATADIR%%/scripts/freeplane.dsld +%%DATADIR%%/scripts/installScriptAddOn.groovy +@dir %%DATADIR%%/fwdir/condperm +@dir %%DATADIR%%/fwdir/perms