summaryrefslogtreecommitdiff
path: root/audio/cheesetracker/files/patch-SConstruct
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 /audio/cheesetracker/files/patch-SConstruct
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
Diffstat (limited to 'audio/cheesetracker/files/patch-SConstruct')
-rw-r--r--audio/cheesetracker/files/patch-SConstruct71
1 files changed, 0 insertions, 71 deletions
diff --git a/audio/cheesetracker/files/patch-SConstruct b/audio/cheesetracker/files/patch-SConstruct
deleted file mode 100644
index 8b8951b37b30..000000000000
--- a/audio/cheesetracker/files/patch-SConstruct
+++ /dev/null
@@ -1,71 +0,0 @@
---- SConstruct.orig Tue Aug 7 08:35:47 2007
-+++ SConstruct Mon Aug 20 14:43:47 2007
-@@ -1,12 +1,12 @@
- EnsureSConsVersion(0,14);
- #EnsurePythonVersion(2,1); this is buggy in scons, so i commented this out
-
--import os;
--import string;
-+import os
-+import string
- import sys
-
--import detect;
--import methods;
-+import detect
-+import methods
-
- moc_binary = "moc"
-
-@@ -55,8 +55,10 @@
- env.make_so = None
- env.detect = detect.Detect()
-
--if os.environ.has_key('DISTCC_HOSTS'):
-+if os.environ.has_key('CXX'):
- env['CXX'] = os.environ['CXX']
-+
-+if os.environ.has_key('DISTCC_HOSTS'):
- env['ENV']['DISTCC_HOSTS'] = os.environ['DISTCC_HOSTS']
- env['ENV']['HOME'] = os.environ['HOME']
-
-@@ -85,16 +87,16 @@
-
- if (env.detect.need_gmp):
- env.Append(CXXFLAGS=['-DNEED_GMP']);
-- env.Append(LIBS=['-lgmp']);
-+ env.Append(LIBS=['gmp']);
- if (env.detect.have_libaudiofile):
-- env.Append(LIBS=['-laudiofile']);
-+ env.Append(LIBS=['audiofile']);
- env.Append(CXXFLAGS=['-DHAVE_LIBAUDIOFILE']);
- if (env.detect.need_limit_macros_define) :
- env.Append(CXXFLAGS=['-D__STDC_LIMIT_MACROS']);
- if (env.detect.have_gnu_basename) :
- env.Append(CXXFLAGS=['-DHAVE_GNU_BASENAME']);
--if (env.detect.have_xpg_basename) :
-- env.Append(CXXFLAGS=['-DHAVE_XPG_BASENAME']);
-+#if (env.detect.have_xpg_basename) :
-+# env.Append(CXXFLAGS=['-DHAVE_XPG_BASENAME']);
- if (env.detect.have_stdint_h) :
- env.Append(CXXFLAGS=['-DHAVE_STDINT_H']);
- if (env.detect.have_msint) :
-@@ -103,7 +105,7 @@
- env.Append(CXXFLAGS=['-DHAVE_MMAP']);
- if (env.detect.have_madvise) :
- env.Append(CXXFLAGS=['-DHAVE_MADVISE']);
--env.Append(CXXFLAGS=['-g','-Wall']);
-+env.Append(CXXFLAGS="%%CXXFLAGS%% %%PTHREAD_CFLAGS%%");
-
- if os.environ.has_key('USE_STACK_CHECK'):
- env.Append(CXXFLAGS=['-fstack-check']);
-@@ -159,7 +161,8 @@
-
-
-
--env.Append(LIBS=['z','m','pthread']);
-+env.Append(LIBS=['z','m']);
-+env.Append(LINKFLAGS=["%%PTHREAD_LIBS%%"]);
-
-
-