From owner-svn-ports-head@freebsd.org Fri Aug 7 04:03:31 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 DDBED3B1A37; Fri, 7 Aug 2020 04:03:31 +0000 (UTC) (envelope-from yuri@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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 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 4BNBYH5Zq7z40Mh; Fri, 7 Aug 2020 04:03:31 +0000 (UTC) (envelope-from yuri@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 A361711D41; Fri, 7 Aug 2020 04:03:31 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 07743VRt085613; Fri, 7 Aug 2020 04:03:31 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 07743UFO085605; Fri, 7 Aug 2020 04:03:30 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <202008070403.07743UFO085605@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Fri, 7 Aug 2020 04:03:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r544311 - in head/cad: . horizon-eda horizon-eda/files X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/cad: . horizon-eda horizon-eda/files X-SVN-Commit-Revision: 544311 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.33 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: Fri, 07 Aug 2020 04:03:31 -0000 Author: yuri Date: Fri Aug 7 04:03:30 2020 New Revision: 544311 URL: https://svnweb.freebsd.org/changeset/ports/544311 Log: New port: cad/horizon-eda: EDA package for printed circuit board design Added: head/cad/horizon-eda/ head/cad/horizon-eda/Makefile (contents, props changed) head/cad/horizon-eda/distinfo (contents, props changed) head/cad/horizon-eda/files/ head/cad/horizon-eda/files/patch-Makefile (contents, props changed) head/cad/horizon-eda/pkg-descr (contents, props changed) head/cad/horizon-eda/pkg-plist (contents, props changed) Modified: head/cad/Makefile Modified: head/cad/Makefile ============================================================================== --- head/cad/Makefile Fri Aug 7 04:02:38 2020 (r544310) +++ head/cad/Makefile Fri Aug 7 04:03:30 2020 (r544311) @@ -44,6 +44,7 @@ SUBDIR += graywolf SUBDIR += gspiceui SUBDIR += gtkwave + SUBDIR += horizon-eda SUBDIR += ifcopenshell SUBDIR += impact SUBDIR += irsim Added: head/cad/horizon-eda/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/cad/horizon-eda/Makefile Fri Aug 7 04:03:30 2020 (r544311) @@ -0,0 +1,41 @@ +# $FreeBSD$ + +PORTNAME= horizon-eda +DISTVERSIONPREFIX= v +DISTVERSION= 1.2.1 +CATEGORIES= cad + +PATCH_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/ +PATCHFILES= b40e3ed3f92c4b28af307135223ecf05eacecc82.patch:-p1 # backport the build failure fix + +MAINTAINER= yuri@FreeBSD.org +COMMENT= EDA package for printed circuit board design + +LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= ${LOCALBASE}/include/boost/optional.hpp:devel/boost-libs \ + cppzmq>0:net/cppzmq \ + glm>0:math/glm +LIB_DEPENDS= libcurl.so:ftp/curl \ + libepoxy.so:graphics/libepoxy \ + libgit2.so:devel/libgit2 \ + libpodofo.so:graphics/podofo \ + libTKSTEP.so:cad/opencascade \ + libuuid.so:misc/e2fsprogs-libuuid \ + libzip.so:archivers/libzip \ + libzmq.so:net/libzmq4 + +USES= compiler:c++17-lang gmake gnome localbase pkgconfig python:build sqlite +USE_GITHUB= yes +GH_PROJECT= horizon +USE_GNOME= atkmm gdkpixbuf2 gtkmm30 librsvg2 + +BINARY_ALIAS= python3=${PYTHON_CMD} + +INSTALLS_ICONS= yes + +post-install: + cd ${STAGEDIR}${PREFIX}/bin && ${STRIP_CMD} horizon-imp horizon-eda + +.include Added: head/cad/horizon-eda/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/cad/horizon-eda/distinfo Fri Aug 7 04:03:30 2020 (r544311) @@ -0,0 +1,5 @@ +TIMESTAMP = 1596747687 +SHA256 (horizon-eda-horizon-v1.2.1_GH0.tar.gz) = 3c0d66afeec55cf7fffbb25a467f7aac1576a5f93fec1f461d7f8a3e20072365 +SIZE (horizon-eda-horizon-v1.2.1_GH0.tar.gz) = 2933726 +SHA256 (b40e3ed3f92c4b28af307135223ecf05eacecc82.patch) = 3d0e9a50346931f842b856c0e1defaf6b6b9cce57ed134393f8e0bc9db1f22d3 +SIZE (b40e3ed3f92c4b28af307135223ecf05eacecc82.patch) = 795 Added: head/cad/horizon-eda/files/patch-Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/cad/horizon-eda/files/patch-Makefile Fri Aug 7 04:03:30 2020 (r544311) @@ -0,0 +1,11 @@ +--- Makefile.orig 2020-08-06 20:40:55 UTC ++++ Makefile +@@ -657,7 +657,7 @@ endif + LIBS_ALL = $(LIBS_COMMON) gtkmm-3.0 epoxy cairomm-pdf-1.0 librsvg-2.0 libzmq libgit2 libcurl glm + + OPTIMIZE = -fdata-sections -ffunction-sections +-DEBUGFLAGS = -g3 ++#DEBUGFLAGS = -g3 + CXXFLAGS += $(DEBUGFLAGS) $(DEFINES) $(OPTIMIZE) $(shell $(PKG_CONFIG) --cflags $(LIBS_ALL)) -MP -MMD -pthread -Wall -Wshadow -std=c++17 -O3 + CFLAGS = $(filter-out -std=%,$(CXXFLAGS)) -std=c99 + LDFLAGS += -lm -lpthread Added: head/cad/horizon-eda/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/cad/horizon-eda/pkg-descr Fri Aug 7 04:03:30 2020 (r544311) @@ -0,0 +1,5 @@ +Horizon EDA is an Electronic Design Automation package supporting an integrated +end-to-end workflow for printed circuit board design including parts management +and schematic entry. + +WWW: https://horizon-eda.org/ Added: head/cad/horizon-eda/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/cad/horizon-eda/pkg-plist Fri Aug 7 04:03:30 2020 (r544311) @@ -0,0 +1,9 @@ +bin/horizon-eda +bin/horizon-imp +share/applications/org.horizon_eda.HorizonEDA.desktop +share/icons/hicolor/16x16/apps/org.horizon_eda.HorizonEDA.png +share/icons/hicolor/256x256/apps/org.horizon_eda.HorizonEDA.png +share/icons/hicolor/32x32/apps/org.horizon_eda.HorizonEDA.png +share/icons/hicolor/64x64/apps/org.horizon_eda.HorizonEDA.png +share/icons/hicolor/scalable/apps/org.horizon_eda.HorizonEDA.svg +share/metainfo/org.horizon_eda.HorizonEDA.metainfo.xml