svn commit: r407489 - in head/cad: . pycam pycam/files

Edward Tomasz Napierala trasz at FreeBSD.org
Fri Jan 29 17:55:28 UTC 2016


Author: trasz
Date: Fri Jan 29 17:55:26 2016
New Revision: 407489
URL: https://svnweb.freebsd.org/changeset/ports/407489

Log:
  brickM is a toolpath generator for 3-axis CNC machining. It loads
  3D models in STL format or 2D contour models from DXF or SVG files.
  The resulting GCode can be used with EMC2 or any other machine
  controller.
  
  PyCAM supports a wide range of toolpath strategies for 3D models
  and 2D contour models.
  
  WWW: http://pycam.sourceforge.net/
  
  Sponsored by:	The FreeBSD Foundation

Added:
  head/cad/pycam/
  head/cad/pycam/Makefile   (contents, props changed)
  head/cad/pycam/distinfo   (contents, props changed)
  head/cad/pycam/files/
  head/cad/pycam/files/patch-setup.cfg   (contents, props changed)
  head/cad/pycam/pkg-descr   (contents, props changed)
  head/cad/pycam/pkg-plist   (contents, props changed)
Modified:
  head/cad/Makefile

Modified: head/cad/Makefile
==============================================================================
--- head/cad/Makefile	Fri Jan 29 17:12:39 2016	(r407488)
+++ head/cad/Makefile	Fri Jan 29 17:55:26 2016	(r407489)
@@ -61,6 +61,7 @@
     SUBDIR += p5-Verilog-Perl
     SUBDIR += pcb
     SUBDIR += pdnmesh
+    SUBDIR += pycam
     SUBDIR += pythoncad
     SUBDIR += qcad
     SUBDIR += qcad-partslib

Added: head/cad/pycam/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/cad/pycam/Makefile	Fri Jan 29 17:55:26 2016	(r407489)
@@ -0,0 +1,21 @@
+# Created by: Edward Tomasz Napierala <trasz at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	pycam
+PORTVERSION=	0.5.1
+CATEGORIES=	cad python
+MASTER_SITES=	SOURCEFORGE/pycam/${PORTNAME}/${PORTVERSION}
+
+MAINTAINER=	trasz at FreeBSD.org
+COMMENT=	Toolpath generator for 3-axis CNC machining
+
+LICENSE=	GPLv3
+
+RUN_DEPENDS=	${PYTHON_SITELIBDIR}/gtk-2.0/gtk/__init__.py:${PORTSDIR}/x11-toolkits/py-gtk2 \
+		${PYTHON_SITELIBDIR}/OpenGL/__init__.py:${PORTSDIR}/graphics/py-opengl \
+		${PYTHON_SITELIBDIR}/gtk-2.0/gtk/gdkgl/__init__.py:${PORTSDIR}/x11-toolkits/py-gtkglext
+
+USES=		python
+USE_PYTHON=	distutils autoplist
+
+.include <bsd.port.mk>

Added: head/cad/pycam/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/cad/pycam/distinfo	Fri Jan 29 17:55:26 2016	(r407489)
@@ -0,0 +1,2 @@
+SHA256 (pycam-0.5.1.tar.gz) = e26a6db82efa4761a1db6b81de3165898430d5c14d09614b67321105d67e264c
+SIZE (pycam-0.5.1.tar.gz) = 1680577

Added: head/cad/pycam/files/patch-setup.cfg
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/cad/pycam/files/patch-setup.cfg	Fri Jan 29 17:55:26 2016	(r407489)
@@ -0,0 +1,10 @@
+--- setup.cfg.orig	2016-01-28 13:08:25.505821000 +0100
++++ setup.cfg	2016-01-28 13:08:29.908308000 +0100
+@@ -1,7 +1,3 @@
+-[bdist_wininst]
+-install_script = pycam_win32_postinstall.py
+-bitmap = share/ui/logo_gui_vertical.bmp
+-
+ [bdist_msi]
+ install_script = pycam_win32_postinstall.py
+ 

Added: head/cad/pycam/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/cad/pycam/pkg-descr	Fri Jan 29 17:55:26 2016	(r407489)
@@ -0,0 +1,9 @@
+PyCAM is a toolpath generator for 3-axis CNC machining. It loads
+3D models in STL format or 2D contour models from DXF or SVG files.
+The resulting GCode can be used with EMC2 or any other machine
+controller.
+
+PyCAM supports a wide range of toolpath strategies for 3D models
+and 2D contour models.
+
+WWW: http://pycam.sourceforge.net/

Added: head/cad/pycam/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/cad/pycam/pkg-plist	Fri Jan 29 17:55:26 2016	(r407489)
@@ -0,0 +1 @@
+ at comment $FreeBSD$


More information about the svn-ports-head mailing list