summaryrefslogtreecommitdiff
path: root/cad/vipec
diff options
context:
space:
mode:
Diffstat (limited to 'cad/vipec')
-rw-r--r--cad/vipec/Makefile47
-rw-r--r--cad/vipec/distinfo2
-rw-r--r--cad/vipec/files/patch-HelpWindow.cpp18
-rw-r--r--cad/vipec/files/patch-Setup.cpp22
-rw-r--r--cad/vipec/files/patch-include::Component.h24
-rw-r--r--cad/vipec/files/patch-include::DataVector.h10
-rw-r--r--cad/vipec/files/patch-include::Schematic.h13
-rw-r--r--cad/vipec/files/patch-vipec.pro13
-rw-r--r--cad/vipec/pkg-descr15
-rw-r--r--cad/vipec/pkg-plist61
10 files changed, 0 insertions, 225 deletions
diff --git a/cad/vipec/Makefile b/cad/vipec/Makefile
deleted file mode 100644
index 5c52d7d5990a..000000000000
--- a/cad/vipec/Makefile
+++ /dev/null
@@ -1,47 +0,0 @@
-# ex:ts=8
-# New ports collection makefile for: vipec
-# Date created: April 3, 2001
-# Whom: Ying-Chieh Liao <ijliao@FreeBSD.org>
-#
-# $FreeBSD$
-#
-
-PORTNAME= vipec
-PORTVERSION= 3.2.0
-PORTREVISION= 8
-CATEGORIES= cad
-MASTER_SITES= SF/${PORTNAME}/ViPEC/${PORTVERSION}
-DISTNAME= ViPEC-${PORTVERSION}
-
-MAINTAINER= ports@FreeBSD.org
-COMMENT= Analyze high frequency, linear electrical networks
-
-WRKSRC= ${WRKDIR}/${DISTNAME}/src
-
-BUILD_DEPENDS= qmake:${PORTSDIR}/devel/qmake
-
-DEPRECATED= Depends on QT3; unmaintained
-EXPIRATION_DATE= 2013-07-01
-
-USE_QT_VER= 3
-USE_GMAKE= yes
-MAKE_ENV= QTDIR="${QT_PREFIX}" VIPECHOME="${DATADIR}"
-
-do-configure:
- @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} qmake \
- -spec ${LOCALBASE}/share/qt/mkspecs/freebsd-g++ vipec.pro
-
-do-install:
- ${INSTALL_PROGRAM} ${WRKSRC}/../vipec ${PREFIX}/bin/vipec
- @${MKDIR} ${DATADIR}
- ${INSTALL_DATA} ${WRKSRC}/../vipec.cfg ${DATADIR}
- @${MKDIR} ${DATADIR}/ckt
- ${INSTALL_DATA} ${WRKSRC}/../ckt/*.* ${DATADIR}/ckt
- @${MKDIR} ${DATADIR}/help
- ${INSTALL_DATA} ${WRKSRC}/../help/*.* ${DATADIR}/help
- @${MKDIR} ${DATADIR}/help/models
- ${INSTALL_DATA} ${WRKSRC}/../help/models/*.* ${DATADIR}/help/models
- @${MKDIR} ${DATADIR}/messages
- ${INSTALL_DATA} ${WRKSRC}/../messages/*.qm ${DATADIR}/messages
-
-.include <bsd.port.mk>
diff --git a/cad/vipec/distinfo b/cad/vipec/distinfo
deleted file mode 100644
index a452923268e6..000000000000
--- a/cad/vipec/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (ViPEC-3.2.0.tar.gz) = 12d43d7fb981bcb8bff24280e767bb634b4e414097569e9d1bfa1bf17467afcd
-SIZE (ViPEC-3.2.0.tar.gz) = 191819
diff --git a/cad/vipec/files/patch-HelpWindow.cpp b/cad/vipec/files/patch-HelpWindow.cpp
deleted file mode 100644
index 0896f7fe91aa..000000000000
--- a/cad/vipec/files/patch-HelpWindow.cpp
+++ /dev/null
@@ -1,18 +0,0 @@
---- HelpWindow.cpp.orig Thu Oct 2 04:40:40 2003
-+++ HelpWindow.cpp Fri Aug 20 23:49:10 2004
-@@ -36,7 +36,15 @@
- QString vipecHome = QString(getenv("VIPECHOME"));
- if ( vipecHome.isEmpty() )
- {
-+#ifdef VIPECHOME
-+ vipecHome = QString(VIPECHOME);
-+ if (vipecHome.isEmpty())
-+ {
-+ vipecHome = dir.absPath();
-+ }
-+#else
- vipecHome = dir.absPath();
-+#endif
- }
- home_ = vipecHome + "/help/index.html";
- const QStringList currentDir(".");
diff --git a/cad/vipec/files/patch-Setup.cpp b/cad/vipec/files/patch-Setup.cpp
deleted file mode 100644
index 419b8cf253bb..000000000000
--- a/cad/vipec/files/patch-Setup.cpp
+++ /dev/null
@@ -1,22 +0,0 @@
---- Setup.cpp.orig Fri Oct 3 09:31:11 2003
-+++ Setup.cpp Fri Aug 20 23:49:30 2004
-@@ -163,8 +163,17 @@
- vipecHome_ = QString(getenv("VIPECHOME"));
- if ( vipecHome_.isEmpty() )
- {
-- vipecHome_ = dir.absPath();
-- Logger::warning("VIPECHOME not set, assuming " + vipecHome_);
-+#ifdef VIPECHOME
-+ vipecHome_ = QString(VIPECHOME);
-+ if (vipecHome_.isEmpty())
-+ {
-+ vipecHome_ = dir.absPath();
-+ Logger::warning("VIPECHOME not set, assuming " + vipecHome_);
-+ }
-+#else
-+ vipecHome_ = dir.absPath();
-+ Logger::warning("VIPECHOME not set, assuming " + vipecHome_);
-+#endif
- }
- helpFilename_ = vipecHome_ + "/help/index.html";
- configFilename_ = vipecHome_ + "/vipec.cfg";
diff --git a/cad/vipec/files/patch-include::Component.h b/cad/vipec/files/patch-include::Component.h
deleted file mode 100644
index 736e11dade5c..000000000000
--- a/cad/vipec/files/patch-include::Component.h
+++ /dev/null
@@ -1,24 +0,0 @@
---- ../include/Component.h.orig Fri Mar 30 18:50:58 2001
-+++ ../include/Component.h Fri Aug 20 21:55:50 2004
-@@ -93,6 +93,10 @@
-
- static int getNodeSize();
-
-+ //Not implemented
-+ Component( const Component& c );
-+ Component& operator=( const Component& c );
-+
- protected:
- virtual void drawSymbol(QPainter*) = 0;
- CircuitNode* addNode(int, int, bool isPortNode = FALSE,
-@@ -106,10 +110,6 @@
- void copyMemberData( Component& source );
-
- private:
-- //Not implemented
-- Component( const Component& c );
-- Component& operator=( const Component& c );
--
- void drawAttributes(QPainter* painter);
-
- protected:
diff --git a/cad/vipec/files/patch-include::DataVector.h b/cad/vipec/files/patch-include::DataVector.h
deleted file mode 100644
index e8e3fb220bce..000000000000
--- a/cad/vipec/files/patch-include::DataVector.h
+++ /dev/null
@@ -1,10 +0,0 @@
---- ../include/DataVector.h.orig Tue Feb 13 06:23:19 2001
-+++ ../include/DataVector.h Fri Aug 20 21:56:44 2004
-@@ -43,7 +43,6 @@
- uint getSize();
- void addPoint(TComplex value);
-
--private:
- DataVector(const DataVector& vector);
-
-
diff --git a/cad/vipec/files/patch-include::Schematic.h b/cad/vipec/files/patch-include::Schematic.h
deleted file mode 100644
index e20a65da717d..000000000000
--- a/cad/vipec/files/patch-include::Schematic.h
+++ /dev/null
@@ -1,13 +0,0 @@
---- ../include/Schematic.h.orig Fri Mar 30 18:50:58 2001
-+++ ../include/Schematic.h Fri Aug 20 21:48:46 2004
-@@ -91,9 +91,9 @@
- QList<DataPoint>& getZData();
- TComplex getPortImpedance( uint port );
-
--private:
- Schematic( const Schematic& );
-
-+private:
- int distanceFromLine( const QPoint& point,
- const CircuitLine& line,
- bool orthoganalOnly );
diff --git a/cad/vipec/files/patch-vipec.pro b/cad/vipec/files/patch-vipec.pro
deleted file mode 100644
index fd94fef96500..000000000000
--- a/cad/vipec/files/patch-vipec.pro
+++ /dev/null
@@ -1,13 +0,0 @@
---- vipec.pro.orig Thu Oct 2 04:58:40 2003
-+++ vipec.pro Sat Aug 21 00:04:24 2004
-@@ -8,8 +8,8 @@
- CLEAN_FILES = core Makefile *~ *moc* components/*~ dialogs/*~ images/*~ outputs/*~ widgets/*~
- MOC_DIR = moc
- OBJECTS_DIR = obj
--CONFIG = qt warn_on exceptions stl rtti
--DEFINES = QT_FATAL_ASSERT
-+CONFIG += qt warn_on exceptions stl rtti
-+DEFINES += QT_FATAL_ASSERT VIPECHOME=\"$(VIPECHOME)\"
- RC_FILE = vipec.rc
- HEADERS = \
- ../include/Logger.h \
diff --git a/cad/vipec/pkg-descr b/cad/vipec/pkg-descr
deleted file mode 100644
index 341b536dcee3..000000000000
--- a/cad/vipec/pkg-descr
+++ /dev/null
@@ -1,15 +0,0 @@
-ViPEC is a powerful tool for the analysis of high frequency, linear
-electrical networks. It takes a schematic description of the electrical
-network and performs a linear analysis in the frequency domain. The output
-is in the form of port parameters (S, Y or Z) with results presented on a
-user defined grid, Smithchart or table. It can also be used to compute
-other characteristics like stability factors and group delay.
-
-ViPEC supports various lumped elements (capacitors, resistors etc.) as well
-as distributed networks like transmission lines, microstrip and stripline
-structures. Two port data files are also supported (e.g. the 2-port frequency
-parameters of various RF transistors as supplied by the manufacturer). The
-component library is under constant development with new elements added at
-regular intervals.
-
-WWW: http://vipec.sourceforge.net/
diff --git a/cad/vipec/pkg-plist b/cad/vipec/pkg-plist
deleted file mode 100644
index 0992ff31d547..000000000000
--- a/cad/vipec/pkg-plist
+++ /dev/null
@@ -1,61 +0,0 @@
-bin/vipec
-%%DATADIR%%/ckt/amplifier.ckt
-%%DATADIR%%/ckt/bandpass.ckt
-%%DATADIR%%/ckt/bandpass.s2p
-%%DATADIR%%/ckt/bandpass2.ckt
-%%DATADIR%%/ckt/combined.ckt
-%%DATADIR%%/ckt/coupled_line_filter.ckt
-%%DATADIR%%/ckt/coupler.ckt
-%%DATADIR%%/ckt/datafile.ckt
-%%DATADIR%%/ckt/filter.ckt
-%%DATADIR%%/ckt/highpass.ckt
-%%DATADIR%%/ckt/nec70000.s2p
-%%DATADIR%%/ckt/stripline.ckt
-%%DATADIR%%/ckt/test.ckt
-%%DATADIR%%/help/analysing.html
-%%DATADIR%%/help/components.html
-%%DATADIR%%/help/disclaimer.html
-%%DATADIR%%/help/frequency.html
-%%DATADIR%%/help/index.html
-%%DATADIR%%/help/license.html
-%%DATADIR%%/help/models/block.html
-%%DATADIR%%/help/models/block.png
-%%DATADIR%%/help/models/capacitor.html
-%%DATADIR%%/help/models/capacitor.png
-%%DATADIR%%/help/models/coupled.png
-%%DATADIR%%/help/models/gyrator.html
-%%DATADIR%%/help/models/gyrator.png
-%%DATADIR%%/help/models/idealcoupled.html
-%%DATADIR%%/help/models/inductor.html
-%%DATADIR%%/help/models/inductor.png
-%%DATADIR%%/help/models/inductorq.html
-%%DATADIR%%/help/models/inductorq.png
-%%DATADIR%%/help/models/port.html
-%%DATADIR%%/help/models/port.png
-%%DATADIR%%/help/models/resistor.html
-%%DATADIR%%/help/models/resistor.png
-%%DATADIR%%/help/models/tlin2port.html
-%%DATADIR%%/help/models/tlin2port.png
-%%DATADIR%%/help/models/tlin4port.html
-%%DATADIR%%/help/models/tlin4port.png
-%%DATADIR%%/help/models/tlinphysical.html
-%%DATADIR%%/help/models/tlinphysical.png
-%%DATADIR%%/help/models/vccs.html
-%%DATADIR%%/help/models/vccs.png
-%%DATADIR%%/help/navigation.html
-%%DATADIR%%/help/outputs.html
-%%DATADIR%%/help/placing.html
-%%DATADIR%%/help/schematics.html
-%%DATADIR%%/help/substrates.html
-%%DATADIR%%/help/units.html
-%%DATADIR%%/help/variables.html
-%%DATADIR%%/help/what_is.html
-%%DATADIR%%/messages/vipec_fr.qm
-%%DATADIR%%/messages/vipec_ger.qm
-%%DATADIR%%/messages/vipec_pt.qm
-%%DATADIR%%/vipec.cfg
-@dirrm %%DATADIR%%/messages
-@dirrm %%DATADIR%%/help/models
-@dirrm %%DATADIR%%/help
-@dirrm %%DATADIR%%/ckt
-@dirrm %%DATADIR%%