diff options
author | Jose Alonso Cardenas Marquez <acm@FreeBSD.org> | 2018-12-27 04:16:38 +0000 |
---|---|---|
committer | Jose Alonso Cardenas Marquez <acm@FreeBSD.org> | 2018-12-27 04:16:38 +0000 |
commit | 1fa24a68ea3111dee2c1c45e6f98f42df94880b4 (patch) | |
tree | 577e630609eef5cbe4eaf5008f5bc84c349bf803 /audio/mixxx21/files/patch-build_mixxx.py | |
parent | - Update to 1.42.0 (diff) |
- Copy audio/mixxx to audio/mixxx21. audio/mixxx was updated to latest stable
version. Now this is a previous stable version
Notes
Notes:
svn path=/head/; revision=488505
Diffstat (limited to 'audio/mixxx21/files/patch-build_mixxx.py')
-rw-r--r-- | audio/mixxx21/files/patch-build_mixxx.py | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/audio/mixxx21/files/patch-build_mixxx.py b/audio/mixxx21/files/patch-build_mixxx.py new file mode 100644 index 000000000000..1ee0a37c9389 --- /dev/null +++ b/audio/mixxx21/files/patch-build_mixxx.py @@ -0,0 +1,27 @@ +--- 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', |