diff options
author | hrs <hrs@FreeBSD.org> | 2016-11-05 03:44:26 +0800 |
---|---|---|
committer | hrs <hrs@FreeBSD.org> | 2016-11-05 03:44:26 +0800 |
commit | 68729310c97f0076767b684ccec09eef80c0d626 (patch) | |
tree | 025e118ba6d998e28d3fabc27b1f31f48f30cb57 /cad | |
parent | a3e410694bc03be14d3f3c7f53c25eb2cb684774 (diff) | |
download | freebsd-ports-gnome-68729310c97f0076767b684ccec09eef80c0d626.tar.gz freebsd-ports-gnome-68729310c97f0076767b684ccec09eef80c0d626.tar.zst freebsd-ports-gnome-68729310c97f0076767b684ccec09eef80c0d626.zip |
Add cad/py-gdsii, GDSII file manipulation library.
Diffstat (limited to 'cad')
-rw-r--r-- | cad/Makefile | 1 | ||||
-rw-r--r-- | cad/py-gdsii/Makefile | 20 | ||||
-rw-r--r-- | cad/py-gdsii/distinfo | 3 | ||||
-rw-r--r-- | cad/py-gdsii/pkg-descr | 5 |
4 files changed, 29 insertions, 0 deletions
diff --git a/cad/Makefile b/cad/Makefile index b9f6b672cf9f..e3352409f79d 100644 --- a/cad/Makefile +++ b/cad/Makefile @@ -65,6 +65,7 @@ SUBDIR += p5-Verilog-Perl SUBDIR += pcb SUBDIR += pdnmesh + SUBDIR += py-gdsii SUBDIR += py-gdspy SUBDIR += py-lcapy SUBDIR += py-pycam diff --git a/cad/py-gdsii/Makefile b/cad/py-gdsii/Makefile new file mode 100644 index 000000000000..c9fb36975c95 --- /dev/null +++ b/cad/py-gdsii/Makefile @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= gdsii +PORTVERSION= 0.2.1 +CATEGORIES= cad python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= python-${PORTNAME}-${PORTVERSION} + +MAINTAINER= hrs@FreeBSD.org +COMMENT= GDSII manipulation libaray + +LICENSE= LGPL3 + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}yaml>0:devel/py-yaml + +USES= python +USE_PYTHON= distutils autoplist + +.include <bsd.port.mk> diff --git a/cad/py-gdsii/distinfo b/cad/py-gdsii/distinfo new file mode 100644 index 000000000000..274ee9f97960 --- /dev/null +++ b/cad/py-gdsii/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1463386922 +SHA256 (python-gdsii-0.2.1.tar.gz) = 341b3f21770f4d50615f42fc568b1b1acb9d5c6ccb3fd79aba28d9a5a4eebc44 +SIZE (python-gdsii-0.2.1.tar.gz) = 38071 diff --git a/cad/py-gdsii/pkg-descr b/cad/py-gdsii/pkg-descr new file mode 100644 index 000000000000..bf57597c0e50 --- /dev/null +++ b/cad/py-gdsii/pkg-descr @@ -0,0 +1,5 @@ +python-gdsii is a library that can be used to read, create, modify and save +GDSII files. It supports both low-level record I/O and high level interface to +GDSII libraries (databases), structures, and elements. + +WWW: http://pythonhosted.org/python-gdsii/ |