From owner-svn-ports-head@freebsd.org Thu Feb 20 17:49:53 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id C4346240604; Thu, 20 Feb 2020 17:49:53 +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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48Nhtn2PrJz4BH1; Thu, 20 Feb 2020 17:49:53 +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 457642577F; Thu, 20 Feb 2020 17:49:53 +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 01KHnrur073336; Thu, 20 Feb 2020 17:49:53 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 01KHnqbd073332; Thu, 20 Feb 2020 17:49:52 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <202002201749.01KHnqbd073332@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Thu, 20 Feb 2020 17:49:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r526574 - in head/graphics: . heimer X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: in head/graphics: . heimer X-SVN-Commit-Revision: 526574 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.29 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: Thu, 20 Feb 2020 17:49:53 -0000 Author: tobik Date: Thu Feb 20 17:49:52 2020 New Revision: 526574 URL: https://svnweb.freebsd.org/changeset/ports/526574 Log: New port: graphics/heimer Heimer is a desktop application for creating mind maps and other suitable diagrams. It is written in Qt. Features: - Easy-to-use UI - Very fast - Zoom in/out/fit - Zoom with mouse wheel - Save/load in XML-based .ALZ-files - Export to PNG images - Quickly add node text and edge labels - Nice animations - Full undo/redo - Adjustable grid - Translations in English, Finnish, French, Italian - Forever 100% free WWW: https://github.com/juzzlin/Heimer Added: head/graphics/heimer/ head/graphics/heimer/Makefile (contents, props changed) head/graphics/heimer/distinfo (contents, props changed) head/graphics/heimer/pkg-descr (contents, props changed) head/graphics/heimer/pkg-plist (contents, props changed) Modified: head/graphics/Makefile Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Thu Feb 20 15:34:09 2020 (r526573) +++ head/graphics/Makefile Thu Feb 20 17:49:52 2020 (r526574) @@ -325,6 +325,7 @@ SUBDIR += guilib SUBDIR += gwenview SUBDIR += hdr_tools + SUBDIR += heimer SUBDIR += hiptext SUBDIR += hobbes-icons-xpm SUBDIR += hppsmtools Added: head/graphics/heimer/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/heimer/Makefile Thu Feb 20 17:49:52 2020 (r526574) @@ -0,0 +1,31 @@ +# $FreeBSD$ + +PORTNAME= heimer +DISTVERSION= 1.15.0 +CATEGORIES= graphics + +MAINTAINER= tobik@FreeBSD.org +COMMENT= Simple mind map, diagram, and note-taking tool + +LICENSE= CC-BY-SA-3.0 GPLv3+ +LICENSE_COMB= multi +LICENSE_FILE_GPLv3+ = ${WRKSRC}/COPYING + +USES= cmake compiler:c++11-lang qt:5 +USE_GITHUB= yes +GH_ACCOUNT= juzzlin +GH_PROJECT= Heimer +USE_QT= core gui widgets xml buildtools_build linguisttools_build \ + qmake_build testlib_build +TEST_TARGET= test + +OPTIONS_DEFINE= EXAMPLES + +post-install: + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/heimer + +post-install-EXAMPLES-on: + cd ${WRKSRC}/examples && \ + ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR} + +.include Added: head/graphics/heimer/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/heimer/distinfo Thu Feb 20 17:49:52 2020 (r526574) @@ -0,0 +1,3 @@ +TIMESTAMP = 1582218820 +SHA256 (juzzlin-Heimer-1.15.0_GH0.tar.gz) = 16c35f6e742868b83db1ac94959252b0d517a9fff6c4d2821cf8495b6285f553 +SIZE (juzzlin-Heimer-1.15.0_GH0.tar.gz) = 851155 Added: head/graphics/heimer/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/heimer/pkg-descr Thu Feb 20 17:49:52 2020 (r526574) @@ -0,0 +1,18 @@ +Heimer is a desktop application for creating mind maps and other +suitable diagrams. It is written in Qt. + +Features: +- Easy-to-use UI +- Very fast +- Zoom in/out/fit +- Zoom with mouse wheel +- Save/load in XML-based .ALZ-files +- Export to PNG images +- Quickly add node text and edge labels +- Nice animations +- Full undo/redo +- Adjustable grid +- Translations in English, Finnish, French, Italian +- Forever 100% free + +WWW: https://github.com/juzzlin/Heimer Added: head/graphics/heimer/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/heimer/pkg-plist Thu Feb 20 17:49:52 2020 (r526574) @@ -0,0 +1,8 @@ +bin/heimer +share/applications/heimer.desktop +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Company.alz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Family.alz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Heimer.alz +share/icons/hicolor/64x64/apps/heimer.png +share/metainfo/heimer.appdata.xml +share/pixmaps/heimer.png