diff options
author | 2006-06-04 09:05:47 +0000 | |
---|---|---|
committer | 2006-06-04 09:05:47 +0000 | |
commit | 385c337a7aecc3ed513c6fb5ebd9892c92614e56 (patch) | |
tree | 4d5e2d11334e13ba91356509f0a0fd2c17694875 /sci-chemistry/reduce/files | |
parent | New program that evaluates atomic packing within or between molecules. (diff) | |
download | gentoo-2-385c337a7aecc3ed513c6fb5ebd9892c92614e56.tar.gz gentoo-2-385c337a7aecc3ed513c6fb5ebd9892c92614e56.tar.bz2 gentoo-2-385c337a7aecc3ed513c6fb5ebd9892c92614e56.zip |
New package to add hydrogens to a Protein Data Bank (PDB) molecule structure file.
(Portage version: 2.1_rc3-r1)
Diffstat (limited to 'sci-chemistry/reduce/files')
-rw-r--r-- | sci-chemistry/reduce/files/2.21.030604-gcc4.patch | 100 | ||||
-rw-r--r-- | sci-chemistry/reduce/files/digest-reduce-2.21.030604 | 6 |
2 files changed, 106 insertions, 0 deletions
diff --git a/sci-chemistry/reduce/files/2.21.030604-gcc4.patch b/sci-chemistry/reduce/files/2.21.030604-gcc4.patch new file mode 100644 index 000000000000..67b36ab476a7 --- /dev/null +++ b/sci-chemistry/reduce/files/2.21.030604-gcc4.patch @@ -0,0 +1,100 @@ +Files reduce.2.21.030604.source.orig/libpdb/libpdb++.a and reduce.2.21.030604.source/libpdb/libpdb++.a differ +diff -urN -x '*Makefile*' reduce.2.21.030604.source.orig/reduce_src/PDBrec.h reduce.2.21.030604.source/reduce_src/PDBrec.h +--- reduce.2.21.030604.source.orig/reduce_src/PDBrec.h 2003-06-04 16:32:12.000000000 -0700 ++++ reduce.2.21.030604.source/reduce_src/PDBrec.h 2006-06-01 15:50:07.000000000 -0700 +@@ -233,7 +233,7 @@ + + friend ostream& operator << (ostream& s, const PDBrecNAMEout& p); + private: +- PDBrecNAMEout(const PDBrecNAMEout& p); // can't copy or assign ++// PDBrecNAMEout(const PDBrecNAMEout& p); // can't copy or assign + PDBrecNAMEout& operator=(const PDBrecNAMEout& p); + + const PDBrec& _r; +Files reduce.2.21.030604.source.orig/reduce_src/reduce and reduce.2.21.030604.source/reduce_src/reduce differ +diff -urN -x '*Makefile*' reduce.2.21.030604.source.orig/toolclasses/Dict.C reduce.2.21.030604.source/toolclasses/Dict.C +--- reduce.2.21.030604.source.orig/toolclasses/Dict.C 1999-03-15 08:42:34.000000000 -0800 ++++ reduce.2.21.030604.source/toolclasses/Dict.C 2006-06-01 15:51:58.000000000 -0700 +@@ -13,6 +13,7 @@ + // Copyright (C) 1999 J. Michael Word + // ************************************************************** + ++using std::endl; + #include "Dict.h" + + // --------------------------------------------------- +Files reduce.2.21.030604.source.orig/toolclasses/libtoolclasses.a and reduce.2.21.030604.source/toolclasses/libtoolclasses.a differ +diff -urN -x '*Makefile*' reduce.2.21.030604.source.orig/toolclasses/List.h reduce.2.21.030604.source/toolclasses/List.h +--- reduce.2.21.030604.source.orig/toolclasses/List.h 2003-06-04 16:48:51.000000000 -0700 ++++ reduce.2.21.030604.source/toolclasses/List.h 2006-06-01 16:31:43.000000000 -0700 +@@ -9,6 +9,8 @@ + #ifndef LIST_H + #define LIST_H 1 + ++#include "utility.h" ++ + #ifdef OLD_STD_HDRS + #include <iostream.h> + #include <limits.h> +diff -urN -x '*Makefile*' reduce.2.21.030604.source.orig/toolclasses/ListIter.C reduce.2.21.030604.source/toolclasses/ListIter.C +--- reduce.2.21.030604.source.orig/toolclasses/ListIter.C 1999-01-13 09:58:42.000000000 -0800 ++++ reduce.2.21.030604.source/toolclasses/ListIter.C 2006-06-01 15:32:13.000000000 -0700 +@@ -58,29 +58,29 @@ + + template <class T> + bool NonConstListIter<T>::drop() { +- bool rc = (_node != NULL); ++ bool rc = (this->_node != NULL); + if (rc) { +- DblLnkLstNode<T>* prev = _NClist.linkPrev(_node); +- _NClist.drop(_node); +- _node = prev; ++ DblLnkLstNode<T>* prev = _NClist.linkPrev(this->_node); ++ _NClist.drop(this->_node); ++ this->_node = prev; + } + return rc; + } + + template <class T> + bool NonConstListIter<T>::insertBefore(const T& e) { +- bool rc = (_node != NULL); ++ bool rc = (this->_node != NULL); + if (rc) { +- _NClist.insertBefore(e, _node); ++ _NClist.insertBefore(e, this->_node); + } + return rc; + } + + template <class T> + bool NonConstListIter<T>::insertAfter(const T& e) { +- bool rc = (_node != NULL); ++ bool rc = (this->_node != NULL); + if (rc) { +- _NClist.insertAfter(e, _node); ++ _NClist.insertAfter(e, this->_node); + } + return rc; + } +diff -urN -x '*Makefile*' reduce.2.21.030604.source.orig/toolclasses/ListIter.h reduce.2.21.030604.source/toolclasses/ListIter.h +--- reduce.2.21.030604.source.orig/toolclasses/ListIter.h 1999-01-13 09:58:42.000000000 -0800 ++++ reduce.2.21.030604.source/toolclasses/ListIter.h 2006-06-01 15:07:29.000000000 -0700 +@@ -63,13 +63,13 @@ + : ListIter<T>(li), _NClist(li._NClist) {} + + T& data() const { +- assert(_node); +- return _NClist.linkData(_node); ++ assert(this->_node); ++ return _NClist.linkData(this->_node); + } + + void update(const T& e) const { +- assert(_node); +- _NClist.linkData(_node) = e; ++ assert(this->_node); ++ _NClist.linkData(this->_node) = e; + } + + bool drop(); // remove the current element diff --git a/sci-chemistry/reduce/files/digest-reduce-2.21.030604 b/sci-chemistry/reduce/files/digest-reduce-2.21.030604 new file mode 100644 index 000000000000..48b5fb10b15c --- /dev/null +++ b/sci-chemistry/reduce/files/digest-reduce-2.21.030604 @@ -0,0 +1,6 @@ +MD5 87030e9c734c7098aff3a2ac94791c00 reduce.2.21.030604.src.tgz 132262 +RMD160 db5ff4ea12e50c7ea9d8215011f80966ce5397b6 reduce.2.21.030604.src.tgz 132262 +SHA256 0889c1bed10680090a1fd62cce1a46a13768b4ea77cbf036245b15e2e542337d reduce.2.21.030604.src.tgz 132262 +MD5 1ec7b357d652fb46c9db3a14cabefcd1 reduce_het_dict.txt.zip 983850 +RMD160 5d1aa16adc4c9e3355b58937dbe8033afa4e8a17 reduce_het_dict.txt.zip 983850 +SHA256 382802ebb89332dd0a0f208ef5ca6b9cd0ddca5b7a5d6bf8226d5aa1f506a384 reduce_het_dict.txt.zip 983850 |