summaryrefslogtreecommitdiff
path: root/cad/gdt/Makefile
diff options
context:
space:
mode:
authorHiroki Sato <hrs@FreeBSD.org>2007-04-29 07:20:02 +0000
committerHiroki Sato <hrs@FreeBSD.org>2007-04-29 07:20:02 +0000
commit94b9f329251a3bff0dd4c27f90bedd1f3acce8b4 (patch)
tree1c708646399dda98e9f1a414cb541e54e0c6a79b /cad/gdt/Makefile
parentp5-GDS2, a Perl module for quickly creating programs to read and/or (diff)
GDT (graphics data text) format translator written in C/C++ that
converts a binary gdsii file to a text format that is compact and easy to parse.
Notes
Notes: svn path=/head/; revision=191098
Diffstat (limited to 'cad/gdt/Makefile')
-rw-r--r--cad/gdt/Makefile28
1 files changed, 28 insertions, 0 deletions
diff --git a/cad/gdt/Makefile b/cad/gdt/Makefile
new file mode 100644
index 000000000000..dfaef48f87fc
--- /dev/null
+++ b/cad/gdt/Makefile
@@ -0,0 +1,28 @@
+# New ports collection makefile for: gdt
+# Date created: Sun, Apr 29 2007
+# Whom: Hiroki Sato <hrs@FreeBSD.org>
+#
+# $FreeBSD$
+#
+
+PORTNAME= gdt
+PORTVERSION= 1.0.1
+CATEGORIES= cad
+MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
+MASTER_SITE_SUBDIR= gds2
+DISTNAME= ${PORTNAME:U}_${PORTVERSION}
+
+MAINTAINER= hrs@FreeBSD.org
+COMMENT= GDS2/GDT format translator
+
+USE_PERL5_RUN= yes
+WRKSRC= ${WRKDIR}/${PORTNAME:U}-${PORTVERSION}
+PLIST_FILES= bin/gdsinfo bin/gds2gdt bin/gdt2gds
+
+pre-build:
+ ${CP} ${FILESDIR}/Makefile ${WRKSRC}
+
+post-install:
+ ${INSTALL_SCRIPT} ${WRKSRC}/Examples/gdsinfo ${PREFIX}/bin
+
+.include <bsd.port.mk>