Index: head/cad/Makefile =================================================================== --- head/cad/Makefile (revision 191067) +++ head/cad/Makefile (revision 191068) @@ -1,80 +1,81 @@ # $FreeBSD$ # COMMENT = CAD tools SUBDIR += admesh SUBDIR += adms SUBDIR += alliance SUBDIR += astk-client SUBDIR += astk-serveur SUBDIR += atlc SUBDIR += brlcad SUBDIR += calculix SUBDIR += cascade SUBDIR += chipmunk SUBDIR += chipvault SUBDIR += cider SUBDIR += dinotrace SUBDIR += dxf2fig SUBDIR += electric SUBDIR += electric-ng SUBDIR += fandango SUBDIR += feappv SUBDIR += freehdl + SUBDIR += gdsreader SUBDIR += geda SUBDIR += geda-docs SUBDIR += geda-examples SUBDIR += geda-gattrib SUBDIR += geda-gschem SUBDIR += geda-netlist SUBDIR += geda-symbols SUBDIR += geda-symcheck SUBDIR += geda-utils SUBDIR += gerbv SUBDIR += gmsh SUBDIR += gnucap SUBDIR += gplcver SUBDIR += gspiceui SUBDIR += gtkwave SUBDIR += gwave SUBDIR += impact SUBDIR += irsim SUBDIR += iverilog SUBDIR += jspice3 SUBDIR += kicad SUBDIR += leocad SUBDIR += libgeda SUBDIR += linux-eagle SUBDIR += linux-gid SUBDIR += magic SUBDIR += mars SUBDIR += netgen SUBDIR += ngspice_rework SUBDIR += opencascade SUBDIR += opencascade-tutorial SUBDIR += oregano SUBDIR += pcb SUBDIR += pdnmesh SUBDIR += pythoncad SUBDIR += qcad SUBDIR += qcad-partslib SUBDIR += qfsm SUBDIR += qmls SUBDIR += qucs SUBDIR += sceptre SUBDIR += scotch SUBDIR += scv SUBDIR += slffea SUBDIR += spice SUBDIR += systemc SUBDIR += tclspice SUBDIR += tkgate SUBDIR += tochnog SUBDIR += transcalc SUBDIR += varkon SUBDIR += vipec SUBDIR += xcircuit SUBDIR += z88 .include Property changes on: head/cad/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.97 \ No newline at end of property +1.98 \ No newline at end of property Index: head/cad/gdsreader/Makefile =================================================================== --- head/cad/gdsreader/Makefile (nonexistent) +++ head/cad/gdsreader/Makefile (revision 191068) @@ -0,0 +1,31 @@ +# Ports collection makefile for: gdsreader +# Date created: Sat, Apr 28, 2007 +# Whom: Hiroki Sato +# +# $FreeBSD$ +# + +PORTNAME= gdsreader +PORTVERSION= 0.3.2 +CATEGORIES= cad +MASTER_SITES= http://home.netcom.com/~serbanp/ +DISTNAME= GDSreader.${PORTVERSION} + +MAINTAINER= hrs@FreeBSD.org +COMMENT= GDS2 stream file to Postscript and HP/GL converter + +MAN1= gdsreader.1 maptolayer.1 +PORTDOCS= README README.povray ChangeLog +EXFILES= layers.config test.gds layers.config.7HP.5ML \ + layers.config.5AM.4ML +PLIST_FILES= bin/gdsreader bin/maptolayer \ + ${EXFILES:S,^,${EXAMPLESDIR_REL}/,} +PLIST_DIRS= ${EXAMPLESDIR_REL} + +post-install: + @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} install-data +.if !defined(NOPORTDOCS) + @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} install-docs +.endif + +.include Property changes on: head/cad/gdsreader/Makefile ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Index: head/cad/gdsreader/distinfo =================================================================== --- head/cad/gdsreader/distinfo (nonexistent) +++ head/cad/gdsreader/distinfo (revision 191068) @@ -0,0 +1,3 @@ +MD5 (GDSreader.0.3.2.tar.gz) = 3ea1e7a287be0af942db2b12187d7978 +SHA256 (GDSreader.0.3.2.tar.gz) = dc33bd149438c383feaff124803e2899ed444b9836d47a77ea557af2731c3b80 +SIZE (GDSreader.0.3.2.tar.gz) = 82649 Property changes on: head/cad/gdsreader/distinfo ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Index: head/cad/gdsreader/files/patch-Makefile =================================================================== --- head/cad/gdsreader/files/patch-Makefile (nonexistent) +++ head/cad/gdsreader/files/patch-Makefile (revision 191068) @@ -0,0 +1,43 @@ +--- Makefile.orig Thu Feb 24 12:15:23 2005 ++++ Makefile Sun Apr 29 01:04:11 2007 +@@ -1,10 +1,15 @@ + +-CC = gcc +-INSTROOT=/usr/local ++CC?= gcc ++INSTROOT?=${PREFIX} + BINDIR=$(INSTROOT)/bin +-DOCDIR=$(INSTROOT)/doc/gdsreader-0.3.2 ++DOCDIR=$(INSTROOT)/share/doc/gdsreader ++EXDIR=$(INSTROOT)/share/examples/gdsreader + MANDIR=$(INSTROOT)/man/man1 + ++INSTALL_PROGRAM?= ${BSD_INSTALL_PROGRAM} ++INSTALL_DATA?= ${BSD_INSTALL_DATA} ++INSTALL_MAN?= ${BSD_INSTALL_MAN} ++ + #CFLAGS = -I. + CFLAGS = -I. -Wall -g #-pg + LDFLAGS = #-pg +@@ -19,11 +24,16 @@ + ${CC} ${LDFLAGS} -o gdsreader ${OBJS} -lm + + install: gdsreader maptolayer +- mkdir -p $(DOCDIR) && cp -f COPYING README README.povray \ +- layers.config test.gds layers.config.7HP.5ML ChangeLog \ +- layers.config.5AM.4ML $(DOCDIR) +- mkdir -p $(BINDIR) && cp -f maptolayer gdsreader $(BINDIR) +- mkdir -p $(MANDIR) && cp -f maptolayer.1 gdsreader.1 $(MANDIR) ++ mkdir -p $(BINDIR) && ${INSTALL_PROGRAM} maptolayer gdsreader $(BINDIR) ++ mkdir -p $(MANDIR) && ${INSTALL_MAN} maptolayer.1 gdsreader.1 $(MANDIR) ++ ++install-docs: ++ mkdir -p $(DOCDIR) && ${INSTALL_DATA} README README.povray \ ++ ChangeLog $(DOCDIR) ++ ++install-data: ++ mkdir -p $(EXDIR) && ${INSTALL_DATA} layers.config test.gds \ ++ layers.config.7HP.5ML layers.config.5AM.4ML $(EXDIR) + + maptolayer: maptolayer.c + $(CC) -o maptolayer maptolayer.c Property changes on: head/cad/gdsreader/files/patch-Makefile ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Index: head/cad/gdsreader/pkg-descr =================================================================== --- head/cad/gdsreader/pkg-descr (nonexistent) +++ head/cad/gdsreader/pkg-descr (revision 191068) @@ -0,0 +1,4 @@ +This software has as target the printing/plotting/displaying of Calma (GDSii) +files without using true layout editors. + +WWW: http://home.netcom.com/~serbanp/ Property changes on: head/cad/gdsreader/pkg-descr ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property