summaryrefslogtreecommitdiff
path: root/audio/mixxx21/files/patch-build_mixxx.py
diff options
context:
space:
mode:
authorRene Ladan <rene@FreeBSD.org>2021-01-02 13:49:04 +0000
committerRene Ladan <rene@FreeBSD.org>2021-01-02 13:49:04 +0000
commitb87c6bce5f99d9e26560ed323c58af13a1704be3 (patch)
tree77a459c21e886c9b22617fc931cfc76d80e6de60 /audio/mixxx21/files/patch-build_mixxx.py
parentdeskutils/zim: remove optional dependency on expired devel/bzr (diff)
Remove a few expired ports:
2020-12-31 audio/ardour: Uses Python 2.7 version of scons, and Python 2.7 which is EOLed upstream 2020-12-31 audio/mixxx21: Uses Python 2.7 version of scons, and Python 2.7 which is EOLed upstream 2020-12-31 databases/arangodb32: Uses Python 2.7 which is EOLed upstream 2020-12-31 databases/arangodb33: Uses Python 2.7 which is EOLed upstream 2020-12-31 devel/bzr: Uses Python 2.7 which is EOLed upstream 2020-12-31 devel/chromium-gn: Uses deprecated version of python, use devel/gn instead 2020-12-31 devel/mongo-cxx-driver: Uses Python 2.7 version of scons, and Python 2.7 which is EOLed upstream
Diffstat (limited to 'audio/mixxx21/files/patch-build_mixxx.py')
-rw-r--r--audio/mixxx21/files/patch-build_mixxx.py27
1 files changed, 0 insertions, 27 deletions
diff --git a/audio/mixxx21/files/patch-build_mixxx.py b/audio/mixxx21/files/patch-build_mixxx.py
deleted file mode 100644
index 1ee0a37c9389..000000000000
--- a/audio/mixxx21/files/patch-build_mixxx.py
+++ /dev/null
@@ -1,27 +0,0 @@
---- build/mixxx.py 2018-04-15 13:30:27.000000000 -0500
-+++ build/mixxx.py 2018-04-21 22:31:31.694426000 -0500
-@@ -394,9 +394,9 @@
- self.env['LINKFLAGS'] += SCons.Util.CLVar(os.environ['LDFLAGS'])
-
- # Allow installation directories to be specified.
-- prefix = Script.ARGUMENTS.get('prefix', '/usr/local')
-+ prefix = Script.ARGUMENTS.get('prefix', '%%PREFIX%%')
- if 'LIBDIR' in os.environ:
-- self.env['LIBDIR'] = os.path.relpath(os.environ['LIBDIR'], prefix)
-+ self.env['LIBDIR'] = 'lib' # os.path.relpath(os.environ['LIBDIR'], prefix)
- if 'BINDIR' in os.environ:
- self.env['BINDIR'] = os.path.relpath(os.environ['BINDIR'], prefix)
- if 'SHAREDIR' in os.environ:
-@@ -429,10 +429,10 @@
- def install_options(self):
- cachefile = os.path.join(self.get_cache_dir(), 'custom.py')
- vars = Script.Variables(cachefile)
-- vars.Add('prefix', 'Set to your install prefix', '/usr/local')
-+ vars.Add('prefix', 'Set to your install prefix', '%%PREFIX%%')
- vars.Add('virtualize',
- 'Dynamically swap out the build directory when switching Git branches.', 1)
-- vars.Add('qtdir', 'Set to your QT4 directory', '/usr/share/qt4')
-+ vars.Add('qtdir', 'Set to your QT4 directory', '%%LOCALBASE%%/share/qt4')
- vars.Add('qt_sqlite_plugin', 'Set to 1 to package the Qt SQLite plugin.'
- '\n Set to 0 if SQLite support is compiled into QtSQL.', 0)
- vars.Add('target',