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

(-)devel/clanlib/Makefile (-3 / +5 lines)
Lines 6-12 Link Here
6
#
6
#
7
7
8
PORTNAME=	clanlib
8
PORTNAME=	clanlib
9
PORTVERSION=	0.7.4.1
9
PORTVERSION=	0.7.5.2
10
CATEGORIES=	devel
10
CATEGORIES=	devel
11
MASTER_SITES=	http://clanlib.org/~sphair/download/
11
MASTER_SITES=	http://clanlib.org/~sphair/download/
12
DISTNAME=	ClanLib-${PORTVERSION:R}-${PORTVERSION:E}
12
DISTNAME=	ClanLib-${PORTVERSION:R}-${PORTVERSION:E}
Lines 86-93 Link Here
86
	@${ECHO_MSG} ""
86
	@${ECHO_MSG} ""
87
87
88
post-patch:
88
post-patch:
89
	@${FIND} ${WRKSRC} -name "Makefile.in" | ${XARGS} ${REINPLACE_CMD} -e \
89
	@${GREP} -lR "SDL/SDL" ${WRKSRC} | ${XARGS} ${REINPLACE_CMD} -e \
90
		's|-lpthread||g'
90
		's|SDL/SDL|SDL|g'
91
	@${REINPLACE_CMD} -e 's|-lpthread||g' \
92
		${WRKSRC}/Sources/Core/Makefile.in
91
	@${REINPLACE_CMD} -e 's|@perl_exec@|${PERL}|g' \
93
	@${REINPLACE_CMD} -e 's|@perl_exec@|${PERL}|g' \
92
		${WRKSRC}/Documentation/Utilities/webbuilder.pl.in
94
		${WRKSRC}/Documentation/Utilities/webbuilder.pl.in
93
95
(-)devel/clanlib/distinfo (-1 / +1 lines)
Line 1 Link Here
1
MD5 (ClanLib-0.7.4-1.tar.bz2) = cf7aabf73590b4fedfa53907029de588
1
MD5 (ClanLib-0.7.5-2.tar.bz2) = 40f56ddae5e136d126e6066dc4b6ef1a
(-)devel/clanlib/files/patch-inputbox.cpp (+10 lines)
Line 0 Link Here
1
--- Sources/GUI/inputbox.cpp.orig	Tue Oct 21 03:51:39 2003
2
+++ Sources/GUI/inputbox.cpp	Tue Oct 21 04:05:08 2003
3
@@ -21,6 +21,7 @@
4
 */
5
 
6
 #include "precomp.h"
7
+#include <cstdio>
8
 #include "API/Core/XML/dom_element.h"
9
 #include "API/GUI/inputbox.h"
10
 #include "API/GUI/stylemanager.h"
(-)devel/clanlib/files/patch-soundprovider_recorder_oss.cpp (+16 lines)
Line 0 Link Here
1
--- Sources/Sound/SoundProviders/Unix/soundprovider_recorder_oss.cpp.orig	Tue Sep 23 07:15:13 2003
2
+++ Sources/Sound/SoundProviders/Unix/soundprovider_recorder_oss.cpp	Tue Oct 21 02:52:21 2003
3
@@ -34,6 +34,13 @@
4
 #include <sys/select.h>
5
 #endif
6
 
7
+#if !defined(AFMT_S16_NE)
8
+#if defined(BYTE_ORDER) && (BYTE_ORDER == BIG_ENDIAN)
9
+#define AFMT_S16_NE AFMT_S16_BE
10
+#else
11
+#define AFMT_S16_NE AFMT_S16_LE
12
+#endif
13
+#endif
14
 
15
 /////////////////////////////////////////////////////////////////////////////
16
 // CL_SoundProvider_Recorder_OSS_Session construction:
(-)devel/clanlib/files/patch-thread_pthread.cpp (+9 lines)
Line 0 Link Here
1
--- Sources/Core/System/Unix/thread_pthread.cpp.orig	Thu Oct  9 02:43:49 2003
2
+++ Sources/Core/System/Unix/thread_pthread.cpp	Tue Oct 21 01:22:12 2003
3
@@ -158,5 +158,5 @@
4
 
5
 int CL_Thread::get_current_id()
6
 {
7
-	return pthread_self();
8
+	return (int)pthread_self();
9
 }
(-)devel/clanlib/pkg-plist (-2 / +3 lines)
Lines 91-96 Link Here
91
include/ClanLib-0.7/ClanLib/Display/display_window.h
91
include/ClanLib-0.7/ClanLib/Display/display_window.h
92
include/ClanLib-0.7/ClanLib/Display/display_window_description.h
92
include/ClanLib-0.7/ClanLib/Display/display_window_description.h
93
include/ClanLib-0.7/ClanLib/Display/font.h
93
include/ClanLib-0.7/ClanLib/Display/font.h
94
include/ClanLib-0.7/ClanLib/Display/frameratecounter.h
94
include/ClanLib-0.7/ClanLib/Display/glyph_buffer.h
95
include/ClanLib-0.7/ClanLib/Display/glyph_buffer.h
95
include/ClanLib-0.7/ClanLib/Display/gradient.h
96
include/ClanLib-0.7/ClanLib/Display/gradient.h
96
include/ClanLib-0.7/ClanLib/Display/graphic_context.h
97
include/ClanLib-0.7/ClanLib/Display/graphic_context.h
Lines 123-135 Link Here
123
include/ClanLib-0.7/ClanLib/GUI/component.h
124
include/ClanLib-0.7/ClanLib/GUI/component.h
124
include/ClanLib-0.7/ClanLib/GUI/component_manager.h
125
include/ClanLib-0.7/ClanLib/GUI/component_manager.h
125
include/ClanLib-0.7/ClanLib/GUI/component_move_handler.h
126
include/ClanLib-0.7/ClanLib/GUI/component_move_handler.h
126
include/ClanLib-0.7/ClanLib/GUI/component_options.h
127
include/ClanLib-0.7/ClanLib/GUI/component_resize_handler.h
127
include/ClanLib-0.7/ClanLib/GUI/component_resize_handler.h
128
include/ClanLib-0.7/ClanLib/GUI/component_style.h
128
include/ClanLib-0.7/ClanLib/GUI/component_style.h
129
include/ClanLib-0.7/ClanLib/GUI/component_type.h
129
include/ClanLib-0.7/ClanLib/GUI/component_type.h
130
include/ClanLib-0.7/ClanLib/GUI/filedialog.h
130
include/ClanLib-0.7/ClanLib/GUI/filedialog.h
131
include/ClanLib-0.7/ClanLib/GUI/frame.h
131
include/ClanLib-0.7/ClanLib/GUI/frame.h
132
include/ClanLib-0.7/ClanLib/GUI/gui_file_parser.h
133
include/ClanLib-0.7/ClanLib/GUI/gui_manager.h
132
include/ClanLib-0.7/ClanLib/GUI/gui_manager.h
134
include/ClanLib-0.7/ClanLib/GUI/image.h
133
include/ClanLib-0.7/ClanLib/GUI/image.h
135
include/ClanLib-0.7/ClanLib/GUI/inputbox.h
134
include/ClanLib-0.7/ClanLib/GUI/inputbox.h
Lines 180-185 Link Here
180
include/ClanLib-0.7/ClanLib/Network/Browse/browse_client.h
179
include/ClanLib-0.7/ClanLib/Network/Browse/browse_client.h
181
include/ClanLib-0.7/ClanLib/Network/Browse/browse_master.h
180
include/ClanLib-0.7/ClanLib/Network/Browse/browse_master.h
182
include/ClanLib-0.7/ClanLib/Network/Browse/browse_server.h
181
include/ClanLib-0.7/ClanLib/Network/Browse/browse_server.h
182
include/ClanLib-0.7/ClanLib/Network/IRC/dcc_download.h
183
include/ClanLib-0.7/ClanLib/Network/IRC/irc_connection.h
183
include/ClanLib-0.7/ClanLib/Network/IRC/irc_connection.h
184
include/ClanLib-0.7/ClanLib/Network/IRC/irc_numerics.h
184
include/ClanLib-0.7/ClanLib/Network/IRC/irc_numerics.h
185
include/ClanLib-0.7/ClanLib/Network/NetObjects/netobject_client.h
185
include/ClanLib-0.7/ClanLib/Network/NetObjects/netobject_client.h
Lines 223-228 Link Here
223
include/ClanLib-0.7/ClanLib/Sound/SoundFilters/inverse_echofilter.h
223
include/ClanLib-0.7/ClanLib/Sound/SoundFilters/inverse_echofilter.h
224
include/ClanLib-0.7/ClanLib/Sound/SoundProviders/soundprovider_factory.h
224
include/ClanLib-0.7/ClanLib/Sound/SoundProviders/soundprovider_factory.h
225
include/ClanLib-0.7/ClanLib/Sound/SoundProviders/soundprovider_raw.h
225
include/ClanLib-0.7/ClanLib/Sound/SoundProviders/soundprovider_raw.h
226
include/ClanLib-0.7/ClanLib/Sound/SoundProviders/soundprovider_recorder.h
226
include/ClanLib-0.7/ClanLib/Sound/SoundProviders/soundprovider_type.h
227
include/ClanLib-0.7/ClanLib/Sound/SoundProviders/soundprovider_type.h
227
include/ClanLib-0.7/ClanLib/Sound/SoundProviders/soundprovider_type_register.h
228
include/ClanLib-0.7/ClanLib/Sound/SoundProviders/soundprovider_type_register.h
228
include/ClanLib-0.7/ClanLib/Sound/SoundProviders/soundprovider_wave.h
229
include/ClanLib-0.7/ClanLib/Sound/SoundProviders/soundprovider_wave.h

Return to bug 58380