summaryrefslogtreecommitdiff
path: root/cad/vipec/patches
diff options
context:
space:
mode:
Diffstat (limited to 'cad/vipec/patches')
-rw-r--r--cad/vipec/patches/patch-aa29
-rw-r--r--cad/vipec/patches/patch-ab20
-rw-r--r--cad/vipec/patches/patch-ac20
-rw-r--r--cad/vipec/patches/patch-ad23
4 files changed, 0 insertions, 92 deletions
diff --git a/cad/vipec/patches/patch-aa b/cad/vipec/patches/patch-aa
deleted file mode 100644
index db5ccffbc58..00000000000
--- a/cad/vipec/patches/patch-aa
+++ /dev/null
@@ -1,29 +0,0 @@
-$NetBSD: patch-aa,v 1.13 2008/06/12 02:14:16 joerg Exp $
-
---- Makefile.orig 2003-10-03 01:39:34.000000000 +0000
-+++ Makefile
-@@ -10,7 +10,7 @@
- SUBDIRS = src
- SOURCEPATH = `pwd`
- VERSION = 3.2.0
--INSTALLDIR = $(PREFIX)/opt/vipec
-+INSTALLDIR = ${DESTDIR}$(PREFIX)/vipec
- ICONFILE = vipec.gif
-
- export VERSION
-@@ -32,13 +32,13 @@ clean:
- debug:
- @(echo Creating makefile for debug version ...; \
- cd src; \
-- qmake "CONFIG+=debug" -o Makefile.tmp vipec.pro; \
-+ ${QMAKE} "CONFIG+=debug" -o Makefile.tmp vipec.pro; \
- cat Makefile.tmp | sed 's/no-exceptions/exceptions/g' > Makefile )
-
- release:
- @(echo Creating makefile for release version ...; \
- cd src; \
-- qmake -o Makefile.tmp vipec.pro; \
-+ ${QMAKE} -o Makefile.tmp vipec.pro; \
- cat Makefile.tmp | sed 's/no-exceptions/exceptions/g' > Makefile )
-
- ts:
diff --git a/cad/vipec/patches/patch-ab b/cad/vipec/patches/patch-ab
deleted file mode 100644
index b7a582f36f5..00000000000
--- a/cad/vipec/patches/patch-ab
+++ /dev/null
@@ -1,20 +0,0 @@
-$NetBSD: patch-ab,v 1.5 2006/05/26 09:20:03 joerg Exp $
-
---- include/Schematic.h.orig 2006-05-26 08:07:40.000000000 +0000
-+++ include/Schematic.h
-@@ -41,6 +41,7 @@ public:
- Schematic();
- virtual ~Schematic();
- Schematic& operator=( const Schematic& );
-+ Schematic( const Schematic& );
-
- void setName(const QString& name);
- const QString& getName() const;
-@@ -92,7 +93,6 @@ public:
- TComplex getPortImpedance( uint port );
-
- private:
-- Schematic( const Schematic& );
-
- int distanceFromLine( const QPoint& point,
- const CircuitLine& line,
diff --git a/cad/vipec/patches/patch-ac b/cad/vipec/patches/patch-ac
deleted file mode 100644
index 761287b46a2..00000000000
--- a/cad/vipec/patches/patch-ac
+++ /dev/null
@@ -1,20 +0,0 @@
-$NetBSD: patch-ac,v 1.8 2006/05/26 09:20:03 joerg Exp $
-
---- include/Component.h.orig 2006-05-26 08:12:35.000000000 +0000
-+++ include/Component.h
-@@ -44,6 +44,7 @@ class QTextStream;
- class Component : public SchematicElement
- {
- public:
-+ Component( const Component& c );
- Component( const QPoint& center );
- virtual ~Component();
-
-@@ -107,7 +108,6 @@ protected:
-
- private:
- //Not implemented
-- Component( const Component& c );
- Component& operator=( const Component& c );
-
- void drawAttributes(QPainter* painter);
diff --git a/cad/vipec/patches/patch-ad b/cad/vipec/patches/patch-ad
deleted file mode 100644
index e957fda0269..00000000000
--- a/cad/vipec/patches/patch-ad
+++ /dev/null
@@ -1,23 +0,0 @@
-$NetBSD: patch-ad,v 1.3 2006/05/26 09:20:03 joerg Exp $
-
---- include/DataVector.h.orig 2006-05-26 08:16:56.000000000 +0000
-+++ include/DataVector.h
-@@ -34,6 +34,7 @@ public:
-
- DataVector();
- DataVector(uint Size);
-+ DataVector(const DataVector& vector);
- virtual ~DataVector();
-
- DataVector& operator= (const DataVector& vector);
-@@ -44,10 +45,6 @@ public:
- void addPoint(TComplex value);
-
- private:
-- DataVector(const DataVector& vector);
--
--
--private:
- TComplex *vector_;
- uint vectorSize_;
- uint pointer_;