summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Heaven <tristan@gentoo.org>2007-11-30 16:17:07 +0000
committerTristan Heaven <tristan@gentoo.org>2007-11-30 16:17:07 +0000
commitb6deb320e1ed021101a4c9c843c65b7e7aa7b709 (patch)
tree5a409b4cc4ad2cc218e4436af32afa3cdb06d915 /dev-games/irrlicht/files
parentAllow usage of gnome-screensaver instead of xscreensaver too. (diff)
downloadhistorical-b6deb320e1ed021101a4c9c843c65b7e7aa7b709.tar.gz
historical-b6deb320e1ed021101a4c9c843c65b7e7aa7b709.tar.bz2
historical-b6deb320e1ed021101a4c9c843c65b7e7aa7b709.zip
Version bump
Package-Manager: portage-2.1.4_rc4
Diffstat (limited to 'dev-games/irrlicht/files')
-rw-r--r--dev-games/irrlicht/files/digest-irrlicht-1.43
-rw-r--r--dev-games/irrlicht/files/irrlicht-1.4-config.patch26
-rw-r--r--dev-games/irrlicht/files/irrlicht-1.4-demoMake.patch20
3 files changed, 49 insertions, 0 deletions
diff --git a/dev-games/irrlicht/files/digest-irrlicht-1.4 b/dev-games/irrlicht/files/digest-irrlicht-1.4
new file mode 100644
index 000000000000..c5fecf380ce9
--- /dev/null
+++ b/dev-games/irrlicht/files/digest-irrlicht-1.4
@@ -0,0 +1,3 @@
+MD5 8270a529fa5f1f25e20337e27be3b3a5 irrlicht-1.4.zip 16892787
+RMD160 b035c37fda41f5f68484e3a2988465ce7c019382 irrlicht-1.4.zip 16892787
+SHA256 870845bb0b987b5b1e3c086d22a77f58300ba9c4a65f4685768e1695696ccd52 irrlicht-1.4.zip 16892787
diff --git a/dev-games/irrlicht/files/irrlicht-1.4-config.patch b/dev-games/irrlicht/files/irrlicht-1.4-config.patch
new file mode 100644
index 000000000000..fbb1cab1ac7b
--- /dev/null
+++ b/dev-games/irrlicht/files/irrlicht-1.4-config.patch
@@ -0,0 +1,26 @@
+--- include/IrrCompileConfig.h
++++ include/IrrCompileConfig.h
+@@ -113,7 +113,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.
+@@ -124,7 +123,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.
+@@ -135,7 +133,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.4-demoMake.patch b/dev-games/irrlicht/files/irrlicht-1.4-demoMake.patch
new file mode 100644
index 000000000000..ba8a3e2495fb
--- /dev/null
+++ b/dev-games/irrlicht/files/irrlicht-1.4-demoMake.patch
@@ -0,0 +1,20 @@
+--- examples/Demo/Makefile
++++ examples/Demo/Makefile
+@@ -2,7 +2,7 @@
+ Target = Demo
+ Sources = CDemo.cpp CMainMenu.cpp main.cpp
+
+-CPPFLAGS = -I../../include -I/usr/X11R6/include
++CPPFLAGS = -I/usr/include/irrlicht
+ CXXFLAGS = -Wall -O3 -ffast-math
+
+ ifeq ($(HOSTTYPE), x86_64)
+@@ -13,7 +13,7 @@
+
+ # target specific settings
+ all_linux: SYSTEM=Linux
+-all_linux: LDFLAGS = -L/usr/X11R6/lib$(LIBSELECT) -L../../lib/$(SYSTEM) -lIrrlicht -lGL -lXxf86vm -lXext -lX11
++all_linux: LDFLAGS = -lIrrlicht -lGL -lXxf86vm -lXext -lX11 -lpng -ljpeg
+
+ all_win32 clean_win32: SYSTEM=Win32-gcc
+ all_win32: LDFLAGS = -L../../lib/$(SYSTEM) -lIrrlicht -lopengl32 -lglu32 -lm