diff options
author | dmcmahill <dmcmahill> | 2001-04-28 02:36:35 +0000 |
---|---|---|
committer | dmcmahill <dmcmahill> | 2001-04-28 02:36:35 +0000 |
commit | bad93db02cc438f6ded8092ac51020ede11c0861 (patch) | |
tree | f5b87d1c26cd78cdabd5d657c32979a65a97d8db /cad/simian/Makefile | |
parent | 2ec80ce33b8630d5a9c958d3282ca740df18f1be (diff) | |
download | pkgsrc-bad93db02cc438f6ded8092ac51020ede11c0861.tar.gz |
initial import of simian-2.1
Surface Impedance Method for Interconnect Analysis.
SIMIAN is a two dimensional frequency dependent series
impedance extraction tool for inerconnects and transmission
lines using conductors of rectangular or circular cross section.
The use of the surface ribbon method (SRM) greatly enhances
the speed of computation relative to the volume filament
method (VFM).
Diffstat (limited to 'cad/simian/Makefile')
-rw-r--r-- | cad/simian/Makefile | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/cad/simian/Makefile b/cad/simian/Makefile new file mode 100644 index 00000000000..44e24cdc790 --- /dev/null +++ b/cad/simian/Makefile @@ -0,0 +1,34 @@ +# $NetBSD: Makefile,v 1.1.1.1 2001/04/28 02:36:35 dmcmahill Exp $ +# + +DISTNAME= simian_12_98 +PKGNAME= simian-2.1 +CATEGORIES= cad +MASTER_SITES= http://weewave.mer.utexas.edu/MED_files/CODE_RQST/ + +MAINTAINER= dmcmahill@netbsd.org +HOMEPAGE= http://weewave.mer.utexas.edu/MED_files/MED_research/Intrcncts/SIMIAN_stuff/simian_links.html +COMMENT= 2-dimensional interconnect and transmission line simulator + +RESTRICTED= "Personal use only" +NO_SRC_ON_CDROM= ${RESTRICTED} +NO_BIN_ON_CDROM= ${RESTRICTED} +NO_SRC_ON_FTP= ${RESTRICTED} +NO_BIN_ON_FTP= ${RESTRICTED} + +WRKSRC= ${WRKDIR}/Simian/src +ALL_TARGET= simian + +do-fetch: + @if ${TEST} \! -f ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}; then \ + ${ECHO} "===> You need to request a password on ${HOMEPAGE}"; \ + ${ECHO} " and fetch on your own source file."; \ + exit 1; \ + fi + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/simian ${PREFIX}/bin + ${INSTALL_DATA_DIR} ${PREFIX}/share/examples/simian + ${INSTALL_DATA} ${WRKSRC}/../examples/* ${PREFIX}/share/examples/simian + +.include "../../mk/bsd.pkg.mk" |