debian/0000755000000000000000000000000012255151421007164 5ustar debian/patches/0000755000000000000000000000000012255013261010612 5ustar debian/patches/series0000644000000000000000000000050012255013254012024 0ustar build_against_system_enet.patch link_against_system_libs.patch fix_desktop_file.patch remove_irrlicht_embedded_libs.patch # Irrlicht patches taken directly from irrlicht source package in Debian irrlicht/arch-support.diff irrlicht/use-system-libs.diff irrlicht/link-against-needed-libs.diff irrlicht/fix-hurd-ftbfs.diff debian/patches/remove_irrlicht_embedded_libs.patch0000644000000000000000000001104712255013224017654 0ustar Description: Remove embedded libraries in Irrlicht source (flagged by lintian) Since removing the subdirectories containing libjpeg/libpng/zlib/bzip2/lzma would make this patch way too large, this patch should be applied on top of rm -rf lib/irrlicht/source/Irrlicht/jpeglib/ rm -rf lib/irrlicht/source/Irrlicht/zlib/ rm -rf lib/irrlicht/source/Irrlicht/libpng/ rm -rf lib/irrlicht/source/Irrlicht/lzma/ rm -rf lib/irrlicht/source/Irrlicht/bzip2/ in debian/rules (e.g. in the clean target). Forwarded: no Author: Vincent Cheng Last-Update: 2013-12-19 --- a/lib/irrlicht/CMakeLists.txt +++ b/lib/irrlicht/CMakeLists.txt @@ -1,10 +1,6 @@ # CMakeLists.txt for Irrlicht in STK -include_directories(${CMAKE_CURRENT_SOURCE_DIR}/include/ - ${CMAKE_CURRENT_SOURCE_DIR}/source/Irrlicht/jpeglib - ${CMAKE_CURRENT_SOURCE_DIR}/source/Irrlicht/libpng - ${CMAKE_CURRENT_SOURCE_DIR}/source/Irrlicht/zlib - ${CMAKE_CURRENT_SOURCE_DIR}/source/Irrlicht/bzip2) +include_directories(${CMAKE_CURRENT_SOURCE_DIR}/include/) if(APPLE) include_directories(${CMAKE_CURRENT_SOURCE_DIR}/source/Irrlicht/MacOSX ${CMAKE_CURRENT_SOURCE_DIR}/source/Irrlicht) @@ -650,108 +646,6 @@ include/IBoneSceneNode.h include/IShaderConstantSetCallBack.h include/ITexture.h - - -source/Irrlicht/zlib/infback.c -source/Irrlicht/zlib/deflate.c -source/Irrlicht/zlib/zutil.c -source/Irrlicht/zlib/crc32.c -source/Irrlicht/zlib/gzread.c -source/Irrlicht/zlib/inffast.c -source/Irrlicht/zlib/uncompr.c -source/Irrlicht/zlib/inftrees.c -source/Irrlicht/zlib/inflate.c -source/Irrlicht/zlib/compress.c -source/Irrlicht/zlib/adler32.c -source/Irrlicht/zlib/gzwrite.c -source/Irrlicht/zlib/trees.c -source/Irrlicht/zlib/gzlib.c -source/Irrlicht/zlib/gzclose.c -source/Irrlicht/zlib/inffixed.h -source/Irrlicht/zlib/inffast.h -source/Irrlicht/zlib/zconf.h -source/Irrlicht/zlib/zutil.h -source/Irrlicht/zlib/inftrees.h -source/Irrlicht/zlib/deflate.h -source/Irrlicht/zlib/zlib.h -source/Irrlicht/zlib/inflate.h -source/Irrlicht/zlib/trees.h -source/Irrlicht/zlib/gzguts.h -source/Irrlicht/zlib/crc32.h - - -source/Irrlicht/jpeglib/jaricom.c -source/Irrlicht/jpeglib/jcapimin.c -source/Irrlicht/jpeglib/jcapistd.c -source/Irrlicht/jpeglib/jcarith.c -source/Irrlicht/jpeglib/jccoefct.c -source/Irrlicht/jpeglib/jccolor.c -source/Irrlicht/jpeglib/jcdctmgr.c -source/Irrlicht/jpeglib/jchuff.c -source/Irrlicht/jpeglib/jcinit.c -source/Irrlicht/jpeglib/jcmainct.c -source/Irrlicht/jpeglib/jcmarker.c -source/Irrlicht/jpeglib/jcmaster.c -source/Irrlicht/jpeglib/jcomapi.c -source/Irrlicht/jpeglib/jcparam.c -source/Irrlicht/jpeglib/jcprepct.c -source/Irrlicht/jpeglib/jcsample.c -source/Irrlicht/jpeglib/jctrans.c -source/Irrlicht/jpeglib/jdapimin.c -source/Irrlicht/jpeglib/jdapistd.c -source/Irrlicht/jpeglib/jdarith.c -source/Irrlicht/jpeglib/jdatadst.c -source/Irrlicht/jpeglib/jdatasrc.c -source/Irrlicht/jpeglib/jdcoefct.c -source/Irrlicht/jpeglib/jdcolor.c -source/Irrlicht/jpeglib/jddctmgr.c -source/Irrlicht/jpeglib/jdhuff.c -source/Irrlicht/jpeglib/jdinput.c -source/Irrlicht/jpeglib/jdmainct.c -source/Irrlicht/jpeglib/jdmarker.c -source/Irrlicht/jpeglib/jdmaster.c -source/Irrlicht/jpeglib/jdmerge.c -source/Irrlicht/jpeglib/jdpostct.c -source/Irrlicht/jpeglib/jdsample.c -source/Irrlicht/jpeglib/jdtrans.c -source/Irrlicht/jpeglib/jerror.c -source/Irrlicht/jpeglib/jfdctflt.c -source/Irrlicht/jpeglib/jfdctfst.c -source/Irrlicht/jpeglib/jfdctint.c -source/Irrlicht/jpeglib/jidctflt.c -source/Irrlicht/jpeglib/jidctfst.c -source/Irrlicht/jpeglib/jidctint.c -source/Irrlicht/jpeglib/jmemmgr.c -source/Irrlicht/jpeglib/jmemnobs.c -source/Irrlicht/jpeglib/jquant1.c -source/Irrlicht/jpeglib/jquant2.c -source/Irrlicht/jpeglib/jutils.c - - -source/Irrlicht/libpng/pngwutil.c -source/Irrlicht/libpng/pngget.c -source/Irrlicht/libpng/pngrtran.c -source/Irrlicht/libpng/pngrutil.c -source/Irrlicht/libpng/pngerror.c -source/Irrlicht/libpng/pngset.c -source/Irrlicht/libpng/pngtest.c -source/Irrlicht/libpng/pngmem.c -source/Irrlicht/libpng/pngpread.c -source/Irrlicht/libpng/png.c -source/Irrlicht/libpng/pngread.c -source/Irrlicht/libpng/pngwio.c -source/Irrlicht/libpng/pngtrans.c -source/Irrlicht/libpng/pngwrite.c -source/Irrlicht/libpng/pngwtran.c -source/Irrlicht/libpng/example.c -source/Irrlicht/libpng/pngrio.c -source/Irrlicht/libpng/png.h -source/Irrlicht/libpng/pngdebug.h -source/Irrlicht/libpng/pngconf.h -source/Irrlicht/libpng/pngpriv.h -source/Irrlicht/libpng/pnginfo.h -source/Irrlicht/libpng/pnglibconf.h -source/Irrlicht/libpng/pngstruct.h ) if(APPLE) debian/patches/irrlicht/0000755000000000000000000000000012254777365012457 5ustar debian/patches/irrlicht/link-against-needed-libs.diff0000644000000000000000000000156312254777152020042 0ustar From: Christoph Egger Subject: [PATCH] debian/link-against-needed-libs There are quite some libraries irrlicht needs but does not link against. This patch makes irrlicht link correctly against all the needed libraries. Signed-off-by: Christoph Egger --- lib/irrlicht/source/Irrlicht/Makefile | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) --- a/lib/irrlicht/source/Irrlicht/Makefile +++ b/lib/irrlicht/source/Irrlicht/Makefile @@ -88,7 +88,7 @@ LIB_PATH = ../../lib/$(SYSTEM) INSTALL_DIR = /usr/local/lib sharedlib install: SHARED_LIB = libIrrlicht.so -sharedlib: LDFLAGS += -L/usr/X11R6/lib$(LIBSELECT) -lGL -lXxf86vm +staticlib sharedlib: LDFLAGS += -L/usr/X11R6/lib$(LIBSELECT) -lGL -lXxf86vm -lX11 -lz -lpng -ljpeg -lbz2 staticlib sharedlib: CXXINCS += -I/usr/X11R6/include #OSX specific options debian/patches/irrlicht/use-system-libs.diff0000644000000000000000000002055412254766451016356 0ustar Subject: [PATCH] debian/use-system-libs Path to build irrlicht using the system libraries for png,zlib and jpeg as well as the glext family of header files. Signed-off-by: Christoph Egger #ifdef _IRR_OPENGL_USE_EXTPOINTER_ -#include "glxext.h" +#include #endif #endif --- a/lib/irrlicht/source/Irrlicht/COpenGLExtensionHandler.h +++ b/lib/irrlicht/source/Irrlicht/COpenGLExtensionHandler.h @@ -36,7 +36,7 @@ #endif #include #if defined(_IRR_OPENGL_USE_EXTPOINTER_) - #include "glext.h" + #include #endif #elif defined(_IRR_COMPILE_WITH_SDL_DEVICE_) && !defined(_IRR_COMPILE_WITH_X11_DEVICE_) #if defined(_IRR_OPENGL_USE_EXTPOINTER_) @@ -49,7 +49,7 @@ #define NO_SDL_GLEXT #include #include - #include "glext.h" + #include #else #if defined(_IRR_OPENGL_USE_EXTPOINTER_) #define GL_GLEXT_LEGACY 1 @@ -61,9 +61,9 @@ #include #include #if defined(_IRR_OPENGL_USE_EXTPOINTER_) - #include "glext.h" + #include #undef GLX_ARB_get_proc_address // avoid problems with local glxext.h - #include "glxext.h" + #include #endif #endif --- a/lib/irrlicht/source/Irrlicht/COpenGLSLMaterialRenderer.h +++ b/lib/irrlicht/source/Irrlicht/COpenGLSLMaterialRenderer.h @@ -25,7 +25,7 @@ #include #endif #if defined(_IRR_OPENGL_USE_EXTPOINTER_) - #include "glext.h" + #include #endif #endif --- a/lib/irrlicht/source/Irrlicht/Makefile +++ b/lib/irrlicht/source/Irrlicht/Makefile @@ -43,7 +43,7 @@ CImageWriterBMP.o CImageWriterJPG.o CImageWriterPCX.o CImageWriterPNG.o CImageWriterPPM.o CImageWriterPSD.o CImageWriterTGA.o IRRVIDEOOBJ = CVideoModeList.o CFPSCounter.o $(IRRDRVROBJ) $(IRRIMAGEOBJ) IRRSWRENDEROBJ = CSoftwareDriver.o CSoftwareTexture.o CTRFlat.o CTRFlatWire.o CTRGouraud.o CTRGouraudWire.o CTRNormalMap.o CTRStencilShadow.o CTRTextureFlat.o CTRTextureFlatWire.o CTRTextureGouraud.o CTRTextureGouraudAdd.o CTRTextureGouraudNoZ.o CTRTextureGouraudWire.o CZBuffer.o CTRTextureGouraudVertexAlpha2.o CTRTextureGouraudNoZ2.o CTRTextureLightMap2_M2.o CTRTextureLightMap2_M4.o CTRTextureLightMap2_M1.o CSoftwareDriver2.o CSoftwareTexture2.o CTRTextureGouraud2.o CTRGouraud2.o CTRGouraudAlpha2.o CTRGouraudAlphaNoZ2.o CTRTextureDetailMap2.o CTRTextureGouraudAdd2.o CTRTextureGouraudAddNoZ2.o CTRTextureWire2.o CTRTextureLightMap2_Add.o CTRTextureLightMapGouraud2_M4.o IBurningShader.o CTRTextureBlend.o CTRTextureGouraudAlpha.o CTRTextureGouraudAlphaNoZ.o CDepthBuffer.o CBurningShader_Raster_Reference.o -IRRIOOBJ = CFileList.o CFileSystem.o CLimitReadFile.o CMemoryFile.o CReadFile.o CWriteFile.o CXMLReader.o CXMLWriter.o CWADReader.o CZipReader.o CPakReader.o CNPKReader.o CTarReader.o CMountPointReader.o irrXML.o CAttributes.o lzma/LzmaDec.o +IRRIOOBJ = CFileList.o CFileSystem.o CLimitReadFile.o CMemoryFile.o CReadFile.o CWriteFile.o CXMLReader.o CXMLWriter.o CWADReader.o CZipReader.o CPakReader.o CNPKReader.o CTarReader.o CMountPointReader.o irrXML.o CAttributes.o IRROTHEROBJ = CIrrDeviceSDL.o CIrrDeviceLinux.o CIrrDeviceConsole.o CIrrDeviceStub.o CIrrDeviceWin32.o CIrrDeviceFB.o CLogger.o COSOperator.o Irrlicht.o os.o IRRGUIOBJ = CGUIButton.o CGUICheckBox.o CGUIComboBox.o CGUIContextMenu.o CGUIEditBox.o CGUIEnvironment.o CGUIFileOpenDialog.o CGUIFont.o CGUIImage.o CGUIInOutFader.o CGUIListBox.o CGUIMenu.o CGUIMeshViewer.o CGUIMessageBox.o CGUIModalScreen.o CGUIScrollBar.o CGUISpinBox.o CGUISkin.o CGUIStaticText.o CGUITabControl.o CGUITable.o CGUIToolBar.o CGUIWindow.o CGUIColorSelectDialog.o CDefaultGUIElementFactory.o CGUISpriteBank.o CGUIImageList.o CGUITreeView.o ZLIBOBJ = zlib/adler32.o zlib/compress.o zlib/crc32.o zlib/deflate.o zlib/inffast.o zlib/inflate.o zlib/inftrees.o zlib/trees.o zlib/uncompr.o zlib/zutil.o @@ -56,14 +56,14 @@ EXTRAOBJ = LINKOBJ = $(IRRMESHOBJ) $(IRROBJ) $(IRRPARTICLEOBJ) $(IRRANIMOBJ) \ $(IRRVIDEOOBJ) $(IRRSWRENDEROBJ) $(IRRIOOBJ) $(IRROTHEROBJ) \ - $(IRRGUIOBJ) $(ZLIBOBJ) $(JPEGLIBOBJ) $(LIBPNGOBJ) $(LIBAESGM) \ - $(BZIP2OBJ) $(EXTRAOBJ) + $(IRRGUIOBJ) $(LIBAESGM) \ + $(EXTRAOBJ) ############### #Compiler flags -CXXINCS = -I../../include -Izlib -Ijpeglib -Ilibpng +CXXINCS = -I../../include # -Izlib -Ijpeglib -Ilibpng CPPFLAGS += $(CXXINCS) -DIRRLICHT_EXPORTS=1 -CXXFLAGS += -Wall -pipe -fno-exceptions -fno-rtti -fstrict-aliasing +CXXFLAGS += -Wall -pipe -fno-exceptions -fstrict-aliasing ifndef NDEBUG CXXFLAGS += -g -D_DEBUG else @@ -154,6 +154,7 @@ mkdir -p $(INSTALL_DIR)/../include/irrlicht cp ../../include/*.h $(INSTALL_DIR)/../include/irrlicht/ cp $(LIB_PATH)/$(SHARED_FULLNAME) $(INSTALL_DIR) + cp $(LIB_PATH)/$(STATIC_LIB) $(INSTALL_DIR) cd $(INSTALL_DIR) && ln -s -f $(SHARED_FULLNAME) $(SONAME) cd $(INSTALL_DIR) && ln -s -f $(SONAME) $(SHARED_LIB) # ldconfig -n $(INSTALL_DIR) debian/patches/irrlicht/arch-support.diff0000644000000000000000000000312512212475654015727 0ustar From: Christoph Egger Subject: [PATCH] debian/arch-support Building on non-linux architectures currently fails with unpatched irrlicht because irrlicht tries to create Joystick support using linux-specific headers. However there's infrastructure to disable Joystick support, we just need to activate that on non-linux architectures. Additionally if built on a sparc machine irrlicht assumes wrongly it's a solaris system. We fix this wrong assumption as our sparc builds are all on linux. Finally irrlicht exceeds the size constraights for -fpic requiering to build with -fPIC. As upstream doesn't do that we need to fix this for sparc and s390 builds (powerPC?). Signed-off-by: Christoph Egger --- lib/irrlicht/include/IrrCompileConfig.h | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) --- a/lib/irrlicht/include/IrrCompileConfig.h +++ b/lib/irrlicht/include/IrrCompileConfig.h @@ -100,6 +100,10 @@ #if !defined(_IRR_WINDOWS_API_) && !defined(_IRR_OSX_PLATFORM_) #ifndef _IRR_SOLARIS_PLATFORM_ #define _IRR_LINUX_PLATFORM_ +#include + #if __BYTE_ORDER == __BIG_ENDIAN + #define __BIG_ENDIAN__ + #endif #endif #define _IRR_POSIX_API_ #define _IRR_COMPILE_WITH_X11_DEVICE_ @@ -778,11 +782,7 @@ #undef _IRR_WCHAR_FILESYSTEM #endif -#if defined(__sparc__) || defined(__sun__) -#define __BIG_ENDIAN__ -#endif - -#if defined(_IRR_SOLARIS_PLATFORM_) +#if defined(_IRR_SOLARIS_PLATFORM_) || defined(__FreeBSD_kernel__) || defined(__gnu_hurd__) #undef _IRR_COMPILE_WITH_JOYSTICK_EVENTS_ #endif debian/patches/irrlicht/fix-hurd-ftbfs.diff0000644000000000000000000000106412212475654016130 0ustar Description: Fix FTBFS on hurd sys/sysctl.h is not implemented on hurd, so don't include it if we're building Irrlicht on hurd. Author: Vincent Cheng Last-Update: 05-29-2012 --- a/lib/irrlicht/source/Irrlicht/COSOperator.cpp +++ b/lib/irrlicht/source/Irrlicht/COSOperator.cpp @@ -13,9 +13,11 @@ #include #ifndef _IRR_SOLARIS_PLATFORM_ #include +#if !defined(__gnu_hurd__) #include #endif #endif +#endif #if defined(_IRR_COMPILE_WITH_X11_DEVICE_) #include "CIrrDeviceLinux.h" debian/patches/fix_desktop_file.patch0000644000000000000000000000234512254766451015174 0ustar Description: Fix various issues found in desktop menu entry file - Fix issue found by desktop-file-validate (deprecated Encoding key) - Make translations less specific to localization. See Debian BTS #667640 - Original .desktop file in past STK versions on Debian had extra fields in Categories, which ended up showing STK's menu entry in multiple locations; remove these extra fields. See LP: #709987 Forwarded: http://sourceforge.net/apps/trac/supertuxkart/ticket/632 http://sourceforge.net/apps/trac/supertuxkart/ticket/841 Bug-Debian: http://bugs.debian.org/667640 Bug-Ubuntu: https://bugs.launchpad.net/bugs/709987 Last-Update: 2012-12-28 --- a/data/supertuxkart_desktop.template +++ b/data/supertuxkart_desktop.template @@ -2,10 +2,10 @@ Name=SuperTuxKart Icon=@PREFIX@/share/pixmaps/supertuxkart_128.png GenericName=A kart racing game -GenericName[de_DE]=Ein Kart-Rennspiel -GenericName[fr_FR]=Un jeu de karting +GenericName[de]=Ein Kart-Rennspiel +GenericName[fr]=Un jeu de karting GenericName[gl]=Xogo de carreiras con karts -GenericName[ro_RO]=Un joc de curse cu carturi +GenericName[ro]=Un joc de curse cu carturi Exec=@PREFIX@/@STK_INSTALL_BINARY_DIR@/supertuxkart --no-console Terminal=false StartupNotify=false debian/patches/link_against_system_libs.patch0000644000000000000000000000104112254766451016726 0ustar Description: Link against system copies of zlib/libpng/libjpeg/bzip2 Forwarded: not-yet Author: Vincent Cheng Last-Update: 2012-12-29 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -231,7 +231,13 @@ ${OGGVORBIS_LIBRARIES} ${IRRLICHT_XF86VM_LIBRARY} ${OPENAL_LIBRARY} - ${OPENGL_LIBRARIES}) + ${OPENGL_LIBRARIES} + X11 + z + png + jpeg + bz2 +) if(APPLE) # In theory it would be cleaner to let CMake detect the right dependencies. In practice, this means that if a OSX user has debian/patches/build_against_system_enet.patch0000644000000000000000000000342412254766451017101 0ustar Description: Build supertuxkart against system enet instead of embedded copy Forwarded: not-yet Author: Vincent Cheng Last-Update: 2012-12-28 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -40,10 +40,6 @@ add_subdirectory("${PROJECT_SOURCE_DIR}/lib/bullet") include_directories("${PROJECT_SOURCE_DIR}/lib/bullet/src") -# Build the ENet UDP network library -add_subdirectory("${PROJECT_SOURCE_DIR}/lib/enet") -include_directories("${PROJECT_SOURCE_DIR}/lib/enet/include") - # Build the irrlicht library add_subdirectory("${PROJECT_SOURCE_DIR}/lib/irrlicht") include_directories("${PROJECT_SOURCE_DIR}/lib/irrlicht/include") @@ -107,6 +103,10 @@ find_package(CURL REQUIRED) include_directories(${CURL_INCLUDE_DIRS}) +# ENet +find_package(ENet REQUIRED) +include_directories(${ENET_INCLUDE_DIR}) + # Fribidi if(USE_FRIBIDI) find_package(Fribidi) @@ -225,9 +225,9 @@ bulletdynamics bulletcollision bulletmath - enet stkirrlicht ${CURL_LIBRARIES} + ${ENET_LIBRARIES} ${OGGVORBIS_LIBRARIES} ${IRRLICHT_XF86VM_LIBRARY} ${OPENAL_LIBRARY} --- /dev/null +++ b/cmake/FindENet.cmake @@ -0,0 +1,22 @@ +# - Find ENet +# Find the ENet includes and libraries +# +# Following variables are provided: +# ENET_FOUND +# True if ENet has been found +# ENET_INCLUDE_DIR +# The include directories of ENet +# ENET_LIBRARIES +# ENet library list + + +find_path(ENET_INCLUDE_DIR enet/enet.h /usr/include) +find_library(ENET_LIBRARY NAMES enet PATHS /usr/lib) + +include(FindPackageHandleStandardArgs) +find_package_handle_standard_args(ENet DEFAULT_MSG ENET_INCLUDE_DIR ENET_LIBRARY) + +# Publish variables +set(ENET_INCLUDE_DIRS ${ENET_INCLUDE_DIR}) +set(ENET_LIBRARIES ${ENET_LIBRARY}) +mark_as_advanced(ENET_INCLUDE_DIR ENET_LIBRARY) debian/source/0000755000000000000000000000000012212475654010476 5ustar debian/source/lintian-overrides0000644000000000000000000000020412212475654014053 0ustar # We use cmake to build supertuxkart; autotools no longer supported by upstream supertuxkart source: outdated-autotools-helper-file debian/source/format0000644000000000000000000000001412212475654011704 0ustar 3.0 (quilt) debian/changelog0000644000000000000000000003131312255151157011045 0ustar supertuxkart (0.8.1-2) unstable; urgency=medium * Disable support for wiimote input devices on !linux (since libbluetooth-dev is only built on linux archs). * Restrict build-dep libbluetooth-dev to linux-any. -- Vincent Cheng Fri, 20 Dec 2013 14:58:35 -0800 supertuxkart (0.8.1-1) unstable; urgency=low * Team upload [ Alexander Reichle-Schmehl ] * Removed myself from uploaders. [ Gianfranco Costamagna ] * New upstream release, patch refresh * Bumped std-version to 3.9.5, no changes required * Added libbluetooth-dev * Added lib/irrlicht/lib/Linux/libIrrlicht.a to debian/clean target * Moved images from xpm to png, since upstream has changed them [ Vincent Cheng ] * Run wrap-and-sort -sa * Re-added xpm icon for debian/menu. * Fix lintian error embedded-library (libjpeg, libpng, zlib). -- Vincent Cheng Thu, 19 Dec 2013 23:18:54 -0800 supertuxkart (0.8-2) unstable; urgency=low * Upload to unstable. * Add override for outdated-autotools-helper-file (cmake is used instead). * Fix lintian warning vcs-field-not-canonical. -- Vincent Cheng Sun, 05 May 2013 19:26:37 -0700 supertuxkart (0.8-1) experimental; urgency=low * New upstream release. - Use embedded/forked copy of irrlicht; refer to debian/README.source for details. Also import patches used in Debian's irrlicht source package. - Remove build-depends on libirrlicht-dev. - Add build-depends on zlib1g-dev, libbz2-dev, libpng-dev, libjpeg-dev, mesa-common-dev. - Remove backport_cmake.patch and build_with_irrlicht_1.8.patch; applied upstream. - Refresh remaining patches. * Bump Standards version to 3.9.4, no changes required. -- Vincent Cheng Fri, 28 Dec 2012 22:45:14 -0800 supertuxkart (0.7.3-2+exp1) experimental; urgency=low * Upload to experimental. * Build with irrlicht 1.8. - This should fix segfaults related to irrlicht 1.7.3 in supertuxkart, commonly triggered through the use of power-ups during races. (Closes: #677609; LP: #1011180, LP: #1048284, LP: #1049398, LP: #1061436, LP: #1064019, LP: #1069871) - This also fixes incorrect rendering of Suzanne's kart. (Closes: #679837) - Update build-depends on libirrlicht-dev (>= 1.8). - Drop patch debian/patches/build_with_irrlicht_1.7.3.patch and add debian/patches/build_with_irrlicht_1.8.patch. * Add new package supertuxkart-dbg containing debugging symbols. -- Vincent Cheng Fri, 16 Nov 2012 08:22:15 -0800 supertuxkart (0.7.3-2) unstable; urgency=low * Switch buildsystem to cmake (upstream has deprecated their autotools build system). - Drop build-depends on autotools-dev, automake, dh-autoreconf. - Add build-depends on cmake (>= 2.8.1). - Refresh debian/patches/build_against_system_enet.patch. - Add debian/patches/backport_cmake.patch to backport fixes to STK's CMake build system (and to make it easier to build against system enet). * Install hi-res icon and use it in STK's desktop menu entry. (LP: #937976) * Enable parallel building. -- Vincent Cheng Thu, 31 May 2012 17:23:37 -0700 supertuxkart (0.7.3-1) unstable; urgency=low * Team upload. [ Alexander Reichle-Schmehl ] * New upstream release (Closes: #634019, LP: #871630) * Fix watchfile to ignore release candidates * Refresh patches/build-against-system-enet.patch * Drop patches/enet1.3.patch (Applied upstream) [ Vincent Cheng ] * Add myself to Uploaders. * Add debian/patches/build_with_irrlicht_1.7.3.patch to enable build with latest stable version of irrlicht rather than an unreleased SVN revision. * Bump versioned dependency on libirrlicht-dev to (>= 1.7.3). * Update debian/rules to dh 7 "rules.tiny" style. * Add build-depends on dh-autoreconf and use autoreconf sequence in debian/rules. * Add build-depends on libcurl4-gnutls-dev | libcurl4-dev, libfribidi-dev, libxxf86vm-dev. * Add missing DEP-3 headers to patches. * Source tarball is now DFSG-clean. - Remove unneeded get-orig-source target in debian/rules. - Remove unneeded get-orig-source.sh and README.source. * Remove unneeded *.xpm icons in debian/. * Remove unused lintian-overrides file. * Remove unneeded debian/supertuxkart.desktop menu file (use menu file in data/supertuxkart_desktop.template instead). - Add debian/patches/fix_desktop_file.patch to add Debian/Ubuntu-specific changes to menu file (and forward patch upstream). (Closes: #667640; LP: #709987) * "Modernize" package description, as suggested by an upstream dev. (LP: #774345); remove reference to GotM. (Closes: #531637) * Bump dh compat level from 7 to 9. * Bump standards version from 3.8.3 to 3.9.3 (no changes needed). -- Vincent Cheng Fri, 04 May 2012 18:36:07 -0700 supertuxkart (0.7+dfsg1-2) unstable; urgency=low * drop 3DGraphics from desktop file (LP: #532065) * Apply patch by Ansgar Burchardt to build against enet 1.3 (Closes: #617783) -- Christoph Egger Thu, 17 Mar 2011 21:08:17 +0100 supertuxkart (0.7+dfsg1-1) unstable; urgency=low * New upstream release -- Christoph Egger Thu, 24 Feb 2011 22:36:25 +0100 supertuxkart (0.6.2+dfsg1-2) unstable; urgency=low * Change my E-Mail Address * Kill some whitespaces at the end of lines * Explicitly link against libGLU (Closes: #556477) taking the patch from Ubuntu * Remove KiBi from Uploaders on his request * Build against system libenet, makes stk build on GNU/kFreeBSD and is the right thing anyway * Add misc:Depends to -data package * Bump standards version from 3.8.3 to .4 (no changes needed) -- Christoph Egger Wed, 10 Mar 2010 23:51:14 +0100 supertuxkart (0.6.2+dfsg1-1) unstable; urgency=low * New Upstream Release * Only Bugfixes and minor improvements * Drop rubber.patch again as it was taken from 0.6.2 branch and is part of this release * Use replacement artwork from 0.6.1a * Silence horn.wav (Closes: #515332) * Bump Standards Version to 3.8.3 (No changes needed) * Bump debhelper compat to 7 for dh_prep * Update our copy of supertuxkart.desktop from upstreams, our changes will get pushed upstream as well. * Cleaning debian/rules a bit more -- Christoph Egger Sat, 22 Aug 2009 12:45:50 +0200 supertuxkart (0.6.1a+dfsg2-3) unstable; urgency=low * Move config.* out of the diff (Closes: #538617) * Clean up rules * lintian override for invalid spellchecker in binary * Bump standards Version without any changes * Reorder Categories in the desktop file (Closes: #443412) (LP: #329265) * Add rubber.patch so supertuxkart won't segfault in RubberBand::hit anymore. (Closes: #539964) -- Christoph Egger Mon, 03 Aug 2009 22:26:02 +0200 supertuxkart (0.6.1a+dfsg2-2) unstable; urgency=low [ Alexander Reichle-Schmehl ] * Adapt debian/control to my new name [ Cyril Brulebois ] * Update my mail address [ Christoph Egger ] * Fix get-orig-source rule * Fix watchfile * Unversion depends on plib (Closes: #516925) -- Christoph Egger Tue, 24 Feb 2009 15:31:32 +0100 supertuxkart (0.6.1a+dfsg2-1) unstable; urgency=low * Now use the correct tarball (was the old 0.5 by accident) -- Christoph Egger Sun, 22 Feb 2009 13:32:47 +0100 supertuxkart (0.6.1a+dfsg1-1) unstable; urgency=low [ Peter De Wachter ] * Added patch to check for SDL errors and to allow the game to run on low-end hardware (closes: #501116), (LP: #203144); Applied Upstream [ Christoph Egger ] * New Upstream Release (Closes: #512994), (LP: #319990) * Fix incorrect recreation of items * Correct Issue when restarting follow-the-leader game * Fix build with GCC 4.4 (Closes: #505671) * Drop all patches (now upstream) * Use $(QUILT_STAMPFN) insted of direct patch target for quilt make-snippet * Wrap Uploaders, Build-Depends * get-orig-source target * mangle watchfile correctly [ Stefan Potyra ] * debian/supertuxcart.sgml: fix dhusername entity. -- Christoph Egger Wed, 18 Feb 2009 18:13:28 +0100 supertuxkart (0.5+dfsg1-1) unstable; urgency=medium * urgency medium due to RC fix * Replacing nonfree stuff (Closes: #514416) * Improving debian/copyright * Update my Email address -- Christoph Egger Sun, 08 Feb 2009 19:38:27 +0100 supertuxkart (0.5-1.1) unstable; urgency=high * Non-maintainer upload. * DEB_BUILD_OPTIONS=noopt debian/rules now sets CXXFLAGS (closes: #490045) * Tighten up build-dep on plib1.8.4-dev (closes: #490052 as a side-effect) * urgency=high to fix RC bug in testing -- Vincent Fourmond Mon, 21 Jul 2008 00:34:36 +0200 supertuxkart (0.5-1) unstable; urgency=low * New upstream release (Closes: #484326) * Upstream no longer ships .desktop file So no need to remove it in rules * Bumping Standards Version to 3.8.0 * Adding debian/README.source * Adding myself to Uploaders * Fixing multiplayer bug (First player gets playerkart with best ranking after first map in grandprix * bug1996464.patch (from upstream bugtracker) -- Christoph Egger Thu, 19 Jun 2008 18:58:49 +0200 supertuxkart (0.4-1) unstable; urgency=low * New upstream release (Closes: #470552). * 10_fix_FTBFS_with_gcc-4.3.diff: + Patch for gcc-4.3 FTBFS is no longer needed (Closes: #455187). -- Sam Hocevar (Debian packages) Tue, 11 Mar 2008 22:52:53 +0000 supertuxkart (0.3-3) UNRELEASED; urgency=low * Introduce quilt patch system. * Fix FTBFS with gcc-4.3 (missing headers) by adding the following patch (Closes: #455187): + 10_fix_FTBFS_with_gcc-4.3.diff. * Remove obsolete “Encoding” key from debian/supertuxkart.desktop. * Add myself to the Uploaders. * Add two tiny items to debian/TODO. -- Cyril Brulebois Fri, 29 Feb 2008 01:03:20 +0100 supertuxkart (0.3-2) unstable; urgency=low [ Barry deFreese ] * Add watch file * Add Homepage field to control * Remove XS- from VCS fields [ Gonéri Le Bouder ] * fix spelling error in the description, thanks Philippe Cloutier and Filipus Klutier (Closes: #441419) [ Jon Dowland ] * add Homepage: control field to source stanza [ Alexander Schmehl ] * adding libvorbis-dev to build-depends, appearantly supertuxkart supports ogg vorbis; thanks to Lucas Nussbaum for detecting via build daemon from hell * removing Homepage: semie-headers from package descriptions * reformating long description to not be longer than 80 columns * debian/copyright refering to /usr/share/common-licenses/GPL-2 instead of GPL * Bumping standards version to 3.7.3: No changes needed -- Alexander Schmehl Tue, 29 Jan 2008 22:15:13 +0100 supertuxkart (0.3-1) unstable; urgency=low [ Gonéri Le Bouder ] * New upstream release - updated copyright file - new b-deps: libopenal-dev, libalut-dev, libmikmod2-dev * install the desktop file (Closes: 406873) * do not ignore the make distclean return anymore * versionned dependency against plib >= 1.8.4-8 because of #436917 [ Sam Hocevar ] * debian/control: + Remove leading “a”s from short descriptions. + Use ${source:Version} to make package binNMUable. + Added XS-Vcs-Svn field. [ Jon Dowland ] * update menu section to "Games/Action" for menu policy transition. Thanks Linas Žvirblis. [ Cyril Brulebois ] * Added XS-Vcs-Browser fields in the control file. -- Gonéri Le Bouder Thu, 9 Aug 2007 12:07:57 +0200 supertuxkart (0.2-1) unstable; urgency=low [ Gonéri Le Bouder ] * new upstream release candidate + Closes: #388021 + remove supertuxkart.sh + add supertuxkart(|-data).install + clean up + remove deps on ${shlibs:Depends}, ${misc:Depends} for supertuxkart-data * fix French comment was tagged de_DE * fix not-binnmuable-any-depends-all * fix FTBFS on 64bit arch + Closes: #370810 [ Eddy Petrişor ] * added Romanian translation to desktop file -- Gonéri Le Bouder Fri, 8 Sep 2006 22:59:25 +0200 supertuxkart (0.0.0.1-2) unstable; urgency=low * supertuxkart-data architecture fixed to all * fix circular dependency * better description for supertuxkart-data Closes: #370673 -- Gonéri Le Bouder Tue, 6 Jun 2006 13:09:38 +0200 supertuxkart (0.0.0.1-1) unstable; urgency=low * Initial release Closes: #366199 -- Gonéri Le Bouder Sat, 6 May 2006 02:15:26 +0000 debian/clean0000644000000000000000000000113412254770042010175 0ustar config.log config.sub config.guess Makefile.in aclocal.m4 configure data/supertuxkart.desktop data/Makefile.in data/fonts/Makefile.in data/grandprix/Makefile.in data/items/Makefile.in data/karts/Makefile.in data/models/Makefile.in data/music/Makefile.in data/po/Makefile.in data/sfx/Makefile.in data/textures/Makefile.in data/tracks/Makefile.in debian/supertuxkart.6 depcomp doc/Makefile.in install-sh lib/irrlicht/lib/Linux/libIrrlicht.a missing src/Makefile.in src/bullet/Demos/OpenGL/Makefile.in src/bullet/Makefile.in src/bullet/src/Makefile.in src/enet/Makefile.in src/ide/Makefile.in sources.cmake debian/compat0000644000000000000000000000000212212475654010374 0ustar 9 debian/control0000644000000000000000000000724712255150713010604 0ustar Source: supertuxkart Section: games Priority: optional Maintainer: Debian Games Team Uploaders: Sam Hocevar , Christoph Egger , Vincent Cheng Build-Depends: cmake (>= 2.8.1), debhelper (>= 9), docbook-to-man, libalut-dev, libbluetooth-dev [linux-any], libbz2-dev, libcurl4-gnutls-dev | libcurl4-dev, libenet-dev (>= 1.3.1), libfribidi-dev, libjpeg-dev, libopenal-dev, libpng-dev, libsdl-image1.2-dev, libsdl-ttf2.0-dev, libvorbis-dev, libxxf86vm-dev, mesa-common-dev, zlib1g-dev Standards-Version: 3.9.5 Vcs-Svn: svn://anonscm.debian.org/pkg-games/packages/trunk/supertuxkart/ Vcs-Browser: http://anonscm.debian.org/viewvc/pkg-games/packages/trunk/supertuxkart/ Homepage: http://supertuxkart.sourceforge.net/ Package: supertuxkart Architecture: any Depends: supertuxkart-data (= ${source:Version}), ${misc:Depends}, ${shlibs:Depends} Description: 3D kart racing game SuperTuxKart is a free 3D kart racing game, with a focus on having fun over realism. You can play with up to 4 friends on one PC, racing against each other or just trying to beat the computer; single-player mode is also available. . See the great lighthouse or drive through the sand and visit the pyramids. Race underground or in space, watching the stars pass by. Or rest under the palm trees on the beach, watching the other karts overtake you. But don't eat the bananas! Watch for bowling balls, plungers, bubble gum and cakes thrown by your opponents. . You can do a single race against other karts, compete in one of several Grand Prix, try to beat the high score in time trials on your own, play battle mode against your friends, and more! Package: supertuxkart-data Architecture: all Suggests: supertuxkart Depends: ${misc:Depends} Description: 3D kart racing game (data) SuperTuxKart is a free 3D kart racing game, with a focus on having fun over realism. You can play with up to 4 friends on one PC, racing against each other or just trying to beat the computer; single-player mode is also available. . See the great lighthouse or drive through the sand and visit the pyramids. Race underground or in space, watching the stars pass by. Or rest under the palm trees on the beach, watching the other karts overtake you. But don't eat the bananas! Watch for bowling balls, plungers, bubble gum and cakes thrown by your opponents. . You can do a single race against other karts, compete in one of several Grand Prix, try to beat the high score in time trials on your own, play battle mode against your friends, and more! . This package contains data files for the game supertuxkart. Package: supertuxkart-dbg Section: debug Priority: extra Architecture: any Depends: supertuxkart (= ${binary:Version}), ${misc:Depends}, ${shlibs:Depends} Description: 3D kart racing game (debug) SuperTuxKart is a free 3D kart racing game, with a focus on having fun over realism. You can play with up to 4 friends on one PC, racing against each other or just trying to beat the computer; single-player mode is also available. . See the great lighthouse or drive through the sand and visit the pyramids. Race underground or in space, watching the stars pass by. Or rest under the palm trees on the beach, watching the other karts overtake you. But don't eat the bananas! Watch for bowling balls, plungers, bubble gum and cakes thrown by your opponents. . You can do a single race against other karts, compete in one of several Grand Prix, try to beat the high score in time trials on your own, play battle mode against your friends, and more! . This package contains debugging symbols for the game supertuxkart. debian/copyright0000644000000000000000000013051412212475654011135 0ustar This package was debianized by Gonéri Le Bouder on Sat, 6 May 2006 02:15:26 +0000. Current maintainer is the Debian Games Team It was downloaded from http://supertuxkart.sourceforge.net/ The project leaders are: Joerg Henrichs (hiker) Eduardo Hernandez Munoz (coz) ### Copyright: Everything with no further Notice is For Supertuxkart: Copyright © 2004, 2006 Ingo Ruhnke Copyright © 2004 Matthias Braun Copyright © 2004-2007 Eduardo Hernandez Munoz Copyright © 2006-2009 Joerg Henrichs Copyright © 2006-2008 Patrick Ammann Copyright © 2007 Damien Morel Copyright © 2007-2008 Robert Schuster Copyright © 2007 Maik Semder Copyright © 2008 Paul Elms Copyright © 2004 James Gregory Copyright © 2004 Paul Carley Copyright © 2004 Craig Keogh Copyright © 2004 Pascal Giard Copyright © 2004 Caleb Sawtell Copyright © 2004 Ricardo Cruz Copyright © 2004 Oliver Jeeves Copyright © 2004 Jacob Persson Copyright © 2004 Willian Padovani Germano Copyright © 2007 Johannes Sjolund Copyright © 2007 Frederico de Oliveira Linhares Copyright © 2007 Christian Zigotzky Copyright © 2007 Canarix Copyright © 2004 SuperTuxKart Team Copyright © 2007-2009 Marianne Gagnon Copyright © 2002-2009 Nikolaus Gebhardt Copyright © 2008 Stephen Leak For Tuxkart (Supertuxkart is derived from Tuxkart Copyright © 2000-2002, 2004 Steve Baker Copyright © 2000 Oliver Baker Copyright © 2007 Matt Thomas Debian Packaging (debian/) Copyright © 2006,2007,2008 Gonéri Le Bouder Copyright © 2008 Alexander Schmehl Copyright © 2007,2008 Sam Hocevar Copyright © 2007,2008 Cyril Brulebois Copyright © 2008,2009 Christoph Egger Copyright © 2012 Vincent Cheng From Neverball (src/widget_set.cpp and src/widget_set.hpp) Copyright © 2003 Robert Kooima License: GNU GPL v2+ --- This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. On Debian systems, the complete text of the GPL license can be found in the /usr/share/common-licenses/GPL-2 file. ========== Bullet Physics (src/bullet/*) Copyright © 2003-2008 Erwin Coumans Copyright © 2003-2006 Gino van den Bergen Copyright © 2003-2006 Stan Melax Copyright © 2005-2007 Christer Ericson Copyright © 2005-2007 Simon Hobbs Copyright © 2005-2007 Ricardo Padrela Copyright © 2005-2007 F Richter(res) Copyright © 2005-2007 Stephane Redon License: Bullet --- Bullet Continuous Collision Detection and Physics Library This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. ========== data/grandprix ~~~~~~~~~~~~~~ All icons come from Open Game Art (art by onyum.com, comissionned by Bart Kelsey) released under CC-BY-SA 3+ * options_players & random_kart were tweaked by Marianne Gagnon Except : main_*.png icons, released under Creative-Commons BY-SA 3, By yeKcim (Anthony Carré) mode_tt, released under Creative-Commons BY-SA 3, incorporatings artwork from yeKcim and onyum.com Logo and Logo_slim : under CC-BY-SA 3.0+ by 'rastapax' difficulty_*.png icons, released under Creative-Commons BY-SA 3, By Conso (Constantin Pelikan) title_font, by Marianne Gagnon (Auria), released under CC-BY-SA 3+ screen*.png, by Marianne Gagnon (Auria), including elements from the public domain Tango icon set Glass Skin by Auria, under CC-BY-SA 3+ except background, under CC-BY-SA, by 'elisee' =========== data/karts ~~~~~~~~~~ Gnu : by Benjamin Arnaudet released under GNU GPL license Konqi: Konqi character, colormap.jpg, hanky.tga by basse With modifications by Marianne Gagnon Released under Gnu LGPL Kart by Christian Framing released under Gnu GPL KDE logo copyright the KDE project released under the Gnu GPL Adiumy : by abejones released under CC-BY-SA 3.0 Pidgin & Nolok : by Cheleb released under CC-BY-SA 3.0 Wilber and Elephpant : Wilber character, Elephpant character and Elephpant kart by Tobias Beyrer Released under CC-BY-SA 3.0 Wilber kart by Frederico de Oliveira, released under GPL Hexley : by Frederico de Oliveira released under GPL Puffy : By MiniBjorn released under CC-BY-SA 3.0 Gooey & Mozilla: originally by (??) from original (Super)TuxKart teams, with modifications by Rudy85 and Conso released under GNU GPL Tux : originally by (??) from original (Super)TuxKart teams released under GNU GPL Animations : by Rudy85 Cartoonish character icons : by Anthony Carré (yekcim), released under GPL 2 ========== data/models ~~~~~~~~~~~ * bowling.ac, plunger.ac, cake.ac, bomb.ac, anchor.ac created by MiniBjorn (c) 2008 released under Creative Commons Attribution-Share Alike 3.0 [http://creativecommons.org/licenses/by-sa/3.0/] * bubblegum.ac, nitrotank-big.ac, nitrotank-small.ac, giftbox.ac created by MiniBjorn (c) 2008 released under Creative Commons Attribution-Share Alike 3.0 [http://creativecommons.org/licenses/by-sa/3.0/] * banana.ac created by horace aka thomas oppl (toppl@fh-sbg.ac.at) (c) 2008 released under Creative Commons Attribution-Share Alike 3.0 [http://creativecommons.org/licenses/by-sa/3.0/] * chest* by MiniBjorn (c) 2010 released under Creative Commons Attribution-Share Alike 3.0 [http://creativecommons.org/licenses/by-sa/3.0/] * village released under CC-BY-SA 3.0 [http://creativecommons.org/licenses/by-sa/3.0/] oak by Julius Krischan Makowka, released un CC-BY-SA 3.0 mushrooms by pfunked, with modifications by Marianne Gagnon, released under CC-BY-SA 3.0 pinos by Moser Juan José, with minor modifications by Marianne Gagnon, released under CC-BY-SA 3.0 scene and finishing touches by Marianne Gagnon * shroom_color* textures by Julius Krischan Makowka, released un CC-BY-SA 3.0 * door.png by Marianne Gagnon, released under CC-BY-SA 3.0, based on a public domain image from BurningWell. Others are GPL. ========== data/music ~~~~~~~~~~ The songs are released under GNU GPL, except : SkyVibe-HighFrequency.ogg -------------------- Speedsound: CC-BY-SA v3.0 modified by Constantin Pelikan MayDayMayham.ogg -------------------- Alessandro Bottura: CC-SA v3.0 modified by Constantin Pelikan ChillCarrier-Druckverlust.ogg -------------------- Chill Carrier: CC-SA v3.0 g4m-fan-track.ogg ----------------- Paul Esra Martin, license: CC-SA v3.0 Boom_boom_boom.ogg ------------------ Matt Thomas, license: GNU GPL v3 (or later) kart_grand_prix.ogg Win Theme Lose Theme -------------------- Weirwood, license: CC TheDeadRocks-EasyJob.ogg TheDeadRocks-GreenSecretFromAmazonia.ogg TheDeadRocks-OneMillionDollar.ogg ---------------- The Dead Rocks, license: CC-BY-SA v3.0 dance_cleopatra.ogg ---------------- ZamalSka, license: CC-BY-SA v3.0 Origin.ogg ---------------- by Jahzzar, released under CC-BY-SA 3.0 Symphony #5 ----------- Daniel Bautista license : CC-BY-SA 3.0 OnTheRiver.ogg -------------- by Bluepiano (http://www.jamendo.com/en/album/50394) with modifications by Magne Djupvik license : CC-BY-SA 3.0 Snowy.ogg --------- Music made by Chris Leutwyler (Krobonil) Released under CC-SA. (Creative Commons - Share Alike) ========== data/sfx ~~~~~~~~ * anvil Released under the GPL by the "Battle For Wesnoth" project * bzzt Released under the GNU GPL, coming from original (Super)TuxKart * crash obtained from : http://www.freesoundfiles.tintagel.net/Audio/ (see license text below) * energy_bar_full obtained from : http://www.freesoundfiles.tintagel.net/Audio/ (see license text below) * engine_large Released under the Free Art License by the TORCS project "http://torcs.sourceforge.net/" * explosion Released under the GNU GPL, coming from original (Super)TuxKart * grab_collectable obtained from : http://www.freesoundfiles.tintagel.net/Audio/ (see license text below) * horn Released under the Creative Commons BY (Attribution) 3.0 Recorded by Mike Koenig, with modifications by Marianne Gagnon (Auria) * last lap fanfare by Dundersylt released under CC-BY-SA 3.0+ * locked By "Stephan" from pdsounds.org (license is public domain) * pre_start_race obtained from : http://www.freesoundfiles.tintagel.net/Audio/ (see license text below) * skid Released under Creative Commons Attribution - Share Alike License 3.0 by Atheal Washington and Stephen Dunn (stevo14) * start_race obtained from : http://www.freesoundfiles.tintagel.net/Audio/ (see license text below) * swap By "Stephan" from pdsounds.org (license is public domain) * track start by Dundersylt released under CC-BY-SA 3.0+ * ugh Released under the GNU GPL, coming from original (Super)TuxKart * Wooden bridge from pdsounds.org, edited by Marianne Gagnon released under public domain. * wee Released under the GNU GPL, coming from original (Super)TuxKart ______________________________________________________________________________________________________ Tintagel license : | These sound files are provided free of charge, without any representation or warranty whatsoever. | To the best of our knowledge, all wave, midi, and audio files presented here are in the public | domain and are available for use without restriction. ========== data/textures ~~~~~~~~~~~~~ All textures in this directory are licensed under GPL except : ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Under Creative Commons Attribution Share-Alike (CC-BY-SA) - http://creativecommons.org/licenses/by-sa/3.0/ : * palmtree3 © 2009 Gregory Schick , Christoph Egger and Marianne Gagnon (Auria) * beige_bricks.jpg, bumpy_surface.png, yellow_dirt.png by Dakal (http://dakal-fr.deviantart.com/, http://opengameart.org/user/300) licensed under the Creative Commons Attribution-Share Alike 3.0 Unported License * cup_*, speedback, speedfore by yeKcim (Anthony Carré) * purplenebula* by Marianne Gagnon (Auria) * roof, concrete2, garagedoor by Marianne Gagnon (Auria), based on public domain photos from BurningWell * racetrack_tire.png, city_buildings_3.png, city_brick_1.png, canyon_boards.png * banana, city_asphalt, city_concrete, city_checker, city_metal, city_sky* * track, track2 by Thomas Oppl (horace) toppl@fh-sbg.ac.at (c) 2008 * road_dirt by Marianne Gagnon (Auria) and MiniBjorn * oakbark and oaklef by Julius Krischan Makowka, released under CC-BY-SA 3.0 * pino and pino2 by Moser Juan José, released under CC-BY-SA 3.0 * earth, logs, rock, sand, sea, signs, water_light, notes by Marianne Gagnon (Auria) * bowling, plunger, cake, bubblegum, flaring-star, nitro-tank, nitro-metal, chest, gift-box, gift-loop, tank-cyan, tank-blue, tank-green, plunger-icon, bubblegum-icon, cake-icon, bowling-icon, tnt-bomb, nitro-particle, smoke, anchor, anchor-icon, sand2, explode, sky2 created by MiniBjorn (c) 2008-2010 * plungerface created by MiniBjorn (c) 2008 and Conso * grass2, grass2dirt, dirt2sand created by Christoph Egger , Marianne Gagnon (Auria) and MiniBjorn * wheel created by Andreas Bilng (c) 2008, with Tuxicon by Enrico Billing (c) 2008 released under Creative Commons Attribution-Share Alike 3.0 Germany [http://creativecommons.org/licenses/by-sa/3.0/de/deed.en] * icon_frame by jmimu released under CC-BY-SA 3.0 * TiZeta_ivy http://commons.wikimedia.org/wiki/File:Conlon_Ivy.JPG, by Found5dollar * TiZeta_barkM http://commons.wikimedia.org/wiki/File:Apple_box_bark.jpg, by Benjamint444 * Tiles.png, concrete_plain.png, grass4.png, toll_roof.png, wall_rock.png by Ivar ten Cate (Varivar), released under CC-BY-SA (varivar@gmail.com) * HortonRockWall.png * HortonRockWall2.png * HortonStone6.png * Paving_stones_2.png by Marianne Gagnon, made from public domain images from BurningWell and released under CC-BY-SA 3 Other licenses : ~~~~~~~~~~~~~~~~ * skyscraper* Copyright Robert Howie 2008. licensed under the Creative Commons Attribution-Share Alike 3.0 Unported License. * gui_lock.png by the Tango icon project, released under public domain * Tizeta_grey1.png Based on pictures from from burningwell (released under public domain) * cottage_wall1.jpg, cottage_wall2.jpg, cottage_wall3.jpg and wood_planks1.png are textures from burningwell.org (public domain) modified by Varivar * ceramic, hacienda_ground, lantern, woodBridge, sky, woodPost based on pictures from BurningWell, modified by jean-manuel clemençon (SamUncle), released under public domain * palmbark and palm_b by Clark Thames (http://www.tutorialsforblender3d.com/Models/Trees/PalmTree_1.html) released under Creative Commons Attribution 3.0 Unported License ========== data/tracks ~~~~~~~~~~~ canyon: canyon track (c) 2008 thomas oppl (toppl@fh-sbg.ac.at) licensed under CC BY-SA 3.0 http://creativecommons.org/licenses/by-sa/3.0/ cave: Released under CC-BY-SA 3.0 By MacIO . New images, grass and retexturing By MiniBjorn . sky.png taken from racktrack by thomas oppl (CC BY-SA 3.0) crescentcrossing: This track is released under the GNU GPL except : . * grass_dark by Christoph Egger , Marianne Gagnon (Auria) and MiniBjorn released under CC-BY-SA 3.0+ . * nightsky1 and nightsky2, owl by Marianne Gagnon released under CC-BY-SA 3.0+ . * roof which is derivated from City track (c) 2008 thomas oppl (toppl@fh-sbg.ac.at) licensed under CC BY-SA 3.0 http://creativecommons.org/licenses/by-sa/3.0/ . * plants By MiniBjorn, under Creative Commons CC-BY-SA 3.0+ . * grave By qubodup, West and KroArtem Released under Creative Commons CC-BY-SA 3.0+ farm: Model by to Ville Seppanen and Marianne Gagnon released under Creative Commons BY-SA 3.0 (http://creativecommons.org/licenses/by/3.0/) . Well model and well texture by Sean Greene (Iconoclast) released under public domain . corn.png based on image by Jonathunder with modifications by Marianne Gagnon CC-BY-SA 3 unported . hay.png based on public domain image by Scott Bauer and TT7001749 from BurningWell, with modifications by Marianne Gagnon, released under CC-BY-SA 3.0+ . barn_wall, barn_window, leaf.png, earth.png based on burningwell.org (public domain) images modified by Varivar and Marianne Gagnon, released under CC-BY-SA 3.0+ . leave3.png : by Krzysztof P. Jasiutowicz retrieved from http://commons.wikimedia.org/wiki/File:Lisc_lipy.jpg, released under CC-BY-SA 3.0 . clouds in skycube by nicubunu, released in public domain . gnarly tools and gnarly tool texture by Clint Bellanger released under CC-BY-SA 3.0 . Wheat picture by Tarquin Released under CC-BY-SA 3.0 Unported . Trail texture by Marianne Gagnon based on public domain image from Burningwell released under CC-BY-SA 3.0 sandtrack: olivermath: lighthouse: fortmagna: Released under GNU GPL. hacienda: author: jean-manuel clemençon aka samuncle version: 0.5b re (c) 2010 supertuxkart . Well model and well texture by Sean Greene (Iconoclast) released under public domain . Fork texture based on work by Clint Bellanger released under CC-BY-SA 3.0 . Trail texture based on work by Marianne Gagnon based on public domain image from Burningwell released under CC-BY-SA 3.0 . Textures based on pictures from burningwell canyon.png, electroPost.png, mill.png, millstructure.png wall.png, wind_mill.png, wood_i.png, wood_l.png released under public domain . sageBrush.png, drysageBrush.png based on photograph by Ragesoss http://commons.wikimedia.org/wiki/File:Small_twisted_sagebrush.jpg Released CC-BY-SA 3 . palmacacia.png by Yorik from http://yorik.uncreated.net/greenhouse.html released under CC-BY 3.0 . lanternDetail.png, light.png, pix.png, wire.png, grass.png and all other models by Jean-Manuel Clemençon (Samuncle; http://samuncle.toile-libre.org/) released under CC-BY-SA 3.0 islandtrack: rock*.jpg, road_sand*.jpg, road_sand_side.png MiniBjorn, released under CC-BY-SA 3.0 . islandtrack_signs.ac, turn_sharp_24med.png by Pixel (Wayne Dennis), released under Creative Commons Attribution - Share Alike 3.0 (This has been combined with the track model) . the track model itself is releasd under GPL. jungle: Released under GPL. . mossy_stone.png, mossy_stone2.png, obelisk.png, bush.png and some models : from the http://www.titusgames.de GLEST jungle set released under GPL . Amazon Jungle music by Auria released under CC-BY-SA 3.0 mines: "Old Mine" track (c) 2008-2010 Ivar ten Cate (varivar@live.nl) Track and textures licensed under CC BY-SA 3.0 http://creativecommons.org/licenses/by-sa/3.0/ scottland: Released under CC-BY-SA 3 : -water_dark.png based on image by Marianne Gagnon, modified by Canis Lupus -rock_grey.png based on image by Marianne Gagnon, modified by Canis Lupus -rock_darkgrey.png based on image by Marianne Gagnon, modified by Canis Lupus -wood_planks2-7 based on image by Varivar, modified by Canis Lupus -DoorOld.png based on image by Varivar, modified by Canis Lupus -Tileroof.png by Marianne Gagnon (Auria), based on public domain photos from BurningWell -brick1.png by Marianne Gagnon (Auria), based on public domain image from BurningWell -Sky_horiz_17.png by MiniBjorn -Window4.png by Canis Lupus, incorporating brick texture by Thomas Oppl -leaves2.png from "King Weird's Castle" in STK 0.6, author unknown -Phoque_Plane.png by Rudy Phelippeau . Textures by Marianne Gagnon, made from public domain images from BurningWell and released under CC-BY-SA 3 . -Mossy_wall.png -HortonStone7.png -NessyGreen.png -NessyDarkGreen.png -Factory4b by Ivar ten Cate, license unclear :'( . Released under GNU GPL : -bush3.png based on image from the http://www.titusgames.de GLEST jungle set, modified by Canis Lupus -zipper_collect.png from original STK team . Character icons in following images by Anthony Carré (yekcim), released under GPL 2; with modifications by Lupus Canis -Puffy_bar.png from karts/puffy -gnu_bar.png from karts/gnu -Tux_inn.png with tinytux -mozillas_pub.png from karts/mozillas . Made by Canis Lupus, released under CC-BY-SA 3 -scotland.blend -pub2.png -Public_Phone_Box.png -POD_Pillar -Flag_of_Scotland.png -Door4.png -Window5.png -Window6.png -WindowOld.png -pub1.png secretgarden: Reused with different colors from supertuxkart/data/textures: -water_light2 (water_light is the original) -water_light3 -bow (from stk0.5) -rock_grey (rock is the original) -rock_lightgrey -rock_white . Selfmade parts and under GPL and CC-BY-SA, by Canis Lupus : - flower4 - invisible - Cactus1 - leave1 - leave4 - pot - pumkin . Based on pictures from from burningwell (released under public domain) : - flower1 - Bleech - leave2 - Mossy_wall . from wikimedia : -flower2 (http://commons.wikimedia.org/wiki/File:Cosmos_bipinnatus_06_ies.jpg, CC-BY-SA 3.0, by Frank Vincentz) -flower3 (http://commons.wikimedia.org/wiki/File:Aster_Tataricus.JPG, CC-BY-SA 3.0 unported, by Pascalou Petit) -flower5 (http://commons.wikimedia.org/wiki/File:Avutil%C3%B3n_GDFL16.JPG, CC-BY-SA 3.0, by Luis Miguel Bugallo Sánchez) -flower6 (http://commons.wikimedia.org/wiki/File:Zephyranthes_candida2.jpg, CC-BY-SA 3.0, by KENPEI's photo) -flower7 (http://commons.wikimedia.org/wiki/File:Flor_GDFL_03.JPG, CC-BY-SA 3.0, by Luis Miguel Bugallo Sánchez) -Cucurbita_pepo_04 (http://commons.wikimedia.org/wiki/File:Montes.JPG, CC-BY-SA 3.0, by Wilfredo R Rodriguez H) - Trifolium_repens_07_ies (http://commons.wikimedia.org/wiki/File:Trifolium_repens_07_ies.jpg CC-BY-SA 3.0, by Frank Vincentz) - leave3 (http://commons.wikimedia.org/wiki/File:Lisc_lipy.jpg, CC-BY-SA 3.0, by Krzysztof P. Jasiutowicz) - TiZeta_stalkM (http://commons.wikimedia.org/wiki/File:Dwarf_cavendish_leaf.JPG, CC-BY-SA 3.0, by Ben Clough) - Greenhouse-Palm-jubaea01 based on image by Forest & Kim Starr, with modifications by Marianne Gagnon Released under CC-BY 3.0 - Palm-arecaceae based on image by José Reynaldo da Fonseca, with modifications by Marianne Gagnon Released under CC-BY-SA 3 from http://yorik.uncreated.net/greenhouse.html -Rose CC-BY 3.0 from http://blender-archi.tuxfamily.org/Textures -Sophora GPL from DJHelium: -secretgarden.ogg skyline: "Skyline" Copyright Robert Howie 2008. . This work is licensed under the Creative Commons Attribution-Share Alike 3.0 Unported License. To view a copy of this license, visit http://creativecommons.org/licenses/by-sa/3.0/ or send a letter to Creative Commons, 171 Second Street, Suite 300, San Francisco, California, 94105, USA. snowmountain: Track by Canis Lupus Converted by sj04736 Reused with different colors from supertuxkart/data/textures: -snow2 (snow is the original) -roadway2 (roadway is the original) -roadwayborder (roadway is the original) -stonesgray (stones is the original) Selfmade parts and under GPL and CC-BY-SA) -rockmountain -window2 -windowshutters -snowmountain.ac -snowmountain.blend winter sky textures (c) 2010 thomas oppl (toppl@fh-sbg.ac.at) licensed under CC BY-SA 3.0 http://creativecommons.org/licenses/by-sa/3.0/ snowtuxpeak: original track released under GNU GPL. Track converted to Irrlight format by Ivar ten Cate cottage_wall1.jpg, cottage_wall2.jpg, cottage_wall3.jpg and wood_planks1.png are modified textures from burningwell.org (public domain) stadium: racetrack (c) 2008 thomas oppl (toppl@fh-sbg.ac.at) Arena Mods by Pixel_2ACF3 (Wayne Dennis) licensed under CC BY-SA 3.0 http://creativecommons.org/licenses/by-sa/3.0/ startrack: This track, and the startrack2 / startrack3 textures are released under the GNU GPL version 2 (or later). ~~ all planet-texture-maps were taken from Celestia (www.shatters.net/celestia/) and are licensed under the GPL. ~~ purplenebula_* by Marianne Gagnon (Auria), release under CC-BY-SA 3.0 ~~ Adding all planets and the sun and creating the Saturn-rings-Texture done by A.Billing (Needer) based on work from the initial (Super)TuxKart contributors. tuxtollway: Tux tollway (c) 2008 Ivar ten Cate (varivar@gmail.com) licensed under CC BY-SA 3.0 http://creativecommons.org/licenses/by-sa/3.0/ xr591: Creative-Commons-BY-SA 3.0 metal_ground.jpg - by MiniBjorn, based on http://www.burningwell.org/gallery2/v/textures/surfaces/P1170598.JPG.html road_dirt_red - with parts by MiniBjorn sandred* - based on work by MiniBjorn arrws.png - by Marianne Gagnon arc1.png - based on picture by Mike Switzerland, found on Wikimedia Commons, with modifications by Marianne Gagnon arc2.png - based on picture by Axel Rouvin (Attribution license), found on Wikimedia Commons, with modifications by Marianne Gagnon Reused with different colors from supertuxkart/data/textures (see their individual licenses) : -acid_lake.jpg (lava.jpg is the original) -marscity_cyan.jpg (lava.jpg is the original) -rockred.jpg (rock.jpg is the original) -marsrobot2.jpg (track.jpg is the original) -sandred.jpg (sand2 is the original) -sandred2.jpg (sand2 is the original) -mars_lava2.jpg (lava2 is the original) -mars_lava3.jpg (lava2 is the original) -stars.jpg is from startrack marscity_yellow{,2}.jpg is based on Public Domain Work from burningwell with modifications © 2009 Christoph Egger Released under 3 licenses, at your choice : * ZLib License * GNU GPL Version 2 or later * Creative Commons 3.0 BY from NASA (public domain) : jupiter.jpg, galaxy1.jpg, galaxy2.jpg, saturn.jpg, erde.jpg, mars.jpg, venus.jpg http://commons.wikimedia.org/wiki/Jupiter http://commons.wikimedia.org/wiki/Category:Galaxies http://commons.wikimedia.org/wiki/Image:Saturn_(planet)_large.jpg http://commons.wikimedia.org/wiki/Image:As08-16-2593.jpg http://commons.wikimedia.org/wiki/Image:Mars_Hubble.jpg http://commons.wikimedia.org/wiki/Image:Venus_globe.jpg Selfmade parts are dual-licensed under both GPL and CC-BY-SA laser_bridge_green.jpg laser_bridge_red.jpg marscity_blue*.jpg marscity_red*.jpg marscity_cyan.jpg marscity_green*.jpg marscity_orange*.jpg marsroad_blue.jpg marsroad_blue2.jpg marsroad_green.jpg marsroad_red.jpg marsrobot1.jpg marsrobot3.jpg marsrobot4.jpg marsrobot5.jpg marsrobotsign.jpg marssnail.jpg welcome_to_XR591.jpg marswindow*.jpg marstrack.ac marstrack.blend ========== License: Creative Commons by-sa 3.0 --- THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE MAY BE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. 1. Definitions a. "Adaptation" means a work based upon the Work, or upon the Work and other pre-existing works, such as a translation, adaptation, derivative work, arrangement of music or other alterations of a literary or artistic work, or phonogram or performance and includes cinematographic adaptations or any other form in which the Work may be recast, transformed, or adapted including in any form recognizably derived from the original, except that a work that constitutes a Collection will not be considered an Adaptation for the purpose of this License. For the avoidance of doubt, where the Work is a musical work, performance or phonogram, the synchronization of the Work in timed-relation with a moving image ("synching") will be considered an Adaptation for the purpose of this License. b. "Collection" means a collection of literary or artistic works, such as encyclopedias and anthologies, or performances, phonograms or broadcasts, or other works or subject matter other than works listed in Section 1(f) below, which, by reason of the selection and arrangement of their contents, constitute intellectual creations, in which the Work is included in its entirety in unmodified form along with one or more other contributions, each constituting separate and independent works in themselves, which together are assembled into a collective whole. A work that constitutes a Collection will not be considered an Adaptation (as defined above) for the purposes of this License. c. "Distribute" means to make available to the public the original and copies of the Work or Adaptation, as appropriate, through sale or other transfer of ownership. d. "Licensor" means the individual, individuals, entity or entities that offer(s) the Work under the terms of this License. e. "Original Author" means, in the case of a literary or artistic work, the individual, individuals, entity or entities who created the Work or if no individual or entity can be identified, the publisher; and in addition (i) in the case of a performance the actors, singers, musicians, dancers, and other persons who act, sing, deliver, declaim, play in, interpret or otherwise perform literary or artistic works or expressions of folklore; (ii) in the case of a phonogram the producer being the person or legal entity who first fixes the sounds of a performance or other sounds; and, (iii) in the case of broadcasts, the organization that transmits the broadcast. f. "Work" means the literary and/or artistic work offered under the terms of this License including without limitation any production in the literary, scientific and artistic domain, whatever may be the mode or form of its expression including digital form, such as a book, pamphlet and other writing; a lecture, address, sermon or other work of the same nature; a dramatic or dramatico-musical work; a choreographic work or entertainment in dumb show; a musical composition with or without words; a cinematographic work to which are assimilated works expressed by a process analogous to cinematography; a work of drawing, painting, architecture, sculpture, engraving or lithography; a photographic work to which are assimilated works expressed by a process analogous to photography; a work of applied art; an illustration, map, plan, sketch or three-dimensional work relative to geography, topography, architecture or science; a performance; a broadcast; a phonogram; a compilation of data to the extent it is protected as a copyrightable work; or a work performed by a variety or circus performer to the extent it is not otherwise considered a literary or artistic work. g. "You" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation. h. "Publicly Perform" means to perform public recitations of the Work and to communicate to the public those public recitations, by any means or process, including by wire or wireless means or public digital performances; to make available to the public Works in such a way that members of the public may access these Works from a place and at a place individually chosen by them; to perform the Work to the public by any means or process and the communication to the public of the performances of the Work, including by public digital performance; to broadcast and rebroadcast the Work by any means including signs, sounds or images. i. "Reproduce" means to make copies of the Work by any means including without limitation by sound or visual recordings and the right of fixation and reproducing fixations of the Work, including storage of a protected performance or phonogram in digital form or other electronic medium. 2. Fair Dealing Rights. Nothing in this License is intended to reduce, limit, or restrict any uses free from copyright or rights arising from limitations or exceptions that are provided for in connection with the copyright protection under copyright law or other applicable laws. 3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below: a. to Reproduce the Work, to incorporate the Work into one or more Collections, and to Reproduce the Work as incorporated in the Collections; b. to create and Reproduce Adaptations provided that any such Adaptation, including any translation in any medium, takes reasonable steps to clearly label, demarcate or otherwise identify that changes were made to the original Work. For example, a translation could be marked "The original work was translated from English to Spanish," or a modification could indicate "The original work has been modified."; c. to Distribute and Publicly Perform the Work including as incorporated in Collections; and, d. to Distribute and Publicly Perform Adaptations. e. For the avoidance of doubt: i. Non-waivable Compulsory License Schemes. In those jurisdictions in which the right to collect royalties through any statutory or compulsory licensing scheme cannot be waived, the Licensor reserves the exclusive right to collect such royalties for any exercise by You of the rights granted under this License; ii. Waivable Compulsory License Schemes. In those jurisdictions in which the right to collect royalties through any statutory or compulsory licensing scheme can be waived, the Licensor waives the exclusive right to collect such royalties for any exercise by You of the rights granted under this License; and, iii. Voluntary License Schemes. The Licensor waives the right to collect royalties, whether individually or, in the event that the Licensor is a member of a collecting society that administers voluntary licensing schemes, via that society, from any exercise by You of the rights granted under this License. The above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. Subject to Section 8(f), all rights not expressly granted by Licensor are hereby reserved. 4. Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions: a. You may Distribute or Publicly Perform the Work only under the terms of this License. You must include a copy of, or the Uniform Resource Identifier (URI) for, this License with every copy of the Work You Distribute or Publicly Perform. You may not offer or impose any terms on the Work that restrict the terms of this License or the ability of the recipient of the Work to exercise the rights granted to that recipient under the terms of the License. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties with every copy of the Work You Distribute or Publicly Perform. When You Distribute or Publicly Perform the Work, You may not impose any effective technological measures on the Work that restrict the ability of a recipient of the Work from You to exercise the rights granted to that recipient under the terms of the License. This Section 4 (a) applies to the Work as incorporated in a Collection, but this does not require the Collection apart from the Work itself to be made subject to the terms of this License. If You create a Collection, upon notice from any Licensor You must, to the extent practicable, remove from the Collection any credit as required by Section 4(b), as requested. If You create an Adaptation, upon notice from any Licensor You must, to the extent practicable, remove from the Adaptation any credit as required by Section 4(b), as requested. b. If You Distribute, or Publicly Perform the Work or any Adaptations or Collections, You must, unless a request has been made pursuant to Section 4(a), keep intact all copyright notices for the Work and provide, reasonable to the medium or means You are utilizing: (i) the name of the Original Author (or pseudonym, if applicable) if supplied, and/or if the Original Author and/or Licensor designate another party or parties (e.g., a sponsor institute, publishing entity, journal) for attribution ("Attribution Parties") in Licensor's copyright notice, terms of service or by other reasonable means, the name of such party or parties; (ii) the title of the Work if supplied; (iii) to the extent reasonably practicable, the URI, if any, that Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work; and (iv) , consistent with Section 3 (b), in the case of an Adaptation, a credit identifying the use of the Work in the Adaptation (e.g., "French translation of the Work by Original Author," or "Screenplay based on original Work by Original Author"). The credit required by this Section 4 (b) may be implemented in any reasonable manner; provided, however, that in the case of a Adaptation or Collection, at a minimum such credit will appear, if a credit for all contributing authors of the Adaptation or Collection appears, then as part of these credits and in a manner at least as prominent as the credits for the other contributing authors. For the avoidance of doubt, You may only use the credit required by this Section for the purpose of attribution in the manner set out above and, by exercising Your rights under this License, You may not implicitly or explicitly assert or imply any connection with, sponsorship or endorsement by the Original Author, Licensor and/or Attribution Parties, as appropriate, of You or Your use of the Work, without the separate, express prior written permission of the Original Author, Licensor and/or Attribution Parties. c. Except as otherwise agreed in writing by the Licensor or as may be otherwise permitted by applicable law, if You Reproduce, Distribute or Publicly Perform the Work either by itself or as part of any Adaptations or Collections, You must not distort, mutilate, modify or take other derogatory action in relation to the Work which would be prejudicial to the Original Author's honor or reputation. Licensor agrees that in those jurisdictions (e.g. Japan), in which any exercise of the right granted in Section 3(b) of this License (the right to make Adaptations) would be deemed to be a distortion, mutilation, modification or other derogatory action prejudicial to the Original Author's honor and reputation, the Licensor will waive or not assert, as appropriate, this Section, to the fullest extent permitted by the applicable national law, to enable You to reasonably exercise Your right under Section 3(b) of this License (right to make Adaptations) but not otherwise. 5. Representations, Warranties and Disclaimer UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU. 6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 7. Termination a. This License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Adaptations or Collections from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License. b. Subject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above. 8. Miscellaneous a. Each time You Distribute or Publicly Perform the Work or a Collection, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License. b. Each time You Distribute or Publicly Perform an Adaptation, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License. c. If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. d. No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent. e. This License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You. f. The rights granted under, and the subject matter referenced, in this License were drafted utilizing the terminology of the Berne Convention for the Protection of Literary and Artistic Works (as amended on September 28, 1979), the Rome Convention of 1961, the WIPO Copyright Treaty of 1996, the WIPO Performances and Phonograms Treaty of 1996 and the Universal Copyright Convention (as revised on July 24, 1971). These rights and subject matter take effect in the relevant jurisdiction in which the License terms are sought to be enforced according to the corresponding provisions of the implementation of those treaty provisions in the applicable national law. If the standard suite of rights granted under applicable copyright law includes additional rights not granted under this License, such additional rights are deemed to be included in the License; this License is not intended to restrict the license of any rights under applicable law. debian/docs0000644000000000000000000000001412212475654010044 0ustar README TODO debian/menu0000644000000000000000000000025612212475654010070 0ustar ?package(supertuxkart):needs="X11"\ section="Games/Action"\ title="Supertuxkart"\ command="supertuxkart"\ icon="/usr/share/icons/hicolor/32x32/apps/supertuxkart.xpm" debian/README.source0000644000000000000000000000427712212475654011367 0ustar As of SuperTuxKart version 0.8, upstream developers have embedded a forked copy of Irrlicht into STK, which is now being used by this Debian package (as of 0.8-1, when build-depends on libirrlicht-dev was dropped). Rationale is as follows: - Upstream STK devs have made modifications to Irrlicht that they deem necessary for STK, which upstream Irrlicht has rejected [1]. Furthermore, in the future, STK devs plan on making more intrusive changes to Irrlicht, which may break the API [2]; more detailed explanation at [3]. - Past attempts to use Debian's version of Irrlicht in STK has been extremely troublesome due to upstream STK's usage of unreleased svn revisions of Irrlicht (e.g. Irrlicht r3843 for STK 0.7.3). Although I have tried to patch STK to use a system copy of Irrlicht in the past [4], this has caused a number of rendering bugs (e.g. [5]) and a large number of semi-random segfaults (e.g. [6][7][8][9][10][11][12]...), and is simply infeasible now that upstream STK devs plan on making more intrusive changes to Irrlicht. Note that the embedded copy of Irrlicht is built with Debian's zlib/bzip2/ libpng/libjpeg/glext instead of the embedded copies within the Irrlicht source code (which should address security concerns relating to embedding Irrlicht). If interested, a more thorough discussion on this topic can be reviewed on debian-devel-games, in this thread [13] (starting with [14]). [1] http://sourceforge.net/support/tracker.php?aid=3454889 [2] http://sourceforge.net/apps/trac/supertuxkart/ticket/689 [3] http://forum.freegamedev.net/viewtopic.php?f=17&t=3906 [4] http://sourceforge.net/apps/trac/supertuxkart/ticket/628 [5] http://bugs.debian.org/679837 [6] http://bugs.debian.org/677609 [7] https://bugs.launchpad.net/bugs/1011180 [8] https://bugs.launchpad.net/bugs/1048284 [9] https://bugs.launchpad.net/bugs/1049398 [10] https://bugs.launchpad.net/bugs/1061436 [11] https://bugs.launchpad.net/bugs/1064019 [12] https://bugs.launchpad.net/bugs/1069871 [13] http://lists.debian.org/debian-devel-games/2012/12/threads.html#00006 [14] http://lists.debian.org/debian-devel-games/2012/12/msg00006.html -- Vincent Cheng Fri, 28 Dec 2012 22:45:14 -0800 debian/rules0000755000000000000000000000565112255150234010254 0ustar #!/usr/bin/make -f ifeq ($(findstring parallel=,$(DEB_BUILD_OPTIONS)),) export DEB_BUILD_OPTIONS+=parallel=$(shell getconf _NPROCESSORS_ONLN) endif export DEB_LDFLAGS_MAINT_APPEND=-lGLU DEB_HOST_ARCH_OS ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_OS) %: dh $@ --buildsystem=cmake --parallel override_dh_auto_clean: $(MAKE) -C lib/irrlicht/source/Irrlicht clean # Remove embedded libraries from Irrlicht source rm -rf lib/irrlicht/source/Irrlicht/jpeglib/ rm -rf lib/irrlicht/source/Irrlicht/zlib/ rm -rf lib/irrlicht/source/Irrlicht/libpng/ rm -rf lib/irrlicht/source/Irrlicht/lzma/ rm -rf lib/irrlicht/source/Irrlicht/bzip2/ dh_auto_clean override_dh_auto_configure: # Generate sources.cmake sh update_file_list.sh # libbluetooth-dev is only available on linux, hence build with # wiimote input device support only on linux if [ $(DEB_HOST_ARCH_OS) = linux ]; then \ dh_auto_configure -- -DSTK_INSTALL_BINARY_DIR="games" \ -DSTK_INSTALL_DATA_DIR="share/games/supertuxkart"; \ else \ dh_auto_configure -- -DSTK_INSTALL_BINARY_DIR="games" \ -DSTK_INSTALL_DATA_DIR="share/games/supertuxkart" \ -DUSE_WIIUSE=OFF; \ fi override_dh_auto_build: # Generate manual page docbook-to-man debian/supertuxkart.sgml > debian/supertuxkart.6 # Build embedded irrlicht NDEBUG=1 $(MAKE) -C lib/irrlicht/source/Irrlicht staticlib dh_auto_build override_dh_install: # Licenses are all documented in debian/copyright find $(CURDIR)/debian/tmp \( -iname "License.txt" -o -iname \ "License.Debian.txt" -o -iname "Music_license.rtf" \) -delete rm -f $(CURDIR)/debian/tmp/usr/share/games/supertuxkart/data/tracks/overworld/licence2.txt # cmake installs some unneeded autotools-related files as well find $(CURDIR)/debian/tmp \( -iname "Makefile.am" -o -iname \ "Makefile.in" \) -delete # Remove unneeded (developer) scripts in data directory find $(CURDIR)/debian/tmp \( -iname "run_me.sh" -o -iname \ "optimize_data.sh" -o -iname "check.sh" \) -delete # Install xpm icons in /usr/share/pixmaps into /usr/share/icons/hicolor as # well. Also install hi-res icon into /usr/share/pixmaps. LP: #937976 install -m 644 $(CURDIR)/debian/tmp/usr/share/games/supertuxkart/data/gui/karts.png \ $(CURDIR)/debian/tmp/usr/share/pixmaps/supertuxkart.png mkdir -p $(CURDIR)/debian/tmp/usr/share/icons/hicolor/32x32/apps install -m 644 $(CURDIR)/debian/tmp/usr/share/pixmaps/supertuxkart_32.png \ $(CURDIR)/debian/tmp/usr/share/icons/hicolor/32x32/apps/supertuxkart.png mkdir -p $(CURDIR)/debian/tmp/usr/share/icons/hicolor/128x128/apps install -m 644 $(CURDIR)/debian/tmp/usr/share/pixmaps/supertuxkart_128.png \ $(CURDIR)/debian/tmp/usr/share/icons/hicolor/128x128/apps/supertuxkart.png install -m 644 $(CURDIR)/debian/supertuxkart.xpm \ $(CURDIR)/debian/tmp/usr/share/icons/hicolor/32x32/apps/supertuxkart.xpm dh_install override_dh_strip: dh_strip --dbg-package=supertuxkart-dbg debian/supertuxkart.install0000644000000000000000000000015712212475654013352 0ustar debian/tmp/usr/games debian/tmp/usr/share/applications debian/tmp/usr/share/icons debian/tmp/usr/share/pixmaps debian/supertuxkart.manpages0000644000000000000000000000002612212475654013472 0ustar debian/supertuxkart.6 debian/supertuxkart.sgml0000644000000000000000000001301212212475654012640 0ustar Goneri"> Le Bouder"> May 7, 2006"> 6"> <goneri@rulezlan.org>"> SUPERTUXKART"> Debian"> GNU"> GPL"> ]>
&dhemail;
&dhfirstname; &dhsurname; 2006 &dhusername; &dhdate;
&dhucpackage; &dhsection; &dhpackage; A Kart Game Featuring Tux and Friends &dhpackage; OPTIONS This program accepts some optional parameters. Quick race Start at track NAME (see --list-tracks) Show available tracks. Number of karts on the racetrack Use kart number NAME Show available karts. Define number of laps to n Define number of players to between 1 and 4. Enable reverse mode Enable mirror mode (when supported) Fullscreen display. Windowed display. (default) Set the screen size (e.g. 320x200) Show version FILES $(HOME)/.supertuxkart/ Configuration directory. AUTHOR This manual page was written by &dhusername; &dhemail; for the &debian; system (but may be used by others). Permission is granted to copy, distribute and/or modify this document under the terms of the &gnu; General Public License, Version 2 any later version published by the Free Software Foundation. On Debian systems, the complete text of the GNU General Public License can be found in /usr/share/common-licenses/GPL.
debian/supertuxkart.xpm0000644000000000000000000001057512254771261012514 0ustar /* XPM */ static char *supertuxkart[] = { /* columns rows colors chars-per-pixel */ "32 32 137 2 ", " c #000000", ". c #0C0101", "X c #0E0907", "o c #0B0A0A", "O c #1B0404", "+ c #140F0D", "@ c #131313", "# c #1C1C1C", "$ c #240606", "% c #2D0606", "& c #3A0707", "* c #3C0B0B", "= c #391105", "- c #201717", "; c #2E1714", ": c #331717", "> c #36311A", ", c #242424", "< c #2C2C2C", "1 c #2F302F", "2 c #333333", "3 c #3B3C3B", "4 c #450707", "5 c #4F0707", "6 c #410A0A", "7 c #570707", "8 c #580404", "9 c #570F0F", "0 c #5A0909", "q c #660202", "w c #6E0F0F", "e c #740D0D", "r c #790E0E", "t c #771111", "y c #7E1414", "u c #7F1818", "i c #473C08", "p c #584B0F", "a c #544A1A", "s c #7F5609", "d c gray26", "f c #4B4B4B", "g c #524F4F", "h c #555555", "j c #585858", "k c #634E48", "l c #615C43", "z c #675F5C", "x c gray40", "c c #6C6C6C", "v c #757575", "b c #797874", "n c #7C7C7C", "m c #970404", "M c #811414", "N c #841D14", "B c #951010", "V c #9E1212", "C c #94191A", "Z c #9B1B1A", "A c #A30B0B", "S c #AA090A", "D c #BC0606", "F c #B40E0E", "G c #B80808", "H c #AF110E", "J c #B4140F", "K c #A51616", "L c #AC1414", "P c #AF1913", "I c #A61B1B", "U c #A91B1A", "Y c #B11212", "T c #B51A1A", "R c #9C3434", "E c #B72121", "W c #B92424", "Q c #BD3434", "! c #C32708", "~ c #865E17", "^ c #BC4813", "/ c #A26F0B", "( c #BB7911", ") c #C26015", "_ c #CB7612", "` c #8E6F6F", "' c #867171", "] c #C14444", "[ c #C65A5A", "{ c #CD6666", "} c #CA6D6D", "| c #C1900E", " . c #C39908", ".. c #DAAC0C", "X. c #DFBA0B", "o. c #DEBC1C", "O. c #E5B50B", "+. c #E6BD0C", "@. c #D9BA28", "#. c #E8C10B", "$. c #E5C737", "%. c #EDCE3D", "&. c #938C77", "*. c #E7CE59", "=. c #EBD363", "-. c #F1DA71", ";. c #838384", ":. c #8B8B8B", ">. c #9B9C9C", ",. c #A08686", "<. c #A4A4A4", "1. c gray68", "2. c gray70", "3. c #BCBCBC", "4. c #CF8181", "5. c #C78989", "6. c #D08181", "7. c #D69898", "8. c #DCAFAF", "9. c #DBBFBF", "0. c #C6C6C6", "q. c #CFC4C4", "w. c #CBCBCB", "e. c #D6CECE", "r. c #DDCDCD", "t. c #D3D3D3", "y. c gainsboro", "u. c #E1C4C4", "i. c #ECE7CC", "p. c #F6EEC6", "a. c #E4E3E3", "s. c #EEEEEE", "d. c #F8F7EF", "f. c gray95", "g. c #F9F9F7", "h. c #F9F9F9", "j. c None", /* pixels */ "j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.", "j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.", "j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.", "j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.", "j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.", "j.j.j.j.j.j.j.j.j.j.j.j.j. j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.", "j.j.j.j.j.j.j.j.j.j.j.j. d o d j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.", "j.j.j.j.j.j.j.j.j.j.j.j. # v l v j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.", "j.j.j.j.j.j.j.j.j.j.j.j.. i @.#.o.~ j.j.j.j.j.j.j.j.j.j.j.j.j.j.", "j.j.j.S T 5.Z C Z Z C C O > =.+.$.&.R j.j.j.j.j.j.j.j.j.j.j.j.j.", "j.j.j.j.j.j.O - j.j.j.X j g.d.h.t.j.j.j.j.j.j.j.j.j.j.j.j.j.j.", "j.j.j.j.j.j.j.1 3 j.j.+ n f.s.w.w.2 j.j.j.j.j.j.j.j.j.j.j.j.j.", "j.j.j.j.j.j.v x 1 j.;. o 3.a.c 2.2.o j.j.j.j.j.j.j.j.j.j.j.j.", "j.j.j.j.j.3 @ < < , z < j n <.c x j.j.j.j.j.j.j.j.j.j.j.j.", "j.j.j.j.j.o o X : ; c j 3 c , @ f g . j.j.j.j.j.j.j.j.", "j.j. & K G 8 w.g.t.v c @ y.' K y $ j.j.j.j.j.j.j.j.", "j.o # 9 U P D q :.h.h.h.h.:.1.k ! P M * j.j.j.j.j.j.j.j.", "j.# # Z I U F m p *.%.-.p.i.a X.#.O.( Z M j.j.j.j.j.j.j.", "j., . K I I U J .+.+.+.+...| s / _ ) ^ H 6 j.j.j.", "j.j. r w 0 5 4 = N U U U I I K 6 I I I e o 2 j.j.", "j.j. . o O U U I I I I K I I U I 9 ` . j.j.", "j.j.j.j.j.j. n o V L I I I U U I I I I I I U V r & j.j.", "j.j.j.j.j.j.j., o % t U U L I U I U I K I U U K L H F F A j.", "j.j.j.j.j.j.j.o 8 B L Y Y Y Y L L L L L Y Y Y F Y Y E ] { 6.j.", "j.j.j.j.j.j.j. ,.] F F F Y J T W Q ] [ } 4.7.8.9.q.3.<.:.j.j.", "j.j.j.j.j.j.j. v a.u.u.r.r.e.w.0.3.1.>.:.v j j.j.j.j.j.j.j.j.", "j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.", "j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.", "j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.", "j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.", "j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.", "j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j." }; debian/supertuxkart-data.install0000644000000000000000000000003312212475654014252 0ustar debian/tmp/usr/share/games debian/watch0000644000000000000000000000017612212475654010233 0ustar version=3 opts=dversionmangle=s/\+dfsg\d+$//g \ http://sf.net/supertuxkart/supertuxkart-([\d\.]*)-src\.(?:tar\.(?:gz|bz2|xz))