diff options
author | Rene Ladan <rene@FreeBSD.org> | 2013-07-26 19:19:20 +0000 |
---|---|---|
committer | Rene Ladan <rene@FreeBSD.org> | 2013-07-26 19:19:20 +0000 |
commit | 66fee909266a1dedf3dfc1f03bb0841380d78805 (patch) | |
tree | 4c98d494bc4532b5dd5b19f4e47bcb3babf104c2 /graphics/libx3dtk/files/patch-src-kernel-base-SFPoint2f.cpp | |
parent | Remove support for Qt3/kde in preparation for full Qt3/kde3 removal (diff) |
KDE3 and QT3 expired on 2013-07-01, remove these ports.
Unfortunately, this also affects some ports using QT3 as a GUI toolkit.
Changes to infrastructure files:
- bsd.kde.mk : obsolete, remove
- bsd.qt.mk : note that a CONFLICTS_BUILD line can probably go after a while
- CHANGES : document the removals from bsd.port.mk
- KNOBS : remove KDE and QT (KDE4 and QT4 should be used instead)
- MOVED : add the removed ports
PR: ports/180745
Submitted by: rene
Approved by: portmgr (bapt)
Exp-run by: bapt
Notes
Notes:
svn path=/head/; revision=323748
Diffstat (limited to 'graphics/libx3dtk/files/patch-src-kernel-base-SFPoint2f.cpp')
-rw-r--r-- | graphics/libx3dtk/files/patch-src-kernel-base-SFPoint2f.cpp | 110 |
1 files changed, 0 insertions, 110 deletions
diff --git a/graphics/libx3dtk/files/patch-src-kernel-base-SFPoint2f.cpp b/graphics/libx3dtk/files/patch-src-kernel-base-SFPoint2f.cpp deleted file mode 100644 index d564aec28125..000000000000 --- a/graphics/libx3dtk/files/patch-src-kernel-base-SFPoint2f.cpp +++ /dev/null @@ -1,110 +0,0 @@ -*** src/kernel/base/SFPoint2f.cpp.orig Sun Dec 17 12:28:27 2006 ---- src/kernel/base/SFPoint2f.cpp Sun Dec 17 12:30:01 2006 -*************** -*** 67,74 **** - - // operations on points - //overloading of the operators +, -, * - -! SFPoint2f X3DTK::operator+ (const SFPoint2f &v1, const SFVec2f &v2) - { - SFPoint2f res; - res.x = v1.x + v2.x; ---- 67,75 ---- - - // operations on points - //overloading of the operators +, -, * -+ namespace X3DTK { - -! SFPoint2f operator+ (const SFPoint2f &v1, const SFVec2f &v2) - { - SFPoint2f res; - res.x = v1.x + v2.x; -*************** -*** 76,82 **** - return res; - } - -! SFPoint2f X3DTK::operator+ (const SFPoint2f &v1, const SFPoint2f &v2) - { - SFPoint2f res; - res.x = v1.x + v2.x; ---- 77,83 ---- - return res; - } - -! SFPoint2f operator+ (const SFPoint2f &v1, const SFPoint2f &v2) - { - SFPoint2f res; - res.x = v1.x + v2.x; -*************** -*** 84,90 **** - return res; - } - -! SFPoint2f X3DTK::operator- (const SFPoint2f &v1, const SFVec2f &v2) - { - SFPoint2f res; - res.x = v1.x - v2.x; ---- 85,91 ---- - return res; - } - -! SFPoint2f operator- (const SFPoint2f &v1, const SFVec2f &v2) - { - SFPoint2f res; - res.x = v1.x - v2.x; -*************** -*** 92,98 **** - return res; - } - -! SFVec2f X3DTK::operator- (const SFPoint2f &v1, const SFPoint2f &v2) - { - SFVec2f res; - res.x = v1.x - v2.x; ---- 93,99 ---- - return res; - } - -! SFVec2f operator- (const SFPoint2f &v1, const SFPoint2f &v2) - { - SFVec2f res; - res.x = v1.x - v2.x; -*************** -*** 100,106 **** - return res; - } - -! SFPoint2f X3DTK::operator* (const float a, const SFPoint2f &v) - { - SFPoint2f res; - res.x = a * v.x; ---- 101,107 ---- - return res; - } - -! SFPoint2f operator* (const float a, const SFPoint2f &v) - { - SFPoint2f res; - res.x = a * v.x; -*************** -*** 108,115 **** - return res; - } - -! float X3DTK::distance(const SFPoint2f &A, const SFPoint2f &B) - { - return (A - B).norm(); - } - ---- 109,117 ---- - return res; - } - -! float distance(const SFPoint2f &A, const SFPoint2f &B) - { - return (A - B).norm(); - } - -+ } |