summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatsuu Takuto <matsuu@gentoo.org>2006-09-05 04:23:19 +0000
committerMatsuu Takuto <matsuu@gentoo.org>2006-09-05 04:23:19 +0000
commit0dd2048f84e398ab5fc2b3b94874fe1d993bff94 (patch)
treed789c98820e80539793b9797ce37a1869b011a23 /media-sound
parentMarked stable on mips. (diff)
downloadhistorical-0dd2048f84e398ab5fc2b3b94874fe1d993bff94.tar.gz
historical-0dd2048f84e398ab5fc2b3b94874fe1d993bff94.tar.bz2
historical-0dd2048f84e398ab5fc2b3b94874fe1d993bff94.zip
Remove unused file
Package-Manager: portage-2.1-r2
Diffstat (limited to 'media-sound')
-rw-r--r--media-sound/audacity/Manifest4
-rw-r--r--media-sound/audacity/files/audacity-1.2.3-x86.patch24
2 files changed, 0 insertions, 28 deletions
diff --git a/media-sound/audacity/Manifest b/media-sound/audacity/Manifest
index 2109b8cdd039..8e118a740720 100644
--- a/media-sound/audacity/Manifest
+++ b/media-sound/audacity/Manifest
@@ -2,10 +2,6 @@ AUX audacity-1.2.3-gcc41.patch 650 RMD160 4fabdb072b9e4a6c9d908694cc2e7cea8e1ce1
MD5 8d8b48aa5931322a0a0a8ad826335c38 files/audacity-1.2.3-gcc41.patch 650
RMD160 4fabdb072b9e4a6c9d908694cc2e7cea8e1ce16e files/audacity-1.2.3-gcc41.patch 650
SHA256 c8acd7c59f69d6bf8fba8773e47cd6b3b4a4cbfbc510b0ac7aa2f3b88ea344fb files/audacity-1.2.3-gcc41.patch 650
-AUX audacity-1.2.3-x86.patch 995 RMD160 2b78053f34ed3ee2cd0e0a8e4be581dfb3c47652 SHA1 3d711eaca9d8d45732e00eb49c33e2375eb3cf01 SHA256 858c60a82be1a533e1f1799f34033f7a32b991ad12f76a5850631a5591c889b9
-MD5 502eabf8993eb2af91e1265425024091 files/audacity-1.2.3-x86.patch 995
-RMD160 2b78053f34ed3ee2cd0e0a8e4be581dfb3c47652 files/audacity-1.2.3-x86.patch 995
-SHA256 858c60a82be1a533e1f1799f34033f7a32b991ad12f76a5850631a5591c889b9 files/audacity-1.2.3-x86.patch 995
AUX audacity-1.3.0b-x86.patch 1278 RMD160 3b9a2af0fc9c4c4b6287112cd035205c6eb508c7 SHA1 ffafddda30463ad1597c34d8bb3a4ed3705113e6 SHA256 865b06b9089d5fc0af194268316aa09deba80fabb1e058708d13e47f364e5dea
MD5 7824e4b13601ac393e05a72a195ef97b files/audacity-1.3.0b-x86.patch 1278
RMD160 3b9a2af0fc9c4c4b6287112cd035205c6eb508c7 files/audacity-1.3.0b-x86.patch 1278
diff --git a/media-sound/audacity/files/audacity-1.2.3-x86.patch b/media-sound/audacity/files/audacity-1.2.3-x86.patch
deleted file mode 100644
index be98087980aa..000000000000
--- a/media-sound/audacity/files/audacity-1.2.3-x86.patch
+++ /dev/null
@@ -1,24 +0,0 @@
---- audacity-src-1.2.3/lib-src/soundtouch/source/SoundTouch/cpu_detect_x86_gcc.cpp.orig 2005-07-09 19:49:20.000000000 +0800
-+++ audacity-src-1.2.3/lib-src/soundtouch/source/SoundTouch/cpu_detect_x86_gcc.cpp 2005-07-09 20:02:30.000000000 +0800
-@@ -86,6 +86,7 @@
- "\n\txor %%esi, %%esi" // clear %%esi = result register
- // check if 'cpuid' instructions is available by toggling eflags bit 21
-
-+ "\n\tpushl %%ebx"
- "\n\tpushf" // save eflags to stack
- "\n\tpop %%eax" // load eax from stack (with eflags)
- "\n\tmovl %%eax, %%ecx" // save the original eflags values to ecx
-@@ -130,11 +131,12 @@
-
- "\n\tend:"
-
-+ "\n\tpopl %%ebx"
- "\n\tmov %%esi, %0"
-
- : "=rm" (res)
- : /* no inputs */
-- : "%edx", "%eax", "%ecx", "%ebx", "%esi" );
-+ : "%edx", "%eax", "%ecx", "%esi" );
-
- return res & ~_dwDisabledISA;
- #endif