Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 8 Aug 2014 01:28:04 +0000 (UTC)
From:      William Grzybowski <wg@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r364337 - in head/cad: . cura-engine
Message-ID:  <53e427a4.2f5e.42d65bae@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: wg
Date: Fri Aug  8 01:28:03 2014
New Revision: 364337
URL: http://svnweb.freebsd.org/changeset/ports/364337
QAT: https://qat.redports.org/buildarchive/r364337/

Log:
  cad/cura-engine: Engine of slicing solution for RepRap 3D printers
  
  The CuraEngine is a C++ console application for 3D printing GCode generation.
  It has been made as better and faster alternative to the old Skeinforge engine.
  
  The CuraEngine is pure C++ and uses Clipper from
  http://www.angusj.com/delphi/clipper.php. There are no external dependences
  and Clipper is included in the source code without modifications.
  
  This is just a console application for GCode generation. For a full graphical
  application look at https://github.com/daid/Cura with is the graphical
  frontend for CuraEngine.
  
  The CuraEngine can be used seperately or in other applications.
  Feel free to add it to your application. But to take note of the License.
  
  WWW: http://wiki.ultimaker.com/Cura
  
  PR:		192486
  Submitted by:	cederom tlen pl

Added:
  head/cad/cura-engine/
  head/cad/cura-engine/Makefile   (contents, props changed)
  head/cad/cura-engine/distinfo   (contents, props changed)
  head/cad/cura-engine/pkg-descr   (contents, props changed)
  head/cad/cura-engine/pkg-plist   (contents, props changed)
Modified:
  head/cad/Makefile

Modified: head/cad/Makefile
==============================================================================
--- head/cad/Makefile	Fri Aug  8 01:26:31 2014	(r364336)
+++ head/cad/Makefile	Fri Aug  8 01:28:03 2014	(r364337)
@@ -16,6 +16,7 @@
     SUBDIR += cascade
     SUBDIR += chipvault
     SUBDIR += cider
+    SUBDIR += cura-engine
     SUBDIR += dinotrace
     SUBDIR += dxf2fig
     SUBDIR += electric

Added: head/cad/cura-engine/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/cad/cura-engine/Makefile	Fri Aug  8 01:28:03 2014	(r364337)
@@ -0,0 +1,22 @@
+# $FreeBSD$
+
+PORTNAME=	CuraEngine
+PORTVERSION=	14.03
+CATEGORIES=	cad
+
+MAINTAINER=	cederom@tlen.pl
+COMMENT=	Engine of slicing solution for RepRap 3D printers
+
+LICENSE=	AGPLv3
+
+USES=		gmake
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	Ultimaker
+GH_COMMIT=	4c1043f
+GH_TAGNAME=	${GH_COMMIT}
+
+do-install:
+	${INSTALL_PROGRAM} ${WRKSRC}/build/CuraEngine ${STAGEDIR}${PREFIX}/bin
+
+.include <bsd.port.mk>

Added: head/cad/cura-engine/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/cad/cura-engine/distinfo	Fri Aug  8 01:28:03 2014	(r364337)
@@ -0,0 +1,2 @@
+SHA256 (CuraEngine-14.03.tar.gz) = a3966a2da3726b67e74007455e77c40c464d6b5a8d653065592bb88651c0b77d
+SIZE (CuraEngine-14.03.tar.gz) = 106704

Added: head/cad/cura-engine/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/cad/cura-engine/pkg-descr	Fri Aug  8 01:28:03 2014	(r364337)
@@ -0,0 +1,15 @@
+The CuraEngine is a C++ console application for 3D printing GCode generation.
+It has been made as better and faster alternative to the old Skeinforge engine.
+
+The CuraEngine is pure C++ and uses Clipper from
+http://www.angusj.com/delphi/clipper.php. There are no external dependences
+and Clipper is included in the source code without modifications.
+
+This is just a console application for GCode generation. For a full graphical
+application look at https://github.com/daid/Cura with is the graphical
+frontend for CuraEngine.
+
+The CuraEngine can be used seperately or in other applications.
+Feel free to add it to your application. But to take note of the License.
+
+WWW: http://wiki.ultimaker.com/Cura

Added: head/cad/cura-engine/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/cad/cura-engine/pkg-plist	Fri Aug  8 01:28:03 2014	(r364337)
@@ -0,0 +1,2 @@
+bin/CuraEngine
+



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?53e427a4.2f5e.42d65bae>