summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Hood <squinky86@gentoo.org>2004-07-03 01:08:10 +0000
committerJon Hood <squinky86@gentoo.org>2004-07-03 01:08:10 +0000
commitd6855d68773ca97af577147248fec1979201d3ec (patch)
treeda4be5c31998a045e5423b9bd6109de59b759a4a /app-text/sword/files
parentvirtual/xemacs fix + use.local fixo (diff)
downloadhistorical-d6855d68773ca97af577147248fec1979201d3ec.tar.gz
historical-d6855d68773ca97af577147248fec1979201d3ec.tar.bz2
historical-d6855d68773ca97af577147248fec1979201d3ec.zip
early version bump to fix stable x86 compile errors; removing broken ebuilds
Diffstat (limited to 'app-text/sword/files')
-rw-r--r--app-text/sword/files/digest-sword-1.5.61
-rw-r--r--app-text/sword/files/digest-sword-1.5.71
-rw-r--r--app-text/sword/files/sword-gcc34-gentoo.patch19
-rw-r--r--app-text/sword/files/sword-installmgr-gentoo.patch12
4 files changed, 0 insertions, 33 deletions
diff --git a/app-text/sword/files/digest-sword-1.5.6 b/app-text/sword/files/digest-sword-1.5.6
deleted file mode 100644
index 5a445bad1c70..000000000000
--- a/app-text/sword/files/digest-sword-1.5.6
+++ /dev/null
@@ -1 +0,0 @@
-MD5 4a374e78edc8a8d8801955faf989007e sword-1.5.6.tar.gz 3427634
diff --git a/app-text/sword/files/digest-sword-1.5.7 b/app-text/sword/files/digest-sword-1.5.7
deleted file mode 100644
index 4a9e5e6da2e7..000000000000
--- a/app-text/sword/files/digest-sword-1.5.7
+++ /dev/null
@@ -1 +0,0 @@
-MD5 369f09068839c646aeab691c63a40d67 sword-1.5.7.tar.gz 1482711
diff --git a/app-text/sword/files/sword-gcc34-gentoo.patch b/app-text/sword/files/sword-gcc34-gentoo.patch
deleted file mode 100644
index bf0869f9cb20..000000000000
--- a/app-text/sword/files/sword-gcc34-gentoo.patch
+++ /dev/null
@@ -1,19 +0,0 @@
---- include/multimapwdef.h.old 2004-04-29 04:22:07.516715976 +0100
-+++ include/multimapwdef.h 2004-04-29 04:22:20.051810352 +0100
-@@ -12,14 +12,14 @@
- public:
- typedef std::pair<const Key, T> value_type;
- T& getWithDefault(const Key& k, const T& defaultValue) {
-- if (find(k) == end()) {
-+ if (find(k) == this->end()) {
- insert(value_type(k, defaultValue));
- }
- return (*(find(k))).second;
- }
-
- T& operator[](const Key& k) {
-- if (find(k) == end()) {
-+ if (find(k) == this->end()) {
- insert(value_type(k, T()));
- }
- return (*(find(k))).second;
diff --git a/app-text/sword/files/sword-installmgr-gentoo.patch b/app-text/sword/files/sword-installmgr-gentoo.patch
deleted file mode 100644
index 90d664dcdbbf..000000000000
--- a/app-text/sword/files/sword-installmgr-gentoo.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -Naur sword-1.5.7.vanilla/src/mgr/installmgr.cpp sword-1.5.7/src/mgr/installmgr.cpp
---- src/mgr/installmgr.cpp 2003-11-25 13:11:13.000000000 -0600
-+++ src/mgr/installmgr.cpp 2004-04-08 15:51:34.933586760 -0500
-@@ -150,7 +150,7 @@
- curl_easy_setopt(curl, CURLOPT_FILE, &ftpfile);
-
- /* Switch on full protocol/debug output */
-- curl_easy_setopt(curl, CURLOPT_VERBOSE, TRUE);
-+ curl_easy_setopt(curl, CURLOPT_VERBOSE, true);
-
- res = curl_easy_perform(curl);
-