diff options
author | Tristan Heaven <nyhm@gentoo.org> | 2006-12-06 19:41:20 +0000 |
---|---|---|
committer | Tristan Heaven <nyhm@gentoo.org> | 2006-12-06 19:41:20 +0000 |
commit | 01631fc66d2be16d2d2f5aabd85f55ae112970e5 (patch) | |
tree | b10154ea3e5248d2fcdbe1fa7f01a468895278b0 /dev-games/irrlicht/files | |
parent | Removing a comment that wasn't correct. (diff) | |
download | gentoo-2-01631fc66d2be16d2d2f5aabd85f55ae112970e5.tar.gz gentoo-2-01631fc66d2be16d2d2f5aabd85f55ae112970e5.tar.bz2 gentoo-2-01631fc66d2be16d2d2f5aabd85f55ae112970e5.zip |
Version bump
(Portage version: 2.1.2_rc2-r5)
Diffstat (limited to 'dev-games/irrlicht/files')
-rw-r--r-- | dev-games/irrlicht/files/digest-irrlicht-1.2 | 3 | ||||
-rw-r--r-- | dev-games/irrlicht/files/irrlicht-1.2-config.patch | 26 | ||||
-rw-r--r-- | dev-games/irrlicht/files/irrlicht-1.2-demoMake.patch | 14 |
3 files changed, 43 insertions, 0 deletions
diff --git a/dev-games/irrlicht/files/digest-irrlicht-1.2 b/dev-games/irrlicht/files/digest-irrlicht-1.2 new file mode 100644 index 000000000000..1fc86f002543 --- /dev/null +++ b/dev-games/irrlicht/files/digest-irrlicht-1.2 @@ -0,0 +1,3 @@ +MD5 caf1d610d1268ab2f9e53e45c7349bf8 irrlicht-1.2.zip 17278801 +RMD160 248f66108d4ff64d17460397131afd80e3729ab4 irrlicht-1.2.zip 17278801 +SHA256 e89184273e35168011c533c1a61cd9a5a6547f76ca7eee08ee677793db55bc9b irrlicht-1.2.zip 17278801 diff --git a/dev-games/irrlicht/files/irrlicht-1.2-config.patch b/dev-games/irrlicht/files/irrlicht-1.2-config.patch new file mode 100644 index 000000000000..e6ba8795f0d6 --- /dev/null +++ b/dev-games/irrlicht/files/irrlicht-1.2-config.patch @@ -0,0 +1,26 @@ +--- include/IrrCompileConfig.h.old 2006-09-16 12:42:28.000000000 +0200 ++++ include/IrrCompileConfig.h 2006-09-16 12:42:58.000000000 +0200 +@@ -68,7 +68,6 @@ + //! Define _IRR_USE_NON_SYSTEM_ZLIB_ to let irrlicht use the zlib which comes with irrlicht. + /** If this is commented out, Irrlicht will try to compile using the zlib installed in the system. + This is only used when _IRR_COMPILE_WITH_ZLIB_ is defined. */ +-#define _IRR_USE_NON_SYSTEM_ZLIB_ + + + //! Define _IRR_COMPILE_WITH_JPEGLIB_ to enable compiling the engine using libjpeg. +@@ -79,7 +78,6 @@ + //! Define _IRR_USE_NON_SYSTEM_JPEG_LIB_ to let irrlicht use the jpeglib which comes with irrlicht. + /** If this is commented out, Irrlicht will try to compile using the jpeg lib installed in the system. + This is only used when _IRR_COMPILE_WITH_LIBJPEG_ is defined. */ +-#define _IRR_USE_NON_SYSTEM_JPEG_LIB_ + + + //! Define _IRR_COMPILE_WITH_LIBPNG_ to enable compiling the engine using libpng. +@@ -90,7 +88,6 @@ + //! Define _IRR_USE_NON_SYSTEM_LIBPNG_ to let irrlicht use the libpng which comes with irrlicht. + /** If this is commented out, Irrlicht will try to compile using the libpng installed in the system. + This is only used when _IRR_COMPILE_WITH_LIBPNG_ is defined. */ +-#define _IRR_USE_NON_SYSTEM_LIB_PNG_ + + + //! Define _IRR_D3D_NO_SHADER_DEBUGGING to disable shader debugging in D3D9 diff --git a/dev-games/irrlicht/files/irrlicht-1.2-demoMake.patch b/dev-games/irrlicht/files/irrlicht-1.2-demoMake.patch new file mode 100644 index 000000000000..56de8ca5c8e8 --- /dev/null +++ b/dev-games/irrlicht/files/irrlicht-1.2-demoMake.patch @@ -0,0 +1,14 @@ +--- ../../examples/Demo/Makefile.old 2006-10-14 13:06:42.000000000 +0200 ++++ ../../examples/Demo/Makefile 2006-10-14 13:08:32.000000000 +0200 +@@ -2,9 +2,9 @@ + # Handwritten by me, made with Kate. So it is far from being perfect. :) + + CXX = g++ +-CPPFLAGS = -I"../../include" -I"/usr/X11R6/include" ++CPPFLAGS = -I/usr/include/irrlicht + CXXFLAGS = -O3 -ffast-math +-LDFLAGS = -L"/usr/X11R6/lib" -L"../../lib/Linux" -lIrrlicht -lGL -lGLU -lXxf86vm -lXext -lX11 ++LDFLAGS = -lIrrlicht -lGL -lGLU -lXxf86vm -lXext -lX11 -lpng -ljpeg + # if you enable sound add the proper library for linking + # -laudiere + # -lSDL_mixer -lSDL |