mirror of
https://github.com/dguglielmi/sunny-overlay.git
synced 2025-12-06 13:52:40 +01:00
- media-sound/mixxx: Initial import from proaudio
This commit is contained in:
11
media-sound/mixxx/files/mixxx-9999-desktop-file.patch
Normal file
11
media-sound/mixxx/files/mixxx-9999-desktop-file.patch
Normal file
@@ -0,0 +1,11 @@
|
||||
--- a/res/linux/mixxx.desktop 2015-09-10 22:28:43.231867210 +0200
|
||||
+++ b/res/linux/mixxx.desktop 2015-09-10 22:28:53.331800347 +0200
|
||||
@@ -3,7 +3,7 @@
|
||||
Name=Mixxx
|
||||
GenericName=Digital DJ interface
|
||||
Comment=A digital DJ interface
|
||||
-Exec=pasuspender mixxx || mixxx
|
||||
+Exec=pasuspender mixxx
|
||||
Terminal=false
|
||||
Icon=mixxx-icon
|
||||
Type=Application
|
||||
10
media-sound/mixxx/files/mixxx-9999-docs.patch
Normal file
10
media-sound/mixxx/files/mixxx-9999-docs.patch
Normal file
@@ -0,0 +1,10 @@
|
||||
--- mixxx-9999/src/SConscript
|
||||
+++ mixxx-9999/src/SConscript
|
||||
@@ -290,7 +290,6 @@
|
||||
env.Alias('install', controllermappings)
|
||||
env.Alias('install', translations)
|
||||
env.Alias('install', keyboardmappings)
|
||||
- env.Alias('install', docs)
|
||||
env.Alias('install', dotdesktop)
|
||||
env.Alias('install', icon)
|
||||
env.Alias('install', promotracks)
|
||||
168
media-sound/mixxx/files/mixxx-9999-system-libs.patch
Normal file
168
media-sound/mixxx/files/mixxx-9999-system-libs.patch
Normal file
@@ -0,0 +1,168 @@
|
||||
diff --git a/build/depends.py b/build/depends.py
|
||||
index 77f4c4f..a3d0df0 100644
|
||||
--- a/build/depends.py
|
||||
+++ b/build/depends.py
|
||||
@@ -347,25 +347,10 @@ class TestHeaders(Dependence):
|
||||
|
||||
class FidLib(Dependence):
|
||||
|
||||
- def sources(self, build):
|
||||
- symbol = None
|
||||
- if build.platform_is_windows:
|
||||
- if build.toolchain_is_msvs:
|
||||
- symbol = 'T_MSVC'
|
||||
- elif build.crosscompile:
|
||||
- # Not sure why, but fidlib won't build with mingw32msvc and
|
||||
- # T_MINGW
|
||||
- symbol = 'T_LINUX'
|
||||
- elif build.toolchain_is_gnu:
|
||||
- symbol = 'T_MINGW'
|
||||
- else:
|
||||
- symbol = 'T_LINUX'
|
||||
-
|
||||
- return [build.env.StaticObject('#lib/fidlib-0.9.10/fidlib.c',
|
||||
- CPPDEFINES=symbol)]
|
||||
-
|
||||
def configure(self, build, conf):
|
||||
- build.env.Append(CPPPATH='#lib/fidlib-0.9.10/')
|
||||
+ if not conf.CheckLib('fidlib'):
|
||||
+ raise Exception('Did not find fidlib library, exiting!')
|
||||
+ build.env.Append(CPPPATH=[SCons.ARGUMENTS.get('prefix') + '/include/fidlib'])
|
||||
|
||||
|
||||
class ReplayGain(Dependence):
|
||||
@@ -378,42 +363,17 @@ class ReplayGain(Dependence):
|
||||
|
||||
|
||||
class SoundTouch(Dependence):
|
||||
- SOUNDTOUCH_PATH = 'soundtouch-1.8.0'
|
||||
|
||||
def sources(self, build):
|
||||
- return ['engine/enginebufferscalest.cpp',
|
||||
- '#lib/%s/AAFilter.cpp' % self.SOUNDTOUCH_PATH,
|
||||
- '#lib/%s/BPMDetect.cpp' % self.SOUNDTOUCH_PATH,
|
||||
- '#lib/%s/FIFOSampleBuffer.cpp' % self.SOUNDTOUCH_PATH,
|
||||
- '#lib/%s/FIRFilter.cpp' % self.SOUNDTOUCH_PATH,
|
||||
- '#lib/%s/InterpolateCubic.cpp' % self.SOUNDTOUCH_PATH,
|
||||
- '#lib/%s/InterpolateLinear.cpp' % self.SOUNDTOUCH_PATH,
|
||||
- '#lib/%s/InterpolateShannon.cpp' % self.SOUNDTOUCH_PATH,
|
||||
- '#lib/%s/PeakFinder.cpp' % self.SOUNDTOUCH_PATH,
|
||||
- '#lib/%s/RateTransposer.cpp' % self.SOUNDTOUCH_PATH,
|
||||
- '#lib/%s/SoundTouch.cpp' % self.SOUNDTOUCH_PATH,
|
||||
- '#lib/%s/TDStretch.cpp' % self.SOUNDTOUCH_PATH,
|
||||
- # SoundTouch CPU optimizations are only for x86
|
||||
- # architectures. SoundTouch automatically ignores these files
|
||||
- # when it is not being built for an architecture that supports
|
||||
- # them.
|
||||
- '#lib/%s/cpu_detect_x86.cpp' % self.SOUNDTOUCH_PATH,
|
||||
- '#lib/%s/mmx_optimized.cpp' % self.SOUNDTOUCH_PATH,
|
||||
- '#lib/%s/sse_optimized.cpp' % self.SOUNDTOUCH_PATH]
|
||||
+ return ['engine/enginebufferscalest.cpp']
|
||||
|
||||
def configure(self, build, conf, env=None):
|
||||
if env is None:
|
||||
env = build.env
|
||||
- env.Append(CPPPATH=['#lib/%s' % self.SOUNDTOUCH_PATH])
|
||||
-
|
||||
- # Prevents circular import.
|
||||
- from features import Optimize
|
||||
-
|
||||
- # If we do not want optimizations then disable them.
|
||||
- optimize = (build.flags['optimize'] if 'optimize' in build.flags
|
||||
- else Optimize.get_optimization_level())
|
||||
- if optimize == Optimize.LEVEL_OFF:
|
||||
- env.Append(CPPDEFINES='SOUNDTOUCH_DISABLE_X86_OPTIMIZATIONS')
|
||||
+ if not conf.CheckLib(['SoundTouch','libSoundTouch']):
|
||||
+ raise Exception('Did not find SoundTouch library, exiting!')
|
||||
+ build.env.Append(CPPPATH=[SCons.ARGUMENTS.get('prefix') + '/include/soundtouch'])
|
||||
+ build.env.Append(LIBS='SoundTouch')
|
||||
|
||||
|
||||
class RubberBand(Dependence):
|
||||
diff --git a/build/features.py b/build/features.py
|
||||
index 2ef1ecd..c100f3b 100644
|
||||
--- a/build/features.py
|
||||
+++ b/build/features.py
|
||||
@@ -45,7 +45,6 @@ class HSS1394(Feature):
|
||||
|
||||
|
||||
class HID(Feature):
|
||||
- HIDAPI_INTERNAL_PATH = '#lib/hidapi-0.8.0-pre'
|
||||
|
||||
def description(self):
|
||||
return "HID controller support"
|
||||
@@ -62,10 +61,6 @@ class HID(Feature):
|
||||
def configure(self, build, conf):
|
||||
if not self.enabled(build):
|
||||
return
|
||||
- # TODO(XXX) allow external hidapi install, but for now we just use our
|
||||
- # internal one.
|
||||
- build.env.Append(
|
||||
- CPPPATH=[os.path.join(self.HIDAPI_INTERNAL_PATH, 'hidapi')])
|
||||
|
||||
if build.platform_is_linux:
|
||||
build.env.ParseConfig(
|
||||
@@ -89,23 +84,18 @@ class HID(Feature):
|
||||
build.env.AppendUnique(FRAMEWORKS=['IOKit', 'CoreFoundation'])
|
||||
|
||||
build.env.Append(CPPDEFINES='__HID__')
|
||||
+
|
||||
+ if not conf.CheckLib('hidapi-libusb'):
|
||||
+ raise Exception('Did not find HID API library, exiting!')
|
||||
+ build.env.Append(CPPPATH=[SCons.ARGUMENTS.get('prefix') + '/include/hidapi'])
|
||||
+ build.env.Append(LIBS='hidapi-libusb')
|
||||
+
|
||||
|
||||
def sources(self, build):
|
||||
sources = ['controllers/hid/hidcontroller.cpp',
|
||||
'controllers/hid/hidenumerator.cpp',
|
||||
'controllers/hid/hidcontrollerpresetfilehandler.cpp']
|
||||
|
||||
- if build.platform_is_windows:
|
||||
- # Requires setupapi.lib which is included by the above check for
|
||||
- # setupapi.
|
||||
- sources.append(
|
||||
- os.path.join(self.HIDAPI_INTERNAL_PATH, "windows/hid.c"))
|
||||
- elif build.platform_is_linux:
|
||||
- sources.append(
|
||||
- os.path.join(self.HIDAPI_INTERNAL_PATH, 'linux/hid-libusb.c'))
|
||||
- elif build.platform_is_osx:
|
||||
- sources.append(
|
||||
- os.path.join(self.HIDAPI_INTERNAL_PATH, 'mac/hid.c'))
|
||||
return sources
|
||||
|
||||
|
||||
@@ -717,24 +707,15 @@ class TestSuite(Feature):
|
||||
test_env.Append(CCFLAGS='-pthread')
|
||||
test_env.Append(LINKFLAGS='-pthread')
|
||||
|
||||
- test_env.Append(CPPPATH="#lib/gtest-1.7.0/include")
|
||||
- gtest_dir = test_env.Dir("#lib/gtest-1.7.0")
|
||||
- # gtest_dir.addRepository(build.env.Dir('#lib/gtest-1.5.0'))
|
||||
- # build.env['EXE_OUTPUT'] = '#/lib/gtest-1.3.0/bin' # example,
|
||||
- # optional
|
||||
- test_env['LIB_OUTPUT'] = '#/lib/gtest-1.7.0/lib'
|
||||
-
|
||||
- env = test_env
|
||||
- SCons.Export('env')
|
||||
- env.SConscript(env.File('SConscript', gtest_dir))
|
||||
-
|
||||
- # build and configure gmock
|
||||
- test_env.Append(CPPPATH="#lib/gmock-1.7.0/include")
|
||||
- gmock_dir = test_env.Dir("#lib/gmock-1.7.0")
|
||||
- # gmock_dir.addRepository(build.env.Dir('#lib/gmock-1.5.0'))
|
||||
- test_env['LIB_OUTPUT'] = '#/lib/gmock-1.7.0/lib'
|
||||
-
|
||||
- env.SConscript(env.File('SConscript', gmock_dir))
|
||||
+ if not conf.CheckLib('gtest'):
|
||||
+ raise Exception('Did not find gtest library, exiting!')
|
||||
+ test_env.Append(CPPPATH=[SCons.ARGUMENTS.get('prefix') + '/include/gtest'])
|
||||
+ test_env.Append(LIBS='gtest')
|
||||
+
|
||||
+ if not conf.CheckLib('gmock'):
|
||||
+ raise Exception('Did not find gmock library, exiting!')
|
||||
+ test_env.Append(CPPPATH=[SCons.ARGUMENTS.get('prefix') + '/include/gmock'])
|
||||
+ test_env.Append(LIBS='gmock')
|
||||
|
||||
return []
|
||||
|
||||
Reference in New Issue
Block a user