summaryrefslogtreecommitdiff
path: root/graphics/py-amanith/files/patch-setup.py
diff options
context:
space:
mode:
authorRene Ladan <rene@FreeBSD.org>2013-07-26 19:19:20 +0000
committerRene Ladan <rene@FreeBSD.org>2013-07-26 19:19:20 +0000
commit66fee909266a1dedf3dfc1f03bb0841380d78805 (patch)
tree4c98d494bc4532b5dd5b19f4e47bcb3babf104c2 /graphics/py-amanith/files/patch-setup.py
parentRemove 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 '')
-rw-r--r--graphics/py-amanith/files/patch-setup.py40
1 files changed, 0 insertions, 40 deletions
diff --git a/graphics/py-amanith/files/patch-setup.py b/graphics/py-amanith/files/patch-setup.py
deleted file mode 100644
index 5d3ee2be7615..000000000000
--- a/graphics/py-amanith/files/patch-setup.py
+++ /dev/null
@@ -1,40 +0,0 @@
---- setup.py Thu Apr 6 16:23:35 2006
-+++ setup.py Sat Sep 2 17:34:01 2006
-@@ -6,15 +6,19 @@
- import os
- from os.path import join
-
-+LOCALBASE = os.environ['LOCALBASE']
-+LOCALBASE = os.environ['LOCALBASE']
-+
- try:
- amanith_base = os.environ["AMANITHDIR"]
- except:
-- amanith_base = "amanith"
-+ amanith_base = os.environ['LOCALBASE']
-+ LOCALBASE = os.environ['LOCALBASE']
-
- debug = False
- libs = ["amanith"]
--inc = [join("changes", "include"), join(amanith_base, "include"), "include"]
--lib = [join(amanith_base, "lib")]
-+inc = [join("changes", "include"), join(amanith_base, "include"), join(LOCALBASE,"include") ,"include"]
-+lib = [join(amanith_base, "lib"), join(LOCALBASE, "lib")]
- cc_args = []
- swig_args = ["-Ibuild/amanith"]
-
-@@ -41,10 +45,10 @@
- def run(self):
- # Ultimately this should use patch(1) or something, but for now
- # we just copy the stuff over.
-- if not os.path.isdir(join("build", "amanith")):
-- os.makedirs(join("build", "amanith"))
-- shutil.copytree(join(amanith_base, "include"), join("build", "amanith", "include"))
-- self.copy("changes", join("build", "amanith"))
-+ if not os.path.isdir(join("build", "amanith","include")):
-+ os.makedirs(join("build", "amanith","include"))
-+ shutil.copytree(join(amanith_base, "include","amanith"), join("build", "amanith", "include","amanith"))
-+ self.copy(join("changes","include"), join("build", "amanith","include"))
- _build_ext.run(self)
-
- ext_amanith = Extension('_amanith', ['amanith.i'],