diff options
author | Patrick Kursawe <phosphan@gentoo.org> | 2004-04-19 10:19:45 +0000 |
---|---|---|
committer | Patrick Kursawe <phosphan@gentoo.org> | 2004-04-19 10:19:45 +0000 |
commit | 409894b89a1ad3e860ce983fe3c8880d7201cdd7 (patch) | |
tree | 9623a542c323e30e6bb79c4f16bc4befecfd19dc /app-sci/ghemical/files | |
parent | Removed S, added IUSE. (diff) | |
download | historical-409894b89a1ad3e860ce983fe3c8880d7201cdd7.tar.gz historical-409894b89a1ad3e860ce983fe3c8880d7201cdd7.tar.bz2 historical-409894b89a1ad3e860ce983fe3c8880d7201cdd7.zip |
Added IUSE, moved to sed -i
Diffstat (limited to 'app-sci/ghemical/files')
-rw-r--r-- | app-sci/ghemical/files/digest-ghemical-0.90 | 1 | ||||
-rw-r--r-- | app-sci/ghemical/files/ghemical-0.90-gentoo.patch | 31 |
2 files changed, 0 insertions, 32 deletions
diff --git a/app-sci/ghemical/files/digest-ghemical-0.90 b/app-sci/ghemical/files/digest-ghemical-0.90 deleted file mode 100644 index 53234c17d9a4..000000000000 --- a/app-sci/ghemical/files/digest-ghemical-0.90 +++ /dev/null @@ -1 +0,0 @@ -MD5 a469e583af31c89146397f81aa88289c ghemical-0.90.tgz 2087887 diff --git a/app-sci/ghemical/files/ghemical-0.90-gentoo.patch b/app-sci/ghemical/files/ghemical-0.90-gentoo.patch deleted file mode 100644 index 601ec7cabcc9..000000000000 --- a/app-sci/ghemical/files/ghemical-0.90-gentoo.patch +++ /dev/null @@ -1,31 +0,0 @@ ---- openbabel/c3d.cpp.org 2002-06-19 23:18:59.000000000 +0200 -+++ openbabel/c3d.cpp 2002-10-27 18:47:04.000000000 +0100 -@@ -150,7 +150,7 @@ - } - - if (!natoms) return(false); -- divisor = pow(10.0,exponent); -+ divisor = pow((float)10.0,(float)exponent); - mol.ReserveAtoms(natoms); - - ttab.SetToType("INT"); ---- src/graphics/views.cpp.org 2002-06-20 13:27:04.000000000 +0200 -+++ src/graphics/views.cpp 2002-10-27 19:57:12.000000000 +0100 -@@ -486,7 +486,7 @@ - - glInitNames(); - -- i32s zzz = (i32s) sqrt(dv.size()); // support square datasets only!!! -+ i32s zzz = (i32s) sqrt((double)dv.size()); // support square datasets only!!! - for (i32s n1 = 0;n1 < zzz - 1;n1++) - { - for (i32s n2 = 0;n2 < zzz - 1;n2++) -@@ -542,7 +542,7 @@ - if (sy < 0.0) return; - if (sy > 1.0) return; - -- i32s zzz = (i32s) sqrt(dv.size()); // support square datasets only!!! -+ i32s zzz = (i32s) sqrt((double)dv.size()); // support square datasets only!!! - i32s index = (i32s) (((i32s) (sx * zzz)) * zzz + sy * zzz); - if (index >= (i32s) dv.size()) return; - |