View | Details | Raw Unified | Return to bug 111492
Collapse All | Expand All

(-)/home/trasz/cheesetracker/Makefile (-1 / +6 lines)
Lines 21-33 Link Here
21
		jack.0:${PORTSDIR}/audio/jack
21
		jack.0:${PORTSDIR}/audio/jack
22
22
23
USE_QT_VER=	3
23
USE_QT_VER=	3
24
MAKE_ENV=	QTDIR="${QT_PREFIX}"
24
MAKE_ENV+=	QTDIR="${QT_PREFIX}"
25
USE_SCONS=	yes
25
USE_SCONS=	yes
26
SCONS_ENV+=	CXX="${CXX}"
26
27
27
.include <bsd.port.pre.mk>
28
.include <bsd.port.pre.mk>
28
29
29
.if ${ARCH} == "alpha"
30
.if ${ARCH} == "alpha"
30
BROKEN=		Does not compile on alpha
31
BROKEN=		Does not compile on alpha
32
.endif
33
34
.if ${OSVERSION} < 600020
35
BROKEN=		Requires MSG_NOSIGNAL
31
.endif
36
.endif
32
37
33
post-patch:
38
post-patch:
(-)/home/trasz/cheesetracker/files/patch-SConstruct (-2 / +12 lines)
Lines 1-5 Link Here
1
--- SConstruct.orig	Tue Mar 27 22:35:53 2007
1
--- SConstruct.orig	Fri Apr 23 07:51:57 2004
2
+++ SConstruct	Tue Mar 27 22:36:54 2007
2
+++ SConstruct	Mon Apr  9 19:20:43 2007
3
@@ -53,8 +53,8 @@
4
 env.make_so = None
5
 env.detect = detect.Detect()
6
 
7
+env['CXX'] = os.environ['CXX']
8
 if os.environ.has_key('DISTCC_HOSTS'):
9
-	env['CXX'] = os.environ['CXX']
10
 	env['ENV']['DISTCC_HOSTS'] = os.environ['DISTCC_HOSTS']
11
 	env['ENV']['HOME'] = os.environ['HOME']
12
 
3
@@ -87,7 +87,7 @@
13
@@ -87,7 +87,7 @@
4
 env.optimize_resampler_hack=0
14
 env.optimize_resampler_hack=0
5
 
15
 
(-)/home/trasz/cheesetracker/files/patch-cheesetracker-trackercore-saver.cpp (+14 lines)
Line 0 Link Here
1
--- cheesetracker/trackercore/saver.cpp.orig	Thu Apr 12 00:12:30 2007
2
+++ cheesetracker/trackercore/saver.cpp	Thu Apr 12 00:13:52 2007
3
@@ -35,11 +35,8 @@
4
 
5
 #include "saver.h"
6
 
7
-namespace Audio {
8
-
9
 
10
 Saver::Saver(){
11
 }
12
 Saver::~Saver(){
13
 }
14
-}; // end of namespace declaration
(-)/home/trasz/cheesetracker/files/patch-common-components-audio-resampler_manager.h (+11 lines)
Line 0 Link Here
1
--- common/components/audio/resampler_manager.h.orig	Thu Apr 12 00:03:58 2007
2
+++ common/components/audio/resampler_manager.h	Thu Apr 12 00:04:14 2007
3
@@ -34,7 +34,7 @@
4
 
5
 public:
6
 
7
-	static Resampler_Manager * Resampler_Manager::get_resampler_manager();
8
+	static Resampler_Manager * get_resampler_manager();
9
 	int get_resampler_count();
10
 	Resampler * get_resampler(int p_index);
11
 
(-)/home/trasz/cheesetracker/files/patch-common-components-data-property_bridges.h (+11 lines)
Line 0 Link Here
1
--- common/components/data/property_bridges.h.orig	Wed Apr 11 23:57:19 2007
2
+++ common/components/data/property_bridges.h	Thu Apr 12 00:02:25 2007
3
@@ -41,7 +41,7 @@
4
   */
5
 
6
   #define BRIDGE_COPY_VALUE(T) \
7
-	virtual bool T::copy_value(const Property_Bridge& rvalue) {\
8
+	virtual bool copy_value(const Property_Bridge& rvalue) {\
9
 		T* rcast = dynamic_cast<T*>((T*)&rvalue);\
10
 		if (rcast) {\
11
 			set(rcast->get());\
(-)/home/trasz/cheesetracker/files/patch-common-drivers-posix-sound_driver_jack.h (+11 lines)
Line 0 Link Here
1
--- common/drivers/posix/sound_driver_jack.h.orig	Thu Apr 12 00:09:04 2007
2
+++ common/drivers/posix/sound_driver_jack.h	Thu Apr 12 00:09:21 2007
3
@@ -72,7 +72,7 @@
4
 
5
 	int jack_callback_nframes;
6
 
7
-	Sound_Driver::Status Sound_Driver_JACK::process();
8
+	Sound_Driver::Status process();
9
 
10
         static int process_jack_callback(jack_nframes_t nframes,void *arg);
11
         static int jack_set_mixfreq(jack_nframes_t nframes,void *arg);

Return to bug 111492