diff options
author | Tristan Heaven <nyhm@gentoo.org> | 2006-12-12 02:53:14 +0000 |
---|---|---|
committer | Tristan Heaven <nyhm@gentoo.org> | 2006-12-12 02:53:14 +0000 |
commit | 3e7d609c01ba7dab5f64cf8814db38a6e51113c0 (patch) | |
tree | 98e72f7113be0edd1117198915325906c161671a /games-action | |
parent | Add sed line to fix bug 143930, traffic-togif expects traffic-tops in /usr/sb... (diff) | |
download | gentoo-2-3e7d609c01ba7dab5f64cf8814db38a6e51113c0.tar.gz gentoo-2-3e7d609c01ba7dab5f64cf8814db38a6e51113c0.tar.bz2 gentoo-2-3e7d609c01ba7dab5f64cf8814db38a6e51113c0.zip |
waste of space
(Portage version: 2.1.2_rc3-r2)
Diffstat (limited to 'games-action')
-rw-r--r-- | games-action/chromium/Manifest | 4 | ||||
-rw-r--r-- | games-action/chromium/files/0.9.12-proper-options.patch | 57 |
2 files changed, 0 insertions, 61 deletions
diff --git a/games-action/chromium/Manifest b/games-action/chromium/Manifest index 43de5621b99f..545d9e834804 100644 --- a/games-action/chromium/Manifest +++ b/games-action/chromium/Manifest @@ -10,10 +10,6 @@ AUX 0.9.12-gcc3-gentoo.patch 530 RMD160 2599f72b8a4cdb81cbad7802085321dbb2aa096d MD5 704ffc456916b1e4953b5292b78f64c2 files/0.9.12-gcc3-gentoo.patch 530 RMD160 2599f72b8a4cdb81cbad7802085321dbb2aa096d files/0.9.12-gcc3-gentoo.patch 530 SHA256 e10024adff892effc7ad2230234260c00106020c920180c69539f6f4e43b5d50 files/0.9.12-gcc3-gentoo.patch 530 -AUX 0.9.12-proper-options.patch 1708 RMD160 6e3bb9f6f500904a986dfb04ae47123bd4cf28b3 SHA1 3c6c6b65f34c34b3dca9e2b06a5c53ea99bdfe3c SHA256 7ea0a8e6861d710b01bbe683585fdebd26a3d530f5b579aea10c563d4803a869 -MD5 e363d085caa6b62c91264e68a15b0459 files/0.9.12-proper-options.patch 1708 -RMD160 6e3bb9f6f500904a986dfb04ae47123bd4cf28b3 files/0.9.12-proper-options.patch 1708 -SHA256 7ea0a8e6861d710b01bbe683585fdebd26a3d530f5b579aea10c563d4803a869 files/0.9.12-proper-options.patch 1708 AUX 0.9.12-qt3.patch 979 RMD160 efe12c75b8d83b85292d974b0b4fe17f554a463b SHA1 0ce024be66d6ab60b72bb0d7c29764de18f1fee2 SHA256 3671171967c89b6ab675e49fd228cef0398bb01b9b60f77d26f749e4ea4f9861 MD5 031dc9787ccdcb049081dccf31a4a401 files/0.9.12-qt3.patch 979 RMD160 efe12c75b8d83b85292d974b0b4fe17f554a463b files/0.9.12-qt3.patch 979 diff --git a/games-action/chromium/files/0.9.12-proper-options.patch b/games-action/chromium/files/0.9.12-proper-options.patch deleted file mode 100644 index 75643b930c41..000000000000 --- a/games-action/chromium/files/0.9.12-proper-options.patch +++ /dev/null @@ -1,57 +0,0 @@ ---- configure.orig 2003-11-19 19:33:19.947616192 -0500 -+++ configure 2003-11-19 19:35:31.510615576 -0500 -@@ -7,10 +7,6 @@ - - ## Defaults - ################################### --ENABLE_SDL="yes" --ENABLE_SMPEG="yes" --ENABLE_VORBIS="no" --ENABLE_SETUP="yes" - - ## Where do we look for stuff? - ################################### -@@ -158,8 +154,8 @@ - ## set up other config.mak variables - ###################################################################### - GL_LIBS="-lglpng -lGL -lGLU -lm" --AL_LIBS="-L../support/openal/lib -lopenal -ldl" --AL_CFLAGS="-I../support/openal/linux/include -I../support/openal/include" -+AL_LIBS="-lopenal -ldl" -+AL_CFLAGS="" - - ## write out config.mak - ###################################################################### ---- scripts/Makefile.all.orig 2003-11-19 19:41:22.502256736 -0500 -+++ scripts/Makefile.all 2003-11-19 19:41:25.414813960 -0500 -@@ -1,5 +1,4 @@ - SUPPORT_DIRS = \ -- ./support/openal/ \ - ./support/glpng/src - - CHROMIUM_DIRS = \ ---- scripts/Makefile.no-setup.orig 2003-11-19 19:41:22.502256736 -0500 -+++ scripts/Makefile.no-setup 2003-11-19 19:41:25.414813960 -0500 -@@ -1,5 +1,4 @@ - SUPPORT_DIRS = \ -- ./support/openal/ \ - ./support/glpng/src - - CHROMIUM_DIRS = \ ---- src-setup/Audio.cpp.orig 2003-11-19 20:03:23.237474464 -0500 -+++ src-setup/Audio.cpp 2003-11-19 20:03:49.838430504 -0500 -@@ -71,7 +71,14 @@ - if(!initialized) - { - fprintf(stderr, "starting OpenAL..."); -+#ifdef OLD_OPENAL - context_id = alcCreateContext(NULL); -+#else -+ ALCdevice *dev; -+ dev = alcOpenDevice( NULL ); -+ context_id = alcCreateContext(dev, NULL); -+ alcMakeContextCurrent(context_id); -+#endif - initialized = (bool)context_id; - fprintf(stderr, "done.\n"); - |