diff -urN --exclude CVS /ports/devel/clanlib/Makefile clanlib/Makefile --- /ports/devel/clanlib/Makefile 2007-07-28 12:27:19.000000000 +0000 +++ clanlib/Makefile 2007-08-02 13:30:59.000000000 +0000 @@ -2,58 +2,102 @@ # Date created: 10 May 2000 # Whom: Maxim Sobolev # +# $Carpetsmoker: ports/devel/clanlib/Makefile,v 1.2 2007/07/22 00:53:05 carpetsmoker Exp $ # $FreeBSD: ports/devel/clanlib/Makefile,v 1.20 2007/07/28 12:27:19 miwi Exp $ # PORTNAME= clanlib -PORTVERSION= 0.6.5.1 -PORTREVISION= 3 -PORTEPOCH= 1 +PORTVERSION= 0.8.0 +PORTEPOCH= 2 CATEGORIES= devel -MASTER_SITES= http://clanlib.org/download/legacy/ \ - http://freebsd.nsu.ru/distfiles/ -DISTNAME= ClanLib-${PORTVERSION:R}-${PORTVERSION:E} +MASTER_SITES= http://www.clanlib.org/download/releases-0.8/ \ + http://www.carpetsmoker.net/distfiles/ \ + http://www.xs4all.nl/~tournoij/distfiles/ +DISTNAME= ClanLib-${PORTVERSION} +EXTRACT_SUFX= .tgz -MAINTAINER= ports@FreeBSD.org +MAINTAINER= carpetsmoker@xs4all.nl COMMENT= Cross-platform game SDK -LIB_DEPENDS= Hermes:${PORTSDIR}/graphics/Hermes \ - jpeg:${PORTSDIR}/graphics/jpeg \ - png:${PORTSDIR}/graphics/png \ - freetype:${PORTSDIR}/print/freetype2 \ - mikmod:${PORTSDIR}/audio/libmikmod \ - vorbis:${PORTSDIR}/audio/libvorbis +LIB_DEPENDS= jpeg.9:${PORTSDIR}/graphics/jpeg \ + png.5:${PORTSDIR}/graphics/png -# conflicts with devel/clanlib-devel -CONFLICTS= clanlib-0.7.* +WRKSRC= ${WRKDIR}/ClanLib-${PORTVERSION} +CPPFLAGS+= -I${LOCALBASE}/include ${PTHREAD_CFLAGS} +LDFLAGS+= -L${LOCALBASE}/lib ${PTHREAD_LIBS} +USE_AUTOTOOLS= libtool:15 +GNU_CONFIGURE= yes +CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}" +CONFIGURE_ARGS= --disable-clanJavaScript --disable-docs +USE_GMAKE= yes +USE_XLIB= yes +USE_GNOME= gnomehack gnometarget pkgconfig +USE_LDCONFIG= yes -WRKSRC= ${WRKDIR}/ClanLib-${PORTVERSION:R} +.include -USE_XLIB= yes +# Is this still true for 0.8? Removed until we've got some +# confirmation on this. +#.if ${ARCH} != "i386" && ${ARCH} != "amd64" +#BROKEN= "Does not compile on !i386 and !amd64" +#.endif + +.if ${OSVERSION} < 500032 +BUILD_DEPENDS+= ${LOCALBASE}/lib/libstlport_gcc.so:${PORTSDIR}/devel/stlport +RUN_DEPENDS+= ${LOCALBASE}/lib/libstlport_gcc.so:${PORTSDIR}/devel/stlport +CPPFLAGS+= -I${LOCALBASE}/include/stlport +LDFLAGS+= -lstlport_gcc +CFLAGS+= -O0 +.endif + +.if defined(WITHOUT_SDL) +CONFIGURE_ARGS+=--disable-clanSDL +PLIST_SUB+= SDL="@comment " +.else +USE_SDL= gfx +CONFIGURE_ARGS+=--disable-sdltest +PLIST_SUB+= SDL="" +.endif + +.if defined(WITHOUT_OPENGL) +CONFIGURE_ARGS+=--disable-clanGL +PLIST_SUB+= OPENGL="@comment " +.else USE_GL= yes -GNU_CONFIGURE= yes -USE_GMAKE= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include ${PTHREAD_CFLAGS}" \ - LDFLAGS="-L${LOCALBASE}/lib" -CONFIGURE_ARGS= --disable-directfb --disable-lua -INSTALLS_SHLIB= yes - -.if !defined(NOPORTDOCS) -USE_PERL5_BUILD= yes -ALL_TARGET= all docs -INSTALL_TARGET= install docs_install +PLIST_SUB+= OPENGL="" +.endif + +.if defined(WITHOUT_MIKMOD) +CONFIGURE_ARGS+=--disable-clanMikMod +PLIST_SUB+= LIBMIKMOD="@comment " +.else +LIB_DEPENDS+= mikmod:${PORTSDIR}/audio/libmikmod +PLIST_SUB+= LIBMIKMOD="" .endif +.if defined(WITHOUT_VORBIS) +CONFIGURE_ARGS+=--disable-clanVorbis +PLIST_SUB+= LIBVORBIS="@comment " +.else +LIB_DEPENDS+= vorbis:${PORTSDIR}/audio/libvorbis +PLIST_SUB+= LIBVORBIS="" +.endif + +pre-everything:: + @${ECHO_MSG} "ClanLib has the following tunables options:" + @${ECHO_MSG} "" + @${ECHO_MSG} " WITHOUT_SDL=yes Turns off SDL support" + @${ECHO_MSG} " WITHOUT_OPENGL=yes Turns off OpenGL support" + @${ECHO_MSG} " WITHOUT_MIKMOD=yes Turns off libmikmod support" + @${ECHO_MSG} " WITHOUT_VORBIS=yes Turns off libvorbis support" + @${ECHO_MSG} "" + post-patch: - @${REINPLACE_CMD} -e 's|malloc.h|stdlib.h|' \ - ${WRKSRC}/Sources/TTF/font_ttf.cpp - @${REINPLACE_CMD} -e 's|%%PTHREAD_CFLAGS%%|${PTHREAD_CFLAGS}|; s|%%PTHREAD_LIBS%%|${PTHREAD_LIBS}|' \ - ${WRKSRC}/Setup/Unix/clanlib-config.in - @${REINPLACE_CMD} -e 's|%%PERL%%|${PERL}|' \ - ${WRKSRC}/Documentation/FAQ.theme \ - ${WRKSRC}/Documentation/Reference/pce2 \ - ${WRKSRC}/Documentation/Utilities/transform.sh - @${REINPLACE_CMD} -e 's|@perl_exec@|${PERL}|' \ + @${GREP} -lR "SDL/SDL" ${WRKSRC} | ${XARGS} ${REINPLACE_CMD} -e \ + 's|SDL/SDL|SDL|g' + @${REINPLACE_CMD} -e 's|(CLvoid)|()|' \ + ${WRKSRC}/Sources/API/GL/opengl_wrap.h + @${REINPLACE_CMD} -e 's|@perl_exec@|${PERL}|g' \ ${WRKSRC}/Documentation/Utilities/webbuilder.pl.in -.include +.include diff -urN --exclude CVS /ports/devel/clanlib/distinfo clanlib/distinfo --- /ports/devel/clanlib/distinfo 2006-01-22 08:27:57.000000000 +0000 +++ clanlib/distinfo 2007-08-01 14:46:11.000000000 +0000 @@ -1,3 +1,3 @@ -MD5 (ClanLib-0.6.5-1.tar.gz) = 7115921953ef6fa45102c28622493650 -SHA256 (ClanLib-0.6.5-1.tar.gz) = 62e16913423945475f3541fc97deaeb9b0f735b6c93c88725a6a771d5a882db5 -SIZE (ClanLib-0.6.5-1.tar.gz) = 2183097 +MD5 (ClanLib-0.8.0.tgz) = 3e183a801a31f646b012db2d82f97ff3 +SHA256 (ClanLib-0.8.0.tgz) = def9bdbb20ea740e005134a77def721e969e230740e67937cc3ac201033059e6 +SIZE (ClanLib-0.8.0.tgz) = 7527581 diff -urN --exclude CVS /ports/devel/clanlib/files/patch-Documentation::FAQ.theme clanlib/files/patch-Documentation::FAQ.theme --- /ports/devel/clanlib/files/patch-Documentation::FAQ.theme 2004-01-24 14:30:01.000000000 +0000 +++ clanlib/files/patch-Documentation::FAQ.theme 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ ---- Documentation/FAQ.theme.orig Thu Jan 22 15:35:29 2004 -+++ Documentation/FAQ.theme Thu Jan 22 15:35:39 2004 -@@ -1,3 +1,5 @@ -+#! %%PERL%% -+ - # - # ClanSoft Documentation: FAQ theme, - # Copyright (c) 1999 by Magnus Norddahl / ClanSoft & Kenneth Gangstoe. diff -urN --exclude CVS /ports/devel/clanlib/files/patch-Documentation::Makefile.in clanlib/files/patch-Documentation::Makefile.in --- /ports/devel/clanlib/files/patch-Documentation::Makefile.in 2004-01-24 14:30:01.000000000 +0000 +++ clanlib/files/patch-Documentation::Makefile.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,28 +0,0 @@ ---- Documentation/Makefile.in.orig Thu Jan 22 15:34:28 2004 -+++ Documentation/Makefile.in Thu Jan 22 15:51:08 2004 -@@ -1,6 +1,4 @@ --prefix=@prefix@/share/ -- --HTML_PREFIX = $(prefix)/doc/ClanLib-docs-@version_minor@/Documentation -+HTML_PREFIX = @prefix@/share/doc/clanlib - - all: faq - Utilities/webbuilder.pl documentation.theme index.xml -@@ -10,14 +8,15 @@ - # cd Tutorial; make - - faq: -- perl FAQ.theme -+ chmod +x FAQ.theme -+ ./FAQ.theme - - install: - @install -d $(HTML_PREFIX) - @install -d $(HTML_PREFIX)/Images - @install -m 0644 Images/*.gif $(HTML_PREFIX)/Images - @install -m 0644 *.html $(HTML_PREFIX) -- -+ - # cd Reference; make man_install - cd Reference; make html_install - cd Overview; make install diff -urN --exclude CVS /ports/devel/clanlib/files/patch-Documentation::Overview::Makefile.in clanlib/files/patch-Documentation::Overview::Makefile.in --- /ports/devel/clanlib/files/patch-Documentation::Overview::Makefile.in 2004-01-24 14:30:01.000000000 +0000 +++ clanlib/files/patch-Documentation::Overview::Makefile.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ ---- Documentation/Overview/Makefile.in.orig Thu Jan 22 14:53:10 2004 -+++ Documentation/Overview/Makefile.in Thu Jan 22 14:53:33 2004 -@@ -1,6 +1,4 @@ --prefix=@prefix@/share -- --HTML_PREFIX = $(prefix)/doc/ClanLib-docs-@version_minor@/Documentation -+HTML_PREFIX = @prefix@/share/doc/clanlib - - all: index.html - -@@ -26,6 +24,6 @@ - @install -m 0644 Images/*.png $(HTML_PREFIX)/Overview/Images - distclean: clean - rm Makefile -- -+ - clean: - rm -f *.html diff -urN --exclude CVS /ports/devel/clanlib/files/patch-Documentation::Reference::Makefile.in clanlib/files/patch-Documentation::Reference::Makefile.in --- /ports/devel/clanlib/files/patch-Documentation::Reference::Makefile.in 2004-01-24 14:30:01.000000000 +0000 +++ clanlib/files/patch-Documentation::Reference::Makefile.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,27 +0,0 @@ ---- Documentation/Reference/Makefile.in.orig Thu Jan 22 14:52:33 2004 -+++ Documentation/Reference/Makefile.in Thu Jan 22 15:11:07 2004 -@@ -1,13 +1,11 @@ -- --prefix=@prefix@/share --HTML_PREFIX = $(prefix)/doc/ClanLib-docs-@version_minor@/Documentation -+HTML_PREFIX = @prefix@/share/doc/clanlib - - all: html - - html: - @echo 'Type "make html_install" to install the html reference pages.' - if [ ! -d html ]; then mkdir html; fi -- chmod +x ./pce2 -+ chmod +xg-s ./pce2 - find ../../Sources/API -name '*.h' | xargs ./pce2 - - html_install: -@@ -20,7 +18,7 @@ - - distclean: clean - rm -f Makefile -- -+ - clean: - rm -rf html - diff -urN --exclude CVS /ports/devel/clanlib/files/patch-Documentation::Reference::pce2 clanlib/files/patch-Documentation::Reference::pce2 --- /ports/devel/clanlib/files/patch-Documentation::Reference::pce2 2004-01-24 14:30:01.000000000 +0000 +++ clanlib/files/patch-Documentation::Reference::pce2 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ ---- Documentation/Reference/pce2.orig Thu Jan 22 15:38:17 2004 -+++ Documentation/Reference/pce2 Thu Jan 22 15:38:24 2004 -@@ -1,4 +1,4 @@ --#!/usr/bin/perl -+#! %%PERL%% - - # PCE2 - Perl C++ Extractor version 2 - # Copyright 2000-1999, Karl Nelson diff -urN --exclude CVS /ports/devel/clanlib/files/patch-Documentation::Utilities::transform.sh clanlib/files/patch-Documentation::Utilities::transform.sh --- /ports/devel/clanlib/files/patch-Documentation::Utilities::transform.sh 2004-01-24 14:30:01.000000000 +0000 +++ clanlib/files/patch-Documentation::Utilities::transform.sh 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ ---- Documentation/Utilities/transform.sh.orig Thu Jan 22 15:42:03 2004 -+++ Documentation/Utilities/transform.sh Thu Jan 22 15:42:08 2004 -@@ -3,7 +3,7 @@ - # user-annotation capability. - - DIRS=$@ --EFED="perl Utilities/efed.pl" -+EFED="%%PERL%% Utilities/efed.pl" - - for d in $DIRS; do - if test -d $d; then diff -urN --exclude CVS /ports/devel/clanlib/files/patch-Setup::Unix::Makefile.display.in clanlib/files/patch-Setup::Unix::Makefile.display.in --- /ports/devel/clanlib/files/patch-Setup::Unix::Makefile.display.in 2004-01-24 14:30:01.000000000 +0000 +++ clanlib/files/patch-Setup::Unix::Makefile.display.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ ---- Setup/Unix/Makefile.display.in.orig Thu Jan 22 08:27:39 2004 -+++ Setup/Unix/Makefile.display.in Thu Jan 22 08:27:53 2004 -@@ -114,7 +114,7 @@ - - # $(OBJF_DISP_X11) $(OBJF_DISP_FBDEV) - --LINK_DISP = -L Libs -lclanCore @x_libraries@ -lHermes @directfb_libs@ -+LINK_DISP = @LDFLAGS@ -L Libs -lclanCore @x_libraries@ -lHermes @directfb_libs@ - - Libs/libclanDisplay.so: Libs/libclanCore.so $(OBJF_DISP_ALL) - @echo "Building Libs/libclanDisplay.so" diff -urN --exclude CVS /ports/devel/clanlib/files/patch-Setup::Unix::Makefile.jpeg.in clanlib/files/patch-Setup::Unix::Makefile.jpeg.in --- /ports/devel/clanlib/files/patch-Setup::Unix::Makefile.jpeg.in 2004-01-24 14:30:01.000000000 +0000 +++ clanlib/files/patch-Setup::Unix::Makefile.jpeg.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ ---- Setup/Unix/Makefile.jpeg.in.orig Thu Jan 22 08:28:53 2004 -+++ Setup/Unix/Makefile.jpeg.in Thu Jan 22 08:29:02 2004 -@@ -21,7 +21,7 @@ - - Libs/libclanJPEG.so: Libs/libclanCore.so $(OBJF_LIB_JPEG) - @echo "Building Libs/libclanJPEG.so" -- @$(LINK_COMMAND) -Wl,-soname=libclanJPEG.so.$(D_VERSION_MAJOR) -o Libs/libclanJPEG.so.$(D_VERSION_MINOR) $(OBJF_LIB_JPEG) -L Libs -lclanCore -ljpeg -+ @$(LINK_COMMAND) -Wl,-soname=libclanJPEG.so.$(D_VERSION_MAJOR) -o Libs/libclanJPEG.so.$(D_VERSION_MINOR) $(OBJF_LIB_JPEG) @LDFLAGS@ -L Libs -lclanCore -ljpeg - @ln -s -f libclanJPEG.so.$(D_VERSION_MINOR) Libs/libclanJPEG.so.$(D_VERSION_MAJOR) - @ln -s -f libclanJPEG.so.$(D_VERSION_MAJOR) Libs/libclanJPEG.so - diff -urN --exclude CVS /ports/devel/clanlib/files/patch-Setup::Unix::Makefile.mikmod.in clanlib/files/patch-Setup::Unix::Makefile.mikmod.in --- /ports/devel/clanlib/files/patch-Setup::Unix::Makefile.mikmod.in 2004-01-24 14:30:01.000000000 +0000 +++ clanlib/files/patch-Setup::Unix::Makefile.mikmod.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ ---- Setup/Unix/Makefile.mikmod.in.orig Thu Jan 22 08:28:13 2004 -+++ Setup/Unix/Makefile.mikmod.in Thu Jan 22 08:28:30 2004 -@@ -22,7 +22,7 @@ - - Libs/libclanMikMod.so: Libs/libclanCore.so $(OBJF_LIB_MIKMOD) - @echo "Building Libs/libclanMikMod.so" -- @$(LINK_COMMAND) -Wl,-soname=libclanMikMod.so.$(D_VERSION_MAJOR) -o Libs/libclanMikMod.so.$(D_VERSION_MINOR) $(OBJF_LIB_MIKMOD) -L Libs -lclanCore -lmikmod -+ @$(LINK_COMMAND) -Wl,-soname=libclanMikMod.so.$(D_VERSION_MAJOR) -o Libs/libclanMikMod.so.$(D_VERSION_MINOR) $(OBJF_LIB_MIKMOD) @LDFLAGS@ -L Libs -lclanCore -lmikmod - @ln -s -f libclanMikMod.so.$(D_VERSION_MINOR) Libs/libclanMikMod.so.$(D_VERSION_MAJOR) - @ln -s -f libclanMikMod.so.$(D_VERSION_MAJOR) Libs/libclanMikMod.so - diff -urN --exclude CVS /ports/devel/clanlib/files/patch-Setup::Unix::Makefile.png.in clanlib/files/patch-Setup::Unix::Makefile.png.in --- /ports/devel/clanlib/files/patch-Setup::Unix::Makefile.png.in 2004-01-24 14:30:01.000000000 +0000 +++ clanlib/files/patch-Setup::Unix::Makefile.png.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ ---- Setup/Unix/Makefile.png.in.orig Thu Jan 22 08:28:36 2004 -+++ Setup/Unix/Makefile.png.in Thu Jan 22 08:28:47 2004 -@@ -20,7 +20,7 @@ - - Libs/libclanPNG.so: Libs/libclanCore.so $(OBJF_LIB_PNG) - @echo "Building Libs/libclanPNG.so" -- @$(LINK_COMMAND) -Wl,-soname=libclanPNG.so.$(D_VERSION_MAJOR) -o Libs/libclanPNG.so.$(D_VERSION_MINOR) $(OBJF_LIB_PNG) -L Libs -lclanCore -lpng -+ @$(LINK_COMMAND) -Wl,-soname=libclanPNG.so.$(D_VERSION_MAJOR) -o Libs/libclanPNG.so.$(D_VERSION_MINOR) $(OBJF_LIB_PNG) @LDFLAGS@ -L Libs -lclanCore -lpng - @ln -s -f libclanPNG.so.$(D_VERSION_MINOR) Libs/libclanPNG.so.$(D_VERSION_MAJOR) - @ln -s -f libclanPNG.so.$(D_VERSION_MAJOR) Libs/libclanPNG.so - diff -urN --exclude CVS /ports/devel/clanlib/files/patch-Setup::Unix::Makefile.ttf.in clanlib/files/patch-Setup::Unix::Makefile.ttf.in --- /ports/devel/clanlib/files/patch-Setup::Unix::Makefile.ttf.in 2004-01-24 14:30:01.000000000 +0000 +++ clanlib/files/patch-Setup::Unix::Makefile.ttf.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ ---- Setup/Unix/Makefile.ttf.in.orig Thu Jan 22 08:54:07 2004 -+++ Setup/Unix/Makefile.ttf.in Thu Jan 22 08:54:25 2004 -@@ -22,7 +22,7 @@ - - Libs/libclanTTF.so: Libs/libclanCore.so $(OBJF_LIB_TTF) - @echo "Building Libs/libclanTTF.so" -- @$(LINK_COMMAND) -Wl,-soname=libclanTTF.so.$(D_VERSION_MAJOR) -o Libs/libclanTTF.so.$(D_VERSION_MINOR) $(OBJF_LIB_TTF) -L Libs -lclanCore -lfreetype -+ @$(LINK_COMMAND) -Wl,-soname=libclanTTF.so.$(D_VERSION_MAJOR) -o Libs/libclanTTF.so.$(D_VERSION_MINOR) $(OBJF_LIB_TTF) @LDFLAGS@ -L Libs -lclanCore -lfreetype - @ln -s -f libclanTTF.so.$(D_VERSION_MINOR) Libs/libclanTTF.so.$(D_VERSION_MAJOR) - @ln -s -f libclanTTF.so.$(D_VERSION_MAJOR) Libs/libclanTTF.so - diff -urN --exclude CVS /ports/devel/clanlib/files/patch-Setup::Unix::Makefile.vorbis.in clanlib/files/patch-Setup::Unix::Makefile.vorbis.in --- /ports/devel/clanlib/files/patch-Setup::Unix::Makefile.vorbis.in 2004-01-24 14:30:01.000000000 +0000 +++ clanlib/files/patch-Setup::Unix::Makefile.vorbis.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ ---- Setup/Unix/Makefile.vorbis.in.orig Thu Jan 22 08:29:25 2004 -+++ Setup/Unix/Makefile.vorbis.in Thu Jan 22 08:29:36 2004 -@@ -20,7 +20,7 @@ - - Libs/libclanVorbis.so: Libs/libclanCore.so $(OBJF_LIB_VORBIS) - @echo "Building Libs/libclanVorbis.so" -- @$(LINK_COMMAND) -Wl,-soname=libclanVorbis.so.$(D_VERSION_MAJOR) -o Libs/libclanVorbis.so.$(D_VERSION_MINOR) $(OBJF_LIB_VORBIS) -L Libs -lclanCore -lvorbis -+ @$(LINK_COMMAND) -Wl,-soname=libclanVorbis.so.$(D_VERSION_MAJOR) -o Libs/libclanVorbis.so.$(D_VERSION_MINOR) $(OBJF_LIB_VORBIS) @LDFLAGS@ -L Libs -lclanCore -lvorbis - @ln -s -f libclanVorbis.so.$(D_VERSION_MINOR) Libs/libclanVorbis.so.$(D_VERSION_MAJOR) - @ln -s -f libclanVorbis.so.$(D_VERSION_MAJOR) Libs/libclanVorbis.so - diff -urN --exclude CVS /ports/devel/clanlib/files/patch-Setup::Unix::clanlib-config.in clanlib/files/patch-Setup::Unix::clanlib-config.in --- /ports/devel/clanlib/files/patch-Setup::Unix::clanlib-config.in 2004-01-24 14:30:01.000000000 +0000 +++ clanlib/files/patch-Setup::Unix::clanlib-config.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,14 +0,0 @@ ---- Setup/Unix/clanlib-config.in.orig Fri Jan 23 15:32:52 2004 -+++ Setup/Unix/clanlib-config.in Fri Jan 23 15:33:42 2004 -@@ -16,9 +16,9 @@ - ;; - --cflags) - includes=-I${includedir} -- echo ${includes} @comp_mode@ -+ echo ${includes} %%PTHREAD_CFLAGS%% - ;; - --libs) -- echo -L${libdir} -lclanCore -lclanApp -+ echo -L${libdir} -lclanCore -lclanApp %%PTHREAD_LIBS%% - ;; - esac diff -urN --exclude CVS /ports/devel/clanlib/files/patch-Setup_Tests_ttf.cpp clanlib/files/patch-Setup_Tests_ttf.cpp --- /ports/devel/clanlib/files/patch-Setup_Tests_ttf.cpp 2004-03-22 18:47:03.000000000 +0000 +++ clanlib/files/patch-Setup_Tests_ttf.cpp 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ ---- Setup/Tests/ttf.cpp.orig Mon Mar 22 13:44:56 2004 -+++ Setup/Tests/ttf.cpp Mon Mar 22 13:45:27 2004 -@@ -11,6 +11,7 @@ - - ------------------------------------------------------------------------ - */ -+#include - #include - - int main() { diff -urN --exclude CVS /ports/devel/clanlib/files/patch-Sources-GL-GLX-display-window-opengl.cpp clanlib/files/patch-Sources-GL-GLX-display-window-opengl.cpp --- /ports/devel/clanlib/files/patch-Sources-GL-GLX-display-window-opengl.cpp 1970-01-01 00:00:00.000000000 +0000 +++ clanlib/files/patch-Sources-GL-GLX-display-window-opengl.cpp 2007-08-01 14:46:11.000000000 +0000 @@ -0,0 +1,34 @@ +--- Sources/GL/GLX/display_window_opengl.cpp.orig Tue Oct 25 10:39:25 2005 ++++ Sources/GL/GLX/display_window_opengl.cpp Mon May 7 21:48:06 2007 +@@ -333,6 +333,7 @@ + void + CL_DisplayWindow_OpenGL::setup_event() + { ++#if 0 + char pathname[256]; + bool done = false; + +@@ -357,6 +358,7 @@ + done = true; + } + } ++#endif + } + + void CL_DisplayWindow_OpenGL::setup_usb_mice() +@@ -389,6 +391,7 @@ + + void CL_DisplayWindow_OpenGL::setup_joysticks() + { ++#if 0 + // This could need some improvments, it doesn't look for + // /dev/input/jsX for example + char pathname[256]; +@@ -428,6 +431,7 @@ + done = true; + } + } ++#endif + } + + diff -urN --exclude CVS /ports/devel/clanlib/files/patch-Sources-GL-GLX-input-device-linuxjoystick.h clanlib/files/patch-Sources-GL-GLX-input-device-linuxjoystick.h --- /ports/devel/clanlib/files/patch-Sources-GL-GLX-input-device-linuxjoystick.h 1970-01-01 00:00:00.000000000 +0000 +++ clanlib/files/patch-Sources-GL-GLX-input-device-linuxjoystick.h 2007-08-01 14:46:11.000000000 +0000 @@ -0,0 +1,17 @@ +--- Sources/GL/GLX/input_device_linuxjoystick.h.orig Tue Oct 25 10:39:25 2005 ++++ Sources/GL/GLX/input_device_linuxjoystick.h Mon May 7 21:46:00 2007 +@@ -26,7 +26,7 @@ + ** Magnus Norddahl + ** (if your name is missing here, please add it) + */ +- ++#if 0 + #ifndef header_input_device_linuxjoystick + #define header_input_device_linuxjoystick + +@@ -76,4 +76,4 @@ + // Local Variables: *** + // mode: clanlib *** + // End: *** +- ++#endif diff -urN --exclude CVS /ports/devel/clanlib/files/patch-Sources-GL-GLX-input_device_linuxevent.cpp clanlib/files/patch-Sources-GL-GLX-input_device_linuxevent.cpp --- /ports/devel/clanlib/files/patch-Sources-GL-GLX-input_device_linuxevent.cpp 1970-01-01 00:00:00.000000000 +0000 +++ clanlib/files/patch-Sources-GL-GLX-input_device_linuxevent.cpp 2007-08-01 14:46:11.000000000 +0000 @@ -0,0 +1,16 @@ +--- Sources/GL/GLX/input_device_linuxevent.cpp.orig Tue Oct 25 12:39:25 2005 ++++ Sources/GL/GLX/input_device_linuxevent.cpp Tue May 1 05:55:26 2007 +@@ -26,7 +26,7 @@ + ** Magnus Norddahl + ** (if your name is missing here, please add it) + */ +- ++#if 0 + #include + #include + #include +@@ -350,3 +350,4 @@ + // Local Variables: *** + // mode: clanlib *** + // End: *** ++#endif diff -urN --exclude CVS /ports/devel/clanlib/files/patch-Sources-GL-GLX-input_device_linuxjoystick.cpp clanlib/files/patch-Sources-GL-GLX-input_device_linuxjoystick.cpp --- /ports/devel/clanlib/files/patch-Sources-GL-GLX-input_device_linuxjoystick.cpp 1970-01-01 00:00:00.000000000 +0000 +++ clanlib/files/patch-Sources-GL-GLX-input_device_linuxjoystick.cpp 2007-08-01 14:46:11.000000000 +0000 @@ -0,0 +1,15 @@ +--- Sources/GL/GLX/input_device_linuxjoystick.cpp.orig Wed Apr 21 01:50:23 2004 ++++ Sources/GL/GLX/input_device_linuxjoystick.cpp Thu Jul 8 21:18:13 2004 +@@ -19,6 +19,7 @@ + ** Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + ++#if 0 + #include + #include + #include +@@ -142,3 +143,4 @@ + // mode: clanlib *** + // End: *** + ++#endif diff -urN --exclude CVS /ports/devel/clanlib/files/patch-Sources::API::Core::System::clanstring.h clanlib/files/patch-Sources::API::Core::System::clanstring.h --- /ports/devel/clanlib/files/patch-Sources::API::Core::System::clanstring.h 2004-01-24 14:30:01.000000000 +0000 +++ clanlib/files/patch-Sources::API::Core::System::clanstring.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ ---- Sources/API/Core/System/clanstring.h.orig Thu Jan 22 13:11:58 2004 -+++ Sources/API/Core/System/clanstring.h Thu Jan 22 13:12:12 2004 -@@ -39,7 +39,7 @@ - #include - #endif - --#ifdef __MACOS__ -+#if defined(__MACOS__) || defined(__FreeBSD__) - #include - #define NEED_FCVT - #endif diff -urN --exclude CVS /ports/devel/clanlib/files/patch-Sources::GL::GLX::displaycard_glx.cpp clanlib/files/patch-Sources::GL::GLX::displaycard_glx.cpp --- /ports/devel/clanlib/files/patch-Sources::GL::GLX::displaycard_glx.cpp 2004-01-24 14:30:01.000000000 +0000 +++ clanlib/files/patch-Sources::GL::GLX::displaycard_glx.cpp 1970-01-01 00:00:00.000000000 +0000 @@ -1,12 +0,0 @@ ---- Sources/GL/GLX/displaycard_glx.cpp.orig Thu Jan 22 14:15:47 2004 -+++ Sources/GL/GLX/displaycard_glx.cpp Thu Jan 22 14:26:58 2004 -@@ -14,6 +14,9 @@ - - #ifdef USE_OPENGL - -+#define GLX_GLXEXT_PROTOTYPES -+#include -+ - #include - #include - #include diff -urN --exclude CVS /ports/devel/clanlib/files/patch-Sources::IOData::Unix::directory_scanner_unix.cpp clanlib/files/patch-Sources::IOData::Unix::directory_scanner_unix.cpp --- /ports/devel/clanlib/files/patch-Sources::IOData::Unix::directory_scanner_unix.cpp 2004-01-24 14:30:01.000000000 +0000 +++ clanlib/files/patch-Sources::IOData::Unix::directory_scanner_unix.cpp 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ ---- Sources/Core/IOData/Unix/directory_scanner_unix.cpp.orig Thu Jan 10 11:23:30 2002 -+++ Sources/Core/IOData/Unix/directory_scanner_unix.cpp Sat Jan 24 13:31:49 2004 -@@ -13,6 +13,7 @@ - ------------------------------------------------------------------------ - */ - -+#include - #include - #include - #include diff -urN --exclude CVS /ports/devel/clanlib/files/patch-Sources::Network::Generic::browse_client_generic.cpp clanlib/files/patch-Sources::Network::Generic::browse_client_generic.cpp --- /ports/devel/clanlib/files/patch-Sources::Network::Generic::browse_client_generic.cpp 2004-01-24 14:30:01.000000000 +0000 +++ clanlib/files/patch-Sources::Network::Generic::browse_client_generic.cpp 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ ---- Sources/Network/Generic/browse_client_generic.cpp.orig Thu Jan 22 08:20:26 2004 -+++ Sources/Network/Generic/browse_client_generic.cpp Thu Jan 22 08:20:37 2004 -@@ -17,6 +17,7 @@ - #pragma warning (disable:4355) - #include // needed for ntohl and ntohs - #else -+#include - #include - #endif - diff -urN --exclude CVS /ports/devel/clanlib/files/patch-Sources::Network::Generic::ip_address.cpp clanlib/files/patch-Sources::Network::Generic::ip_address.cpp --- /ports/devel/clanlib/files/patch-Sources::Network::Generic::ip_address.cpp 2004-01-24 14:30:01.000000000 +0000 +++ clanlib/files/patch-Sources::Network::Generic::ip_address.cpp 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ ---- Sources/Network/Generic/ip_address.cpp.orig Thu Jan 22 08:22:51 2004 -+++ Sources/Network/Generic/ip_address.cpp Thu Jan 22 08:23:01 2004 -@@ -15,6 +15,7 @@ - #include "API/Core/System/error.h" - - #ifndef WIN32 -+ #include - #include - #include - #include diff -urN --exclude CVS /ports/devel/clanlib/files/patch-Sources::Network::Generic::netcomputer.cpp clanlib/files/patch-Sources::Network::Generic::netcomputer.cpp --- /ports/devel/clanlib/files/patch-Sources::Network::Generic::netcomputer.cpp 2004-01-24 14:30:01.000000000 +0000 +++ clanlib/files/patch-Sources::Network::Generic::netcomputer.cpp 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ ---- Sources/Network/Generic/netcomputer.cpp.orig Thu Jan 22 08:19:24 2004 -+++ Sources/Network/Generic/netcomputer.cpp Thu Jan 22 08:20:01 2004 -@@ -19,6 +19,7 @@ - #ifdef WIN32 - #include - #else -+#include - #include - #endif - diff -urN --exclude CVS /ports/devel/clanlib/files/patch-Sources::Network::Generic::socket_generic.h clanlib/files/patch-Sources::Network::Generic::socket_generic.h --- /ports/devel/clanlib/files/patch-Sources::Network::Generic::socket_generic.h 2004-01-24 14:30:01.000000000 +0000 +++ clanlib/files/patch-Sources::Network::Generic::socket_generic.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ ---- Sources/Network/Generic/socket_generic.h.orig Thu Jan 22 08:21:55 2004 -+++ Sources/Network/Generic/socket_generic.h Thu Jan 22 08:22:06 2004 -@@ -21,6 +21,7 @@ - #include - - #ifndef WIN32 -+ #include - #include - #include - #include diff -urN --exclude CVS /ports/devel/clanlib/files/patch-Sources::SmallJPEG::jpgd::jidctfst.cpp clanlib/files/patch-Sources::SmallJPEG::jpgd::jidctfst.cpp --- /ports/devel/clanlib/files/patch-Sources::SmallJPEG::jpgd::jidctfst.cpp 2004-01-24 14:30:01.000000000 +0000 +++ clanlib/files/patch-Sources::SmallJPEG::jpgd::jidctfst.cpp 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ ---- Sources/SmallJPEG/jpgd/jidctfst.cpp.orig Fri Jan 23 15:46:14 2004 -+++ Sources/SmallJPEG/jpgd/jidctfst.cpp Fri Jan 23 15:46:25 2004 -@@ -1,4 +1,5 @@ - #include "jpegdecoder.h" -+#include - - #ifdef WIN32 - #pragma warning(push) diff -urN --exclude CVS /ports/devel/clanlib/files/patch-Sources::Sound::Sound::ClanSound::cdaudio_linux.cpp clanlib/files/patch-Sources::Sound::Sound::ClanSound::cdaudio_linux.cpp --- /ports/devel/clanlib/files/patch-Sources::Sound::Sound::ClanSound::cdaudio_linux.cpp 2004-01-24 14:30:01.000000000 +0000 +++ clanlib/files/patch-Sources::Sound::Sound::ClanSound::cdaudio_linux.cpp 1970-01-01 00:00:00.000000000 +0000 @@ -1,31 +0,0 @@ ---- Sources/Sound/Sound/ClanSound/cdaudio_linux.cpp.orig Thu Jan 22 13:48:18 2004 -+++ Sources/Sound/Sound/ClanSound/cdaudio_linux.cpp Thu Jan 22 14:02:41 2004 -@@ -293,7 +293,7 @@ - { - #ifdef __FreeBSD__ - ioc_read_subchannel sub_channel; -- cd_sub_channel_header subinfo; -+ cd_sub_channel_info subinfo; - - sub_channel.data_len = sizeof(subinfo); - sub_channel.data = &subinfo; -@@ -310,7 +310,7 @@ - #ifdef __FreeBSD__ - if(!ioctl(file_handle,CDIOCREADSUBCHANNEL, &sub_channel)) - { -- if(subinfo.audio_status == CD_AS_PLAY_IN_PROGRESS) -+ if(subinfo.header.audio_status == CD_AS_PLAY_IN_PROGRESS) - return true; - else - return false; -@@ -562,8 +562,8 @@ - return false; - - #ifdef __FreeBSD__ -- track.start_lba = cur_track_info.entry.addr.lba -- track.track_length = next_track_info.entry.data_len; -+ track.start_lba = cur_track_info.entry.addr.lba; -+ track.track_length = next_track_info.entry.addr.lba - cur_track_info.entry.addr.lba; - #else - track.start_lba = cur_track_info.cdte_addr.lba; - track.track_length = next_track_info.cdte_addr.lba - cur_track_info.cdte_addr.lba; diff -urN --exclude CVS /ports/devel/clanlib/files/patch-Sources::Sound::Sound::ClanSound::oss.cpp clanlib/files/patch-Sources::Sound::Sound::ClanSound::oss.cpp --- /ports/devel/clanlib/files/patch-Sources::Sound::Sound::ClanSound::oss.cpp 2004-01-24 14:30:01.000000000 +0000 +++ clanlib/files/patch-Sources::Sound::Sound::ClanSound::oss.cpp 1970-01-01 00:00:00.000000000 +0000 @@ -1,17 +0,0 @@ ---- Sources/Sound/Sound/ClanSound/oss.cpp.orig Thu Jan 22 13:09:00 2004 -+++ Sources/Sound/Sound/ClanSound/oss.cpp Thu Jan 22 13:10:07 2004 -@@ -28,6 +28,14 @@ - #include "API/Core/System/system.h" - #include - -+#ifndef AFMT_S16_NE -+#if defined(BYTE_ORDER) && (BYTE_ORDER == BIG_ENDIAN) -+#define AFMT_S16_NE AFMT_S16_BE -+#else -+#define AFMT_S16_NE AFMT_S16_LE -+#endif -+#endif -+ - // If USE_DRIVER_FRAGSIZE is defined, we use the fragsize (and number of them) - // used by the soundcard driver. This is not as efficient as using our own - // settings - mainly provided for debugging. diff -urN --exclude CVS /ports/devel/clanlib/files/patch-Sources_Core_System_Unix_appconf.h clanlib/files/patch-Sources_Core_System_Unix_appconf.h --- /ports/devel/clanlib/files/patch-Sources_Core_System_Unix_appconf.h 2004-08-02 09:24:24.000000000 +0000 +++ clanlib/files/patch-Sources_Core_System_Unix_appconf.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,12 +0,0 @@ ---- Sources/Core/System/Unix/appconf.h.orig Wed May 3 20:29:00 2000 -+++ Sources/Core/System/Unix/appconf.h Mon Aug 2 10:19:18 2004 -@@ -527,7 +527,9 @@ - - //protected: --- if FileConfig::ConfigEntry is not public, functions in - // ConfigGroup such as Find/AddEntry can't return ConfigEntry*! -+protected: - class ConfigGroup; -+public: - class ConfigEntry - { - private: diff -urN --exclude CVS /ports/devel/clanlib/files/patch-Sources_Display_Display_Generic_blit_alphamask_rle.h clanlib/files/patch-Sources_Display_Display_Generic_blit_alphamask_rle.h --- /ports/devel/clanlib/files/patch-Sources_Display_Display_Generic_blit_alphamask_rle.h 2004-08-02 09:24:24.000000000 +0000 +++ clanlib/files/patch-Sources_Display_Display_Generic_blit_alphamask_rle.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,43 +0,0 @@ ---- Sources/Display/Display/Generic/blit_alphamask_rle.h.orig Mon Aug 2 10:47:18 2004 -+++ Sources/Display/Display/Generic/blit_alphamask_rle.h Mon Aug 2 10:49:31 2004 -@@ -107,14 +107,14 @@ - { - T a = alpha_data[x]; - T destval = dst_data[x]; -- T r = lookup_r[(((destval&rmask)>>rstart)<<8)+a]; //(((destval&rmask)>>rstart)*a)>>8; -- T g = lookup_g[(((destval&gmask)>>gstart)<<8)+a]; //(((destval&gmask)>>gstart)*a)>>8; -- T b = lookup_b[(((destval&bmask)>>bstart)<<8)+a]; //(((destval&bmask)>>bstart)*a)>>8; -+ T r = this->lookup_r[(((destval&this->rmask)>>this->rstart)<<8)+a]; //(((destval&rmask)>>rstart)*a)>>8; -+ T g = this->lookup_g[(((destval&this->gmask)>>this->gstart)<<8)+a]; //(((destval&gmask)>>gstart)*a)>>8; -+ T b = this->lookup_b[(((destval&this->bmask)>>this->bstart)<<8)+a]; //(((destval&bmask)>>bstart)*a)>>8; - - T amix = -- (r<rstart) + -+ (g<gstart) + -+ (b<bstart); - - dst_data[x] = amix + *(src_data++); - } -@@ -151,13 +151,13 @@ - { - T a = alpha_data[x]; - T destval = dst_buf[x]; -- T r = lookup_r[(((destval&rmask)>>rstart)<<8)+a]; -- T g = lookup_g[(((destval&gmask)>>gstart)<<8)+a]; -- T b = lookup_b[(((destval&bmask)>>bstart)<<8)+a]; -+ T r = this->lookup_r[(((destval&this->rmask)>>this->rstart)<<8)+a]; -+ T g = this->lookup_g[(((destval&this->gmask)>>this->gstart)<<8)+a]; -+ T b = this->lookup_b[(((destval&this->bmask)>>this->bstart)<<8)+a]; - T amix = -- (r<rstart) + -+ (g<gstart) + -+ (b<bstart); - dst_buf[x] = amix + *(src_data++); - } - memcpy(dst_data, dst_buf, sizeof(T)*rep); diff -urN --exclude CVS /ports/devel/clanlib/files/patch-Sources_TTF_font_ttf.cpp clanlib/files/patch-Sources_TTF_font_ttf.cpp --- /ports/devel/clanlib/files/patch-Sources_TTF_font_ttf.cpp 2004-03-22 18:47:03.000000000 +0000 +++ clanlib/files/patch-Sources_TTF_font_ttf.cpp 1970-01-01 00:00:00.000000000 +0000 @@ -1,12 +0,0 @@ ---- Sources/TTF/font_ttf.cpp.orig Mon Mar 22 13:45:53 2004 -+++ Sources/TTF/font_ttf.cpp Mon Mar 22 13:46:10 2004 -@@ -21,7 +21,8 @@ - #include - #include "Display/Font/font_generic.h" - --#include -+#include -+#include FT_FREETYPE_H - - #include "font_ttf.h" - diff -urN --exclude CVS /ports/devel/clanlib/files/patch-configure clanlib/files/patch-configure --- /ports/devel/clanlib/files/patch-configure 2004-01-24 14:30:01.000000000 +0000 +++ clanlib/files/patch-configure 1970-01-01 00:00:00.000000000 +0000 @@ -1,33 +0,0 @@ ---- configure.orig Sun Nov 3 22:41:57 2002 -+++ configure Fri Jan 23 15:49:01 2004 -@@ -3375,7 +3375,7 @@ - fi - - OLDLIBS="$LIBS" -- LIBS="$x_libraries -lGL -lGLU -lpthread -lGL" -+ LIBS="$x_libraries -lGL -lGLU -lGL" - echo "$as_me:$LINENO: checking for GL" >&5 - echo $ECHO_N "checking for GL... $ECHO_C" >&6 - if test "$cross_compiling" = yes; then -@@ -5268,18 +5268,18 @@ - enableval="$enable_debug" - - if test "$enableval" == "yes"; then -- comp_mode="-DDEBUG=1 -g3 -ggdb3 -O0" -+ comp_mode= - echo "$as_me:$LINENO: result: enabled" >&5 - echo "${ECHO_T}enabled" >&6 - else -- comp_mode="-O2" -+ comp_mode= - echo "$as_me:$LINENO: result: *********** <-- DISABLED --> ***********" >&5 - echo "${ECHO_T}*********** <-- DISABLED --> ***********" >&6 - fi - - else - -- comp_mode="-DDEBUG=1 -g3 -ggdb3" -+ comp_mode= - echo "$as_me:$LINENO: result: enabled" >&5 - echo "${ECHO_T}enabled" >&6 - diff -urN --exclude CVS /ports/devel/clanlib/pkg-plist clanlib/pkg-plist --- /ports/devel/clanlib/pkg-plist 2004-01-24 14:30:01.000000000 +0000 +++ clanlib/pkg-plist 2007-08-01 14:46:11.000000000 +0000 @@ -1,559 +1,384 @@ -bin/clanlib-config -include/ClanLib/Application/clanapp.h -include/ClanLib/Core/IOData/cl_endian.h -include/ClanLib/Core/IOData/directory_scanner.h -include/ClanLib/Core/IOData/inputsource.h -include/ClanLib/Core/IOData/inputsource_file.h -include/ClanLib/Core/IOData/inputsource_memory.h -include/ClanLib/Core/IOData/inputsource_provider.h -include/ClanLib/Core/IOData/inputsource_provider_file.h -include/ClanLib/Core/IOData/inputsource_zipped.h -include/ClanLib/Core/IOData/outputsource.h -include/ClanLib/Core/IOData/outputsource_file.h -include/ClanLib/Core/IOData/outputsource_memory.h -include/ClanLib/Core/IOData/outputsource_provider.h -include/ClanLib/Core/IOData/outputsource_zipped.h -include/ClanLib/Core/Math/bezier.h -include/ClanLib/Core/Math/cl_vector.h -include/ClanLib/Core/Math/math.h -include/ClanLib/Core/Math/point.h -include/ClanLib/Core/Math/rect.h -include/ClanLib/Core/Math/size.h -include/ClanLib/Core/Math/vector2.h -include/ClanLib/Core/Math/vector2.inl -include/ClanLib/Core/Resources/datafile_compiler.h -include/ClanLib/Core/Resources/resource.h -include/ClanLib/Core/Resources/resource_manager.h -include/ClanLib/Core/Resources/resourcedata.h -include/ClanLib/Core/Resources/resourceoption.h -include/ClanLib/Core/Resources/resourceoptions.h -include/ClanLib/Core/Resources/resourcetype.h -include/ClanLib/Core/Resources/resourcetype_boolean.h -include/ClanLib/Core/Resources/resourcetype_integer.h -include/ClanLib/Core/Resources/resourcetype_raw.h -include/ClanLib/Core/Resources/resourcetype_string.h -include/ClanLib/Core/System/cl_assert.h -include/ClanLib/Core/System/clanstring.h -include/ClanLib/Core/System/clanstring.h.orig -include/ClanLib/Core/System/console_window.h -include/ClanLib/Core/System/error.h -include/ClanLib/Core/System/event_listener.h -include/ClanLib/Core/System/event_trigger.h -include/ClanLib/Core/System/keep_alive.h -include/ClanLib/Core/System/mutex.h -include/ClanLib/Core/System/setupcore.h -include/ClanLib/Core/System/system.h -include/ClanLib/Core/System/thread.h -include/ClanLib/Core/System/threadfunc_v0.h -include/ClanLib/Core/System/threadfunc_v1.h -include/ClanLib/Core/System/threadfunc_v2.h -include/ClanLib/Core/System/timer.h -include/ClanLib/Display/Display/cliprect.h -include/ClanLib/Display/Display/display.h -include/ClanLib/Display/Display/displaycard.h -include/ClanLib/Display/Display/mousecursor.h -include/ClanLib/Display/Display/mousecursor_provider.h -include/ClanLib/Display/Display/palette.h -include/ClanLib/Display/Display/pixeldata.h -include/ClanLib/Display/Display/pixelformat.h -include/ClanLib/Display/Display/res_surface.h -include/ClanLib/Display/Display/surface.h -include/ClanLib/Display/Display/surfaceprovider.h -include/ClanLib/Display/Display/surfaceprovider_32bpp.h -include/ClanLib/Display/Display/target.h -include/ClanLib/Display/Display/vidmode.h -include/ClanLib/Display/Font/font.h -include/ClanLib/Display/Font/font_description.h -include/ClanLib/Display/Input/input.h -include/ClanLib/Display/Input/inputaxis.h -include/ClanLib/Display/Input/inputaxis_basic.h -include/ClanLib/Display/Input/inputaxis_group.h -include/ClanLib/Display/Input/inputbuffer.h -include/ClanLib/Display/Input/inputbutton.h -include/ClanLib/Display/Input/inputbutton_basic.h -include/ClanLib/Display/Input/inputbutton_group.h -include/ClanLib/Display/Input/inputbutton_to_axis_analog.h -include/ClanLib/Display/Input/inputbutton_to_axis_digital.h -include/ClanLib/Display/Input/inputcursor.h -include/ClanLib/Display/Input/inputdevice.h -include/ClanLib/Display/Input/inputhat.h -include/ClanLib/Display/Input/key.h -include/ClanLib/Display/Input/keyboard.h -include/ClanLib/Display/Input/mouse.h -include/ClanLib/Display/SurfaceProviders/canvas.h -include/ClanLib/Display/SurfaceProviders/generic_surfaceprovider.h -include/ClanLib/Display/SurfaceProviders/provider_bmp.h -include/ClanLib/Display/SurfaceProviders/provider_dynamic.h -include/ClanLib/Display/SurfaceProviders/provider_pcx.h -include/ClanLib/Display/SurfaceProviders/provider_targa.h -include/ClanLib/Display/SurfaceProviders/sprite.h -include/ClanLib/Display/SurfaceProviders/sprite2.h -include/ClanLib/Display/SurfaceProviders/sprite_subarray_provider.h -include/ClanLib/Display/SurfaceProviders/sprite_subsection_provider.h -include/ClanLib/Display/setupdisplay.h -include/ClanLib/GL/camera.h -include/ClanLib/GL/clipinfo.h -include/ClanLib/GL/opengl.h -include/ClanLib/GL/setupgl.h -include/ClanLib/GL/texture.h -include/ClanLib/GL/viewpoint.h -include/ClanLib/GUI/button.h -include/ClanLib/GUI/checkbox.h -include/ClanLib/GUI/component.h -include/ClanLib/GUI/component_manager.h -include/ClanLib/GUI/component_move_handler.h -include/ClanLib/GUI/component_options.h -include/ClanLib/GUI/component_resize_handler.h -include/ClanLib/GUI/component_style.h -include/ClanLib/GUI/component_type.h -include/ClanLib/GUI/filedialog.h -include/ClanLib/GUI/frame.h -include/ClanLib/GUI/gui_file_parser.h -include/ClanLib/GUI/gui_manager.h -include/ClanLib/GUI/image.h -include/ClanLib/GUI/inputbox.h -include/ClanLib/GUI/label.h -include/ClanLib/GUI/layout_manager.h -include/ClanLib/GUI/listbox.h -include/ClanLib/GUI/listitem.h -include/ClanLib/GUI/menunode.h -include/ClanLib/GUI/messagebox.h -include/ClanLib/GUI/popupmenu.h -include/ClanLib/GUI/progressbar.h -include/ClanLib/GUI/radiobutton.h -include/ClanLib/GUI/radiogroup.h -include/ClanLib/GUI/scrollbar.h -include/ClanLib/GUI/setupgui.h -include/ClanLib/GUI/stylemanager.h -include/ClanLib/GUI/stylemanager_default.h -include/ClanLib/GUI/treeitem.h -include/ClanLib/GUI/treenode.h -include/ClanLib/GUI/treeview.h -include/ClanLib/GUI/window.h -include/ClanLib/JPEG/provider_jpeg.h -include/ClanLib/MikMod/setupmikmod.h -include/ClanLib/MikMod/streamed_mikmod_sample.h -include/ClanLib/Network/browse_client.h -include/ClanLib/Network/browse_master.h -include/ClanLib/Network/browse_server.h -include/ClanLib/Network/buffered_socket.h -include/ClanLib/Network/inputsource_socket.h -include/ClanLib/Network/ip_address.h -include/ClanLib/Network/netcomputer.h -include/ClanLib/Network/netgroup.h -include/ClanLib/Network/netmessage.h -include/ClanLib/Network/netobject.h -include/ClanLib/Network/netobject_channel.h -include/ClanLib/Network/netsession.h -include/ClanLib/Network/netvariables.h -include/ClanLib/Network/network.h -include/ClanLib/Network/outputsource_socket.h -include/ClanLib/Network/setupnetwork.h -include/ClanLib/Network/socket.h -include/ClanLib/Network/subchannel.h -include/ClanLib/Network/world_template.h -include/ClanLib/PNG/provider_png.h -include/ClanLib/Signals/signal_v0.h -include/ClanLib/Signals/signal_v1.h -include/ClanLib/Signals/signal_v2.h -include/ClanLib/Signals/signal_v3.h -include/ClanLib/Signals/signal_v4.h -include/ClanLib/Signals/signal_v5.h -include/ClanLib/Signals/slot.h -include/ClanLib/Signals/slot_container.h -include/ClanLib/Signals/slot_generic.h -include/ClanLib/Signals/slot_v0.h -include/ClanLib/Signals/slot_v1.h -include/ClanLib/Signals/slot_v2.h -include/ClanLib/Signals/slot_v3.h -include/ClanLib/Signals/slot_v4.h -include/ClanLib/Signals/slot_v5.h -include/ClanLib/Signals/slotbuffer_v0.h -include/ClanLib/Signals/slotbuffer_v1.h -include/ClanLib/SmallJPEG/jpgd_provider.h -include/ClanLib/Sound/SoundFilters/echofilter.h -include/ClanLib/Sound/SoundFilters/fadefilter.h -include/ClanLib/Sound/SoundFilters/inverse_echofilter.h -include/ClanLib/Sound/SoundProviders/static_provider_raw.h -include/ClanLib/Sound/SoundProviders/static_provider_wave.h -include/ClanLib/Sound/SoundProviders/stream_provider_raw.h -include/ClanLib/Sound/SoundProviders/stream_provider_wave.h -include/ClanLib/Sound/cd_audio.h -include/ClanLib/Sound/setupsound.h -include/ClanLib/Sound/sound.h -include/ClanLib/Sound/soundbuffer.h -include/ClanLib/Sound/soundbuffer_session.h -include/ClanLib/Sound/soundfilter.h -include/ClanLib/Sound/soundformat.h -include/ClanLib/Sound/static_soundprovider.h -include/ClanLib/Sound/stream_soundprovider.h -include/ClanLib/TTF/setupttf.h -include/ClanLib/Vorbis/setupvorbis.h -include/ClanLib/Vorbis/vorbis_soundprovider.h -include/ClanLib/application.h -include/ClanLib/core.h -include/ClanLib/display.h -include/ClanLib/efence.h -include/ClanLib/gl.h -include/ClanLib/gui.h -include/ClanLib/jpeg.h -include/ClanLib/mikmod.h -include/ClanLib/network.h -include/ClanLib/png.h -include/ClanLib/signals.h -include/ClanLib/sound.h -include/ClanLib/ttf.h -include/ClanLib/vorbis.h +include/ClanLib-0.8/ClanLib/Application/clanapp.h +include/ClanLib-0.8/ClanLib/Core/IOData/cl_endian.h +include/ClanLib-0.8/ClanLib/Core/IOData/datatypes.h +include/ClanLib-0.8/ClanLib/Core/IOData/directory.h +include/ClanLib-0.8/ClanLib/Core/IOData/directory_scanner.h +include/ClanLib-0.8/ClanLib/Core/IOData/inputsource.h +include/ClanLib-0.8/ClanLib/Core/IOData/inputsource_file.h +include/ClanLib-0.8/ClanLib/Core/IOData/inputsource_memory.h +include/ClanLib-0.8/ClanLib/Core/IOData/inputsource_provider.h +include/ClanLib-0.8/ClanLib/Core/IOData/inputsource_provider_file.h +include/ClanLib-0.8/ClanLib/Core/IOData/inputsource_zipped.h +include/ClanLib-0.8/ClanLib/Core/IOData/outputsource.h +include/ClanLib-0.8/ClanLib/Core/IOData/outputsource_file.h +include/ClanLib-0.8/ClanLib/Core/IOData/outputsource_memory.h +include/ClanLib-0.8/ClanLib/Core/IOData/outputsource_provider.h +include/ClanLib-0.8/ClanLib/Core/IOData/outputsource_zipped.h +include/ClanLib-0.8/ClanLib/Core/IOData/zip_archive.h +include/ClanLib-0.8/ClanLib/Core/IOData/zip_file_entry.h +include/ClanLib-0.8/ClanLib/Core/Math/circle.h +include/ClanLib-0.8/ClanLib/Core/Math/cl_vector.h +include/ClanLib-0.8/ClanLib/Core/Math/delauney_triangulator.h +include/ClanLib-0.8/ClanLib/Core/Math/line_math.h +include/ClanLib-0.8/ClanLib/Core/Math/math.h +include/ClanLib-0.8/ClanLib/Core/Math/matrix4x4.h +include/ClanLib-0.8/ClanLib/Core/Math/number_pool.h +include/ClanLib-0.8/ClanLib/Core/Math/origin.h +include/ClanLib-0.8/ClanLib/Core/Math/outline_triangulator.h +include/ClanLib-0.8/ClanLib/Core/Math/point.h +include/ClanLib-0.8/ClanLib/Core/Math/pointset_math.h +include/ClanLib-0.8/ClanLib/Core/Math/quad.h +include/ClanLib-0.8/ClanLib/Core/Math/rect.h +include/ClanLib-0.8/ClanLib/Core/Math/size.h +include/ClanLib-0.8/ClanLib/Core/Math/triangle_math.h +include/ClanLib-0.8/ClanLib/Core/Math/vector2.h +include/ClanLib-0.8/ClanLib/Core/Math/vector2.inl +include/ClanLib-0.8/ClanLib/Core/Resources/resource.h +include/ClanLib-0.8/ClanLib/Core/Resources/resource_manager.h +include/ClanLib-0.8/ClanLib/Core/Resources/resourcedata.h +include/ClanLib-0.8/ClanLib/Core/Resources/resourcetype_boolean.h +include/ClanLib-0.8/ClanLib/Core/Resources/resourcetype_float.h +include/ClanLib-0.8/ClanLib/Core/Resources/resourcetype_integer.h +include/ClanLib-0.8/ClanLib/Core/Resources/resourcetype_raw.h +include/ClanLib-0.8/ClanLib/Core/Resources/resourcetype_string.h +include/ClanLib-0.8/ClanLib/Core/System/call_stack.h +include/ClanLib-0.8/ClanLib/Core/System/cl_assert.h +include/ClanLib-0.8/ClanLib/Core/System/cl_library.h +include/ClanLib-0.8/ClanLib/Core/System/clanstring.h +include/ClanLib-0.8/ClanLib/Core/System/clonable.h +include/ClanLib-0.8/ClanLib/Core/System/command_line.h +include/ClanLib-0.8/ClanLib/Core/System/console_window.h +include/ClanLib-0.8/ClanLib/Core/System/crash_reporter.h +include/ClanLib-0.8/ClanLib/Core/System/error.h +include/ClanLib-0.8/ClanLib/Core/System/event_listener.h +include/ClanLib-0.8/ClanLib/Core/System/event_trigger.h +include/ClanLib-0.8/ClanLib/Core/System/keep_alive.h +include/ClanLib-0.8/ClanLib/Core/System/lazycopyptr.h +include/ClanLib-0.8/ClanLib/Core/System/log.h +include/ClanLib-0.8/ClanLib/Core/System/mutex.h +include/ClanLib-0.8/ClanLib/Core/System/mutexsharedptr.h +include/ClanLib-0.8/ClanLib/Core/System/mutexweakptr.h +include/ClanLib-0.8/ClanLib/Core/System/owningptr.h +include/ClanLib-0.8/ClanLib/Core/System/setupcore.h +include/ClanLib-0.8/ClanLib/Core/System/sharedptr.h +include/ClanLib-0.8/ClanLib/Core/System/system.h +include/ClanLib-0.8/ClanLib/Core/System/thread.h +include/ClanLib-0.8/ClanLib/Core/System/threadfunc_v0.h +include/ClanLib-0.8/ClanLib/Core/System/threadfunc_v1.h +include/ClanLib-0.8/ClanLib/Core/System/threadfunc_v2.h +include/ClanLib-0.8/ClanLib/Core/System/timer.h +include/ClanLib-0.8/ClanLib/Core/System/weakptr.h +include/ClanLib-0.8/ClanLib/Core/XML/dom_attr.h +include/ClanLib-0.8/ClanLib/Core/XML/dom_cdata_section.h +include/ClanLib-0.8/ClanLib/Core/XML/dom_character_data.h +include/ClanLib-0.8/ClanLib/Core/XML/dom_comment.h +include/ClanLib-0.8/ClanLib/Core/XML/dom_document.h +include/ClanLib-0.8/ClanLib/Core/XML/dom_document_fragment.h +include/ClanLib-0.8/ClanLib/Core/XML/dom_document_type.h +include/ClanLib-0.8/ClanLib/Core/XML/dom_element.h +include/ClanLib-0.8/ClanLib/Core/XML/dom_entity.h +include/ClanLib-0.8/ClanLib/Core/XML/dom_entity_reference.h +include/ClanLib-0.8/ClanLib/Core/XML/dom_exception.h +include/ClanLib-0.8/ClanLib/Core/XML/dom_implementation.h +include/ClanLib-0.8/ClanLib/Core/XML/dom_named_node_map.h +include/ClanLib-0.8/ClanLib/Core/XML/dom_node.h +include/ClanLib-0.8/ClanLib/Core/XML/dom_node_list.h +include/ClanLib-0.8/ClanLib/Core/XML/dom_notation.h +include/ClanLib-0.8/ClanLib/Core/XML/dom_processing_instruction.h +include/ClanLib-0.8/ClanLib/Core/XML/dom_text.h +include/ClanLib-0.8/ClanLib/Core/XML/xml_token.h +include/ClanLib-0.8/ClanLib/Core/XML/xml_tokenizer.h +include/ClanLib-0.8/ClanLib/Core/XML/xml_writer.h +include/ClanLib-0.8/ClanLib/Core/core_iostream.h +include/ClanLib-0.8/ClanLib/Display/Collision/collision_outline.h +include/ClanLib-0.8/ClanLib/Display/Collision/contour.h +include/ClanLib-0.8/ClanLib/Display/Collision/outline_accuracy.h +include/ClanLib-0.8/ClanLib/Display/Collision/outline_circle.h +include/ClanLib-0.8/ClanLib/Display/Collision/outline_math.h +include/ClanLib-0.8/ClanLib/Display/Collision/outline_provider.h +include/ClanLib-0.8/ClanLib/Display/Collision/outline_provider_bitmap.h +include/ClanLib-0.8/ClanLib/Display/Collision/outline_provider_file.h +include/ClanLib-0.8/ClanLib/Display/Providers/dc_buffer.h +include/ClanLib-0.8/ClanLib/Display/Providers/jpeg_provider.h +include/ClanLib-0.8/ClanLib/Display/Providers/pcx_provider.h +include/ClanLib-0.8/ClanLib/Display/Providers/png_provider.h +include/ClanLib-0.8/ClanLib/Display/Providers/provider_factory.h +include/ClanLib-0.8/ClanLib/Display/Providers/provider_type.h +include/ClanLib-0.8/ClanLib/Display/Providers/provider_type_register.h +include/ClanLib-0.8/ClanLib/Display/Providers/targa_provider.h +include/ClanLib-0.8/ClanLib/Display/blend_func.h +include/ClanLib-0.8/ClanLib/Display/canvas.h +include/ClanLib-0.8/ClanLib/Display/color.h +include/ClanLib-0.8/ClanLib/Display/display.h +include/ClanLib-0.8/ClanLib/Display/display_iostream.h +include/ClanLib-0.8/ClanLib/Display/display_mode.h +include/ClanLib-0.8/ClanLib/Display/display_window.h +include/ClanLib-0.8/ClanLib/Display/display_window_description.h +include/ClanLib-0.8/ClanLib/Display/font.h +include/ClanLib-0.8/ClanLib/Display/frameratecounter.h +include/ClanLib-0.8/ClanLib/Display/glyph_buffer.h +include/ClanLib-0.8/ClanLib/Display/gradient.h +include/ClanLib-0.8/ClanLib/Display/graphic_context.h +include/ClanLib-0.8/ClanLib/Display/input_buffer.h +include/ClanLib-0.8/ClanLib/Display/input_button.h +include/ClanLib-0.8/ClanLib/Display/input_context.h +include/ClanLib-0.8/ClanLib/Display/input_device.h +include/ClanLib-0.8/ClanLib/Display/input_event.h +include/ClanLib-0.8/ClanLib/Display/joystick.h +include/ClanLib-0.8/ClanLib/Display/key_binding.h +include/ClanLib-0.8/ClanLib/Display/keyboard.h +include/ClanLib-0.8/ClanLib/Display/keys.h +include/ClanLib-0.8/ClanLib/Display/mouse.h +include/ClanLib-0.8/ClanLib/Display/palette.h +include/ClanLib-0.8/ClanLib/Display/pixel_buffer.h +include/ClanLib-0.8/ClanLib/Display/pixel_format.h +include/ClanLib-0.8/ClanLib/Display/pixel_format_type.h +include/ClanLib-0.8/ClanLib/Display/rle_surface.h +include/ClanLib-0.8/ClanLib/Display/setupdisplay.h +include/ClanLib-0.8/ClanLib/Display/sprite.h +include/ClanLib-0.8/ClanLib/Display/sprite_description.h +include/ClanLib-0.8/ClanLib/Display/sprite_packer.h +include/ClanLib-0.8/ClanLib/Display/stencil_func.h +include/ClanLib-0.8/ClanLib/Display/surface.h +include/ClanLib-0.8/ClanLib/Display/text_styler.h +%%OPENGL%%include/ClanLib-0.8/ClanLib/GL/light_source.h +%%OPENGL%%include/ClanLib-0.8/ClanLib/GL/opengl.h +%%OPENGL%%include/ClanLib-0.8/ClanLib/GL/opengl_state.h +%%OPENGL%%include/ClanLib-0.8/ClanLib/GL/opengl_state_data.h +%%OPENGL%%include/ClanLib-0.8/ClanLib/GL/opengl_surface.h +%%OPENGL%%include/ClanLib-0.8/ClanLib/GL/opengl_window.h +%%OPENGL%%include/ClanLib-0.8/ClanLib/GL/opengl_window_description.h +%%OPENGL%%include/ClanLib-0.8/ClanLib/GL/opengl_wrap.h +%%OPENGL%%include/ClanLib-0.8/ClanLib/GL/program_attribute.h +%%OPENGL%%include/ClanLib-0.8/ClanLib/GL/program_object.h +%%OPENGL%%include/ClanLib-0.8/ClanLib/GL/program_uniform.h +%%OPENGL%%include/ClanLib-0.8/ClanLib/GL/setupgl.h +%%OPENGL%%include/ClanLib-0.8/ClanLib/GL/shader_object.h +%%OPENGL%%include/ClanLib-0.8/ClanLib/GL/texture.h +%%OPENGL%%include/ClanLib-0.8/ClanLib/GL/viewpoint.h +include/ClanLib-0.8/ClanLib/GUI/button.h +include/ClanLib-0.8/ClanLib/GUI/checkbox.h +include/ClanLib-0.8/ClanLib/GUI/component.h +include/ClanLib-0.8/ClanLib/GUI/component_manager.h +include/ClanLib-0.8/ClanLib/GUI/component_move_handler.h +include/ClanLib-0.8/ClanLib/GUI/component_resize_handler.h +include/ClanLib-0.8/ClanLib/GUI/component_style.h +include/ClanLib-0.8/ClanLib/GUI/component_type.h +include/ClanLib-0.8/ClanLib/GUI/deck.h +include/ClanLib-0.8/ClanLib/GUI/filedialog.h +include/ClanLib-0.8/ClanLib/GUI/frame.h +include/ClanLib-0.8/ClanLib/GUI/gui_manager.h +include/ClanLib-0.8/ClanLib/GUI/image.h +include/ClanLib-0.8/ClanLib/GUI/inputbox.h +include/ClanLib-0.8/ClanLib/GUI/inputdialog.h +include/ClanLib-0.8/ClanLib/GUI/label.h +include/ClanLib-0.8/ClanLib/GUI/layout.h +include/ClanLib-0.8/ClanLib/GUI/listbox.h +include/ClanLib-0.8/ClanLib/GUI/listitem.h +include/ClanLib-0.8/ClanLib/GUI/menu.h +include/ClanLib-0.8/ClanLib/GUI/menu_item.h +include/ClanLib-0.8/ClanLib/GUI/menu_node.h +include/ClanLib-0.8/ClanLib/GUI/messagebox.h +include/ClanLib-0.8/ClanLib/GUI/progressbar.h +include/ClanLib-0.8/ClanLib/GUI/radiobutton.h +include/ClanLib-0.8/ClanLib/GUI/radiogroup.h +include/ClanLib-0.8/ClanLib/GUI/scrollbar.h +include/ClanLib-0.8/ClanLib/GUI/setupgui.h +include/ClanLib-0.8/ClanLib/GUI/stylemanager.h +include/ClanLib-0.8/ClanLib/GUI/treeitem.h +include/ClanLib-0.8/ClanLib/GUI/treenode.h +include/ClanLib-0.8/ClanLib/GUI/treeview.h +include/ClanLib-0.8/ClanLib/GUI/window.h +include/ClanLib-0.8/ClanLib/GUIStyleSilver/button_silver.h +include/ClanLib-0.8/ClanLib/GUIStyleSilver/checkbox_silver.h +include/ClanLib-0.8/ClanLib/GUIStyleSilver/frame_silver.h +include/ClanLib-0.8/ClanLib/GUIStyleSilver/image_silver.h +include/ClanLib-0.8/ClanLib/GUIStyleSilver/inputbox_silver.h +include/ClanLib-0.8/ClanLib/GUIStyleSilver/label_silver.h +include/ClanLib-0.8/ClanLib/GUIStyleSilver/listbox_silver.h +include/ClanLib-0.8/ClanLib/GUIStyleSilver/menu_item_silver.h +include/ClanLib-0.8/ClanLib/GUIStyleSilver/menu_node_silver.h +include/ClanLib-0.8/ClanLib/GUIStyleSilver/menu_silver.h +include/ClanLib-0.8/ClanLib/GUIStyleSilver/progressbar_silver.h +include/ClanLib-0.8/ClanLib/GUIStyleSilver/radiobutton_silver.h +include/ClanLib-0.8/ClanLib/GUIStyleSilver/scrollbar_silver.h +include/ClanLib-0.8/ClanLib/GUIStyleSilver/stylemanager_silver.h +include/ClanLib-0.8/ClanLib/GUIStyleSilver/treeitem_silver.h +include/ClanLib-0.8/ClanLib/GUIStyleSilver/treeview_silver.h +include/ClanLib-0.8/ClanLib/GUIStyleSilver/window_silver.h +%%LIBMIKMOD%%include/ClanLib-0.8/ClanLib/MikMod/setupmikmod.h +%%LIBMIKMOD%%include/ClanLib-0.8/ClanLib/MikMod/soundprovider_mikmod.h +include/ClanLib-0.8/ClanLib/Network/IRC/dcc_download.h +include/ClanLib-0.8/ClanLib/Network/IRC/irc_connection.h +include/ClanLib-0.8/ClanLib/Network/IRC/irc_numerics.h +include/ClanLib-0.8/ClanLib/Network/NetObjects/netobject_client.h +include/ClanLib-0.8/ClanLib/Network/NetObjects/netobject_controller.h +include/ClanLib-0.8/ClanLib/Network/NetObjects/netobject_server.h +include/ClanLib-0.8/ClanLib/Network/NetSession/inputsource_netpacket.h +include/ClanLib-0.8/ClanLib/Network/NetSession/inputsource_netstream.h +include/ClanLib-0.8/ClanLib/Network/NetSession/netcomputer.h +include/ClanLib-0.8/ClanLib/Network/NetSession/netgroup.h +include/ClanLib-0.8/ClanLib/Network/NetSession/netpacket.h +include/ClanLib-0.8/ClanLib/Network/NetSession/netsession.h +include/ClanLib-0.8/ClanLib/Network/NetSession/netstream.h +include/ClanLib-0.8/ClanLib/Network/NetSession/outputsource_netpacket.h +include/ClanLib-0.8/ClanLib/Network/NetSession/outputsource_netstream.h +include/ClanLib-0.8/ClanLib/Network/NetVariables/netvariables.h +include/ClanLib-0.8/ClanLib/Network/Socket/inputsource_socket.h +include/ClanLib-0.8/ClanLib/Network/Socket/ip_address.h +include/ClanLib-0.8/ClanLib/Network/Socket/outputsource_socket.h +include/ClanLib-0.8/ClanLib/Network/Socket/socket.h +include/ClanLib-0.8/ClanLib/Network/setupnetwork.h +%%SDL%%include/ClanLib-0.8/ClanLib/SDL/setupsdl.h +include/ClanLib-0.8/ClanLib/Signals/signal.h +include/ClanLib-0.8/ClanLib/Signals/signal_v0.h +include/ClanLib-0.8/ClanLib/Signals/signal_v1.h +include/ClanLib-0.8/ClanLib/Signals/signal_v2.h +include/ClanLib-0.8/ClanLib/Signals/signal_v3.h +include/ClanLib-0.8/ClanLib/Signals/signal_v4.h +include/ClanLib-0.8/ClanLib/Signals/signal_v5.h +include/ClanLib-0.8/ClanLib/Signals/slot.h +include/ClanLib-0.8/ClanLib/Signals/slot_container.h +include/ClanLib-0.8/ClanLib/Signals/slot_generic.h +include/ClanLib-0.8/ClanLib/Signals/slot_v0.h +include/ClanLib-0.8/ClanLib/Signals/slot_v1.h +include/ClanLib-0.8/ClanLib/Signals/slot_v2.h +include/ClanLib-0.8/ClanLib/Signals/slot_v3.h +include/ClanLib-0.8/ClanLib/Signals/slot_v4.h +include/ClanLib-0.8/ClanLib/Signals/slot_v5.h +include/ClanLib-0.8/ClanLib/Signals/slotbuffer_v0.h +include/ClanLib-0.8/ClanLib/Signals/slotbuffer_v1.h +include/ClanLib-0.8/ClanLib/Sound/SoundFilters/echofilter.h +include/ClanLib-0.8/ClanLib/Sound/SoundFilters/fadefilter.h +include/ClanLib-0.8/ClanLib/Sound/SoundFilters/inverse_echofilter.h +include/ClanLib-0.8/ClanLib/Sound/SoundProviders/soundprovider_factory.h +include/ClanLib-0.8/ClanLib/Sound/SoundProviders/soundprovider_raw.h +include/ClanLib-0.8/ClanLib/Sound/SoundProviders/soundprovider_recorder.h +include/ClanLib-0.8/ClanLib/Sound/SoundProviders/soundprovider_type.h +include/ClanLib-0.8/ClanLib/Sound/SoundProviders/soundprovider_type_register.h +include/ClanLib-0.8/ClanLib/Sound/SoundProviders/soundprovider_wave.h +include/ClanLib-0.8/ClanLib/Sound/cd_drive.h +include/ClanLib-0.8/ClanLib/Sound/setupsound.h +include/ClanLib-0.8/ClanLib/Sound/sound.h +include/ClanLib-0.8/ClanLib/Sound/soundbuffer.h +include/ClanLib-0.8/ClanLib/Sound/soundbuffer_session.h +include/ClanLib-0.8/ClanLib/Sound/soundfilter.h +include/ClanLib-0.8/ClanLib/Sound/soundformat.h +include/ClanLib-0.8/ClanLib/Sound/soundoutput.h +include/ClanLib-0.8/ClanLib/Sound/soundoutput_description.h +include/ClanLib-0.8/ClanLib/Sound/soundprovider.h +include/ClanLib-0.8/ClanLib/Sound/soundprovider_session.h +%%LIBVORBIS%%include/ClanLib-0.8/ClanLib/Vorbis/setupvorbis.h +%%LIBVORBIS%%include/ClanLib-0.8/ClanLib/Vorbis/soundprovider_vorbis.h +include/ClanLib-0.8/ClanLib/application.h +include/ClanLib-0.8/ClanLib/core.h +include/ClanLib-0.8/ClanLib/display.h +%%OPENGL%%include/ClanLib-0.8/ClanLib/gl.h +include/ClanLib-0.8/ClanLib/gui.h +include/ClanLib-0.8/ClanLib/guistylesilver.h +%%LIBMIKMOD%%include/ClanLib-0.8/ClanLib/mikmod.h +include/ClanLib-0.8/ClanLib/network.h +%%SDL%%include/ClanLib-0.8/ClanLib/sdl.h +include/ClanLib-0.8/ClanLib/signals.h +include/ClanLib-0.8/ClanLib/sound.h +%%LIBVORBIS%%include/ClanLib-0.8/ClanLib/vorbis.h +lib/libclanApp-0.8.so +lib/libclanApp-0.8.so.1 lib/libclanApp.a +lib/libclanApp.la lib/libclanApp.so -lib/libclanApp.so.0.6.3 -lib/libclanApp.so.2 +lib/libclanCore-0.8.so +lib/libclanCore-0.8.so.1 lib/libclanCore.a +lib/libclanCore.la lib/libclanCore.so -lib/libclanCore.so.0.6.3 -lib/libclanCore.so.2 +lib/libclanDisplay-0.8.so +lib/libclanDisplay-0.8.so.1 lib/libclanDisplay.a +lib/libclanDisplay.la lib/libclanDisplay.so -lib/libclanDisplay.so.0.6.3 -lib/libclanDisplay.so.2 -lib/libclanGL.a -lib/libclanGL.so -lib/libclanGL.so.0.6.3 -lib/libclanGL.so.2 +%%OPENGL%%lib/libclanGL-0.8.so +%%OPENGL%%lib/libclanGL-0.8.so.1 +%%OPENGL%%lib/libclanGL.a +%%OPENGL%%lib/libclanGL.la +%%OPENGL%%lib/libclanGL.so +lib/libclanGUI-0.8.so +lib/libclanGUI-0.8.so.1 lib/libclanGUI.a +lib/libclanGUI.la lib/libclanGUI.so -lib/libclanGUI.so.0.6.3 -lib/libclanGUI.so.2 -lib/libclanJPEG.a -lib/libclanJPEG.so -lib/libclanJPEG.so.0.6.3 -lib/libclanJPEG.so.2 -lib/libclanMikMod.a -lib/libclanMikMod.so -lib/libclanMikMod.so.0.6.3 -lib/libclanMikMod.so.2 +lib/libclanGUIStyleSilver-0.8.so +lib/libclanGUIStyleSilver-0.8.so.1 +lib/libclanGUIStyleSilver.a +lib/libclanGUIStyleSilver.la +lib/libclanGUIStyleSilver.so +%%LIBMIKMOD%%lib/libclanMikMod-0.8.so +%%LIBMIKMOD%%lib/libclanMikMod-0.8.so.1 +%%LIBMIKMOD%%lib/libclanMikMod.a +%%LIBMIKMOD%%lib/libclanMikMod.la +%%LIBMIKMOD%%lib/libclanMikMod.so +lib/libclanNetwork-0.8.so +lib/libclanNetwork-0.8.so.1 lib/libclanNetwork.a +lib/libclanNetwork.la lib/libclanNetwork.so -lib/libclanNetwork.so.0.6.3 -lib/libclanNetwork.so.2 -lib/libclanPNG.a -lib/libclanPNG.so -lib/libclanPNG.so.0.6.3 -lib/libclanPNG.so.2 -lib/libclanSmallJPEG.a -lib/libclanSmallJPEG.so -lib/libclanSmallJPEG.so.0.6.3 -lib/libclanSmallJPEG.so.2 +%%SDL%%lib/libclanSDL-0.8.so +%%SDL%%lib/libclanSDL-0.8.so.1 +%%SDL%%lib/libclanSDL.a +%%SDL%%lib/libclanSDL.la +%%SDL%%lib/libclanSDL.so +lib/libclanSignals-0.8.so +lib/libclanSignals-0.8.so.1 +lib/libclanSignals.a +lib/libclanSignals.la +lib/libclanSignals.so +lib/libclanSound-0.8.so +lib/libclanSound-0.8.so.1 lib/libclanSound.a +lib/libclanSound.la lib/libclanSound.so -lib/libclanSound.so.0.6.3 -lib/libclanSound.so.2 -lib/libclanTTF.a -lib/libclanTTF.so -lib/libclanTTF.so.0.6.3 -lib/libclanTTF.so.2 -lib/libclanVorbis.a -lib/libclanVorbis.so -lib/libclanVorbis.so.0.6.3 -lib/libclanVorbis.so.2 -@dirrm include/ClanLib/Application -@dirrm include/ClanLib/Core/IOData -@dirrm include/ClanLib/Core/Math -@dirrm include/ClanLib/Core/Resources -@dirrm include/ClanLib/Core/System -@dirrm include/ClanLib/Core -@dirrm include/ClanLib/Display/Display -@dirrm include/ClanLib/Display/Font -@dirrm include/ClanLib/Display/Input -@dirrm include/ClanLib/Display/SurfaceProviders -@dirrm include/ClanLib/Display -@dirrm include/ClanLib/GL -@dirrm include/ClanLib/GUI -@dirrm include/ClanLib/JPEG -@dirrm include/ClanLib/MikMod -@dirrm include/ClanLib/Network -@dirrm include/ClanLib/PNG -@dirrm include/ClanLib/Signals -@dirrm include/ClanLib/SmallJPEG -@dirrm include/ClanLib/Sound/SoundFilters -@dirrm include/ClanLib/Sound/SoundProviders -@dirrm include/ClanLib/Sound -@dirrm include/ClanLib/TTF -@dirrm include/ClanLib/Vorbis -@dirrm include/ClanLib -%%PORTDOCS%%%%DOCSDIR%%/FAQ.html -%%PORTDOCS%%%%DOCSDIR%%/Images/clanlib_logo_small.gif -%%PORTDOCS%%%%DOCSDIR%%/Overview/2dapi.html -%%PORTDOCS%%%%DOCSDIR%%/Overview/Images/clanlib_logo_small.gif -%%PORTDOCS%%%%DOCSDIR%%/Overview/Images/font0.png -%%PORTDOCS%%%%DOCSDIR%%/Overview/Images/font1.png -%%PORTDOCS%%%%DOCSDIR%%/Overview/Images/font2.png -%%PORTDOCS%%%%DOCSDIR%%/Overview/Images/font3.png -%%PORTDOCS%%%%DOCSDIR%%/Overview/Images/font4.png -%%PORTDOCS%%%%DOCSDIR%%/Overview/Images/font5.png -%%PORTDOCS%%%%DOCSDIR%%/Overview/Images/font6.png -%%PORTDOCS%%%%DOCSDIR%%/Overview/Images/font_old0.png -%%PORTDOCS%%%%DOCSDIR%%/Overview/engine_design.html -%%PORTDOCS%%%%DOCSDIR%%/Overview/font_creation_new.html -%%PORTDOCS%%%%DOCSDIR%%/Overview/font_creation_old.html -%%PORTDOCS%%%%DOCSDIR%%/Overview/font_overview.html -%%PORTDOCS%%%%DOCSDIR%%/Overview/getting_started.html -%%PORTDOCS%%%%DOCSDIR%%/Overview/gui_overview.html -%%PORTDOCS%%%%DOCSDIR%%/Overview/index.html -%%PORTDOCS%%%%DOCSDIR%%/Overview/loading_graphics.html -%%PORTDOCS%%%%DOCSDIR%%/Overview/network_overview.html -%%PORTDOCS%%%%DOCSDIR%%/Overview/opengl_overview.html -%%PORTDOCS%%%%DOCSDIR%%/Overview/resource_overview.html -%%PORTDOCS%%%%DOCSDIR%%/Overview/signals.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/App_index.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_Assert.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_AssertListener.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_BMPProvider.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_BezierCurve.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_BezierSurface.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_Boolean.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_BrowseClient.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_BrowseMaster.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_BrowseServer.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_BufferedSocket.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_Button.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_CDAudio.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_CDDrive.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_Camera.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_Canvas.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_CheckBox.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_ClanApplication.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_ClipInfo.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_ClipRect.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_Color.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_Component.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_ComponentManager.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_ComponentMoveHandler.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_ComponentOptions.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_ComponentResizeHandler.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_ComponentStyle.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_ComponentType.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_ComponentType__SOptionType.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_ConsoleWindow.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_DatafileCompiler.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_DirectoryScanner.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_Display.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_DisplayCard.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_DynamicProvider.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_EchoFilter.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_Endian.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_Error.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_EventListener.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_EventTrigger.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_FadeFilter.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_FileDialog.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_Font.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_Font_Description.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_Frame.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_FunctionSlot_v0.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_GUIFileParser.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_GUIFileParser__ComponentInfo.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_GUIManager.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_IPAddress.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_IRCConnection.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_Image.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_Input.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_InputAxis.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_InputAxis_Basic.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_InputAxis_Group.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_InputBox.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_InputBuffer.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_InputButton.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_InputButtonToAxis_Analog.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_InputButtonToAxis_Digital.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_InputButton_Basic.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_InputButton_Group.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_InputCursor.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_InputDevice.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_InputHat.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_InputSource.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_InputSourceProvider.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_InputSourceProvider_File.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_InputSource_File.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_InputSource_Memory.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_InputSource_NetPacket.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_InputSource_NetStream.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_InputSource_Raw.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_InputSource_Socket.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_InputSource_Zipped.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_Integer.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_InverseEchoFilter.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_JPEGProvider.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_JPGDProvider.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_JSArguments.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_JSContext.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_JSError.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_JSObject.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_JSRuntime.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_JSValue.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_KeepAlive.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_Key.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_Keyboard.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_Label.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_LayoutManager.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_ListBox.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_ListItem.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_Lua.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_MIDI.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_MenuNode.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_MessageBox.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_Mouse.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_MouseCursor.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_MouseCursorProvider.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_Mutex.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_MutexSection.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_NetComputer.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_NetGroup.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_NetMessage.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_NetObject.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_NetObjectChannel.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_NetObject_Client.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_NetObject_Controller.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_NetObject_Server.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_NetPacket.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_NetSession.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_NetStream.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_NetVariables.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_Network.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_OpenGL.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_OutputSource.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_OutputSourceProvider.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_OutputSource_File.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_OutputSource_Memory.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_OutputSource_NetPacket.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_OutputSource_NetStream.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_OutputSource_Socket.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_OutputSource_Zipped.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_PCXProvider.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_PNGProvider.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_Palette.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_PixelData.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_PixelData_Palette.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_Point.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_PopupMenu.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_ProgressBar.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_RadioButton.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_RadioGroup.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_Raw.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_Rect.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_Resource.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_ResourceData.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_ResourceData_Boolean.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_ResourceData_Integer.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_ResourceData_Raw.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_ResourceData_String.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_ResourceManager.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_ResourceOption.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_ResourceOptions.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_ResourceSource_Surface.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_ResourceType.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_Runnable.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_Sample.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_Sample_RawData.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_Sample_RawData__WAVE_FORMAT.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_Sample__WAVE_FORMAT.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_ScrollBar.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_SetupCDAudio.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_SetupCore.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_SetupDisplay.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_SetupGL.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_SetupGUI.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_SetupJPEG.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_SetupMikMod.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_SetupNetwork.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_SetupPNG.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_SetupSound.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_SetupTTF.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_SetupVorbis.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_Signal_v0.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_Size.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_Slot.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_SlotBuffer_v0.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_SlotContainer.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_SlotParent_v0.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_Slot_Generic.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_Slot_v0.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_Socket.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_Sound.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_SoundBuffer.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_SoundBuffer_Session.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_SoundCard.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_SoundFilter.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_Sprite2Provider.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_SpriteProvider.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_SpriteSubarrayProvider.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_SpriteSubsectionProvider.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_StaticSoundProvider.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_StreamSoundProvider.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_StreamSoundProvider_Session.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_Streamed_MikModSample.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_Streamed_MikModSample_Session.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_Streamed_RawSample.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_Streamed_RawSample_Session.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_Streamed_WaveSample.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_Streamed_WaveSample_Session.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_Streamed_WaveSample_Session__WAVE_FORMAT.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_String.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_StyleManager.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_StyleManager_Default.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_SubChannel.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_Surface.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_SurfaceProvider.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_SurfaceProvider_32bpp.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_SurfaceProvider_Generic.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_System.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_TargaProvider.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_Target.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_Texture.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_Thread.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_Timer.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_TreeItem.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_TreeNode.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_TreeView.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_Vector.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_Vector2.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_VidMode.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_Viewpoint.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_VorbisSoundProvider.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/CL_Window.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/Core_index.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/Display_index.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/GL_index.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/GUI_index.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/JPEG_index.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/JavaScript_index.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/Lua_index.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/MIDI_index.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/MikMod_index.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/Network_index.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/PNG_index.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/Signal_index.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/Sound_index.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/TTF_index.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/Vorbis_index.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/class_index.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/cross_index.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/entire_class_index.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/html/global_index.html -%%PORTDOCS%%%%DOCSDIR%%/Reference/images/clanlib_light.gif -%%PORTDOCS%%%%DOCSDIR%%/Reference/images/eyeheader-main-green-a.gif -%%PORTDOCS%%%%DOCSDIR%%/Reference/images/eyeheader-main-green-b.gif -%%PORTDOCS%%%%DOCSDIR%%/Reference/images/eyeheader-main-orange-a.gif -%%PORTDOCS%%%%DOCSDIR%%/Reference/images/eyeheader-main-orange-b.gif -%%PORTDOCS%%%%DOCSDIR%%/Reference/images/eyeheader-main-purple-a.gif -%%PORTDOCS%%%%DOCSDIR%%/Reference/images/eyeheader-main-purple-b.gif -%%PORTDOCS%%%%DOCSDIR%%/Reference/images/eyeheader-main-yellow-a.gif -%%PORTDOCS%%%%DOCSDIR%%/Reference/images/eyeheader-main-yellow-b.gif -%%PORTDOCS%%%%DOCSDIR%%/index.html -%%PORTDOCS%%@dirrm %%DOCSDIR%%/Images -%%PORTDOCS%%@dirrm %%DOCSDIR%%/Overview/Images -%%PORTDOCS%%@dirrm %%DOCSDIR%%/Overview -%%PORTDOCS%%@dirrm %%DOCSDIR%%/Reference/html -%%PORTDOCS%%@dirrm %%DOCSDIR%%/Reference/images -%%PORTDOCS%%@dirrm %%DOCSDIR%%/Reference -%%PORTDOCS%%@dirrm %%DOCSDIR%% +%%LIBVORBIS%%lib/libclanVorbis-0.8.so +%%LIBVORBIS%%lib/libclanVorbis-0.8.so.1 +%%LIBVORBIS%%lib/libclanVorbis.a +%%LIBVORBIS%%lib/libclanVorbis.la +%%LIBVORBIS%%lib/libclanVorbis.so +libdata/pkgconfig/clanApp-0.8.pc +libdata/pkgconfig/clanCore-0.8.pc +libdata/pkgconfig/clanDisplay-0.8.pc +%%OPENGL%%libdata/pkgconfig/clanGL-0.8.pc +libdata/pkgconfig/clanGUI-0.8.pc +libdata/pkgconfig/clanGUIStyleSilver-0.8.pc +%%LIBMIKMOD%%libdata/pkgconfig/clanMikMod-0.8.pc +libdata/pkgconfig/clanNetwork-0.8.pc +%%SDL%%libdata/pkgconfig/clanSDL-0.8.pc +libdata/pkgconfig/clanSignals-0.8.pc +libdata/pkgconfig/clanSound-0.8.pc +%%LIBVORBIS%%libdata/pkgconfig/clanVorbis-0.8.pc +@dirrm include/ClanLib-0.8/ClanLib/Application +@dirrm include/ClanLib-0.8/ClanLib/Core/IOData +@dirrm include/ClanLib-0.8/ClanLib/Core/Math +@dirrm include/ClanLib-0.8/ClanLib/Core/Resources +@dirrm include/ClanLib-0.8/ClanLib/Core/System +@dirrm include/ClanLib-0.8/ClanLib/Core/XML +@dirrm include/ClanLib-0.8/ClanLib/Core +@dirrm include/ClanLib-0.8/ClanLib/Display/Collision +@dirrm include/ClanLib-0.8/ClanLib/Display/Providers +@dirrm include/ClanLib-0.8/ClanLib/Display +%%OPENGL%%@dirrm include/ClanLib-0.8/ClanLib/GL +@dirrm include/ClanLib-0.8/ClanLib/GUI +@dirrm include/ClanLib-0.8/ClanLib/GUIStyleSilver +%%LIBMIKMOD%%@dirrm include/ClanLib-0.8/ClanLib/MikMod +@dirrm include/ClanLib-0.8/ClanLib/Network/IRC +@dirrm include/ClanLib-0.8/ClanLib/Network/NetObjects +@dirrm include/ClanLib-0.8/ClanLib/Network/NetSession +@dirrm include/ClanLib-0.8/ClanLib/Network/NetVariables +@dirrm include/ClanLib-0.8/ClanLib/Network/Socket +@dirrm include/ClanLib-0.8/ClanLib/Network +%%SDL%%@dirrm include/ClanLib-0.8/ClanLib/SDL +@dirrm include/ClanLib-0.8/ClanLib/Signals +@dirrm include/ClanLib-0.8/ClanLib/Sound/SoundFilters +@dirrm include/ClanLib-0.8/ClanLib/Sound/SoundProviders +@dirrm include/ClanLib-0.8/ClanLib/Sound +%%LIBVORBIS%%@dirrm include/ClanLib-0.8/ClanLib/Vorbis +@dirrm include/ClanLib-0.8/ClanLib +@dirrm include/ClanLib-0.8