summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2006-02-07 01:59:49 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2006-02-07 01:59:49 +0000
commit671f2ee295b8a55605831a2b98a99da4e6ebaf6a (patch)
tree1352987e4158f4514f1dc1776c74ca7bc738dadc /sci-astronomy/stellarium/files
parentAdded ~sparc keyword wrt bug #121880. (diff)
downloadgentoo-2-671f2ee295b8a55605831a2b98a99da4e6ebaf6a.tar.gz
gentoo-2-671f2ee295b8a55605831a2b98a99da4e6ebaf6a.tar.bz2
gentoo-2-671f2ee295b8a55605831a2b98a99da4e6ebaf6a.zip
gcc41 patch + dep fixup
(Portage version: 2.0.54)
Diffstat (limited to 'sci-astronomy/stellarium/files')
-rw-r--r--sci-astronomy/stellarium/files/stellarium-0.7.1-gcc41.patch58
1 files changed, 58 insertions, 0 deletions
diff --git a/sci-astronomy/stellarium/files/stellarium-0.7.1-gcc41.patch b/sci-astronomy/stellarium/files/stellarium-0.7.1-gcc41.patch
new file mode 100644
index 000000000000..348a32b26a8c
--- /dev/null
+++ b/sci-astronomy/stellarium/files/stellarium-0.7.1-gcc41.patch
@@ -0,0 +1,58 @@
+Index: stellarium-0.7.1/src/observator.h
+===================================================================
+--- stellarium-0.7.1.orig/src/observator.h
++++ stellarium-0.7.1/src/observator.h
+@@ -112,8 +112,8 @@ private:
+ string s_time_format_to_string(S_TIME_FORMAT) const;
+
+ // Convert the date format enum to its associated string and reverse
+- S_DATE_FORMAT Observator::string_to_s_date_format(const string& df) const;
+- string Observator::s_date_format_to_string(S_DATE_FORMAT df) const;
++ S_DATE_FORMAT string_to_s_date_format(const string& df) const;
++ string s_date_format_to_string(S_DATE_FORMAT df) const;
+
+ // for changing position
+ bool flag_move_to;
+Index: stellarium-0.7.1/src/projector.h
+===================================================================
+--- stellarium-0.7.1.orig/src/projector.h
++++ stellarium-0.7.1/src/projector.h
+@@ -75,7 +75,7 @@ public:
+ virtual void set_viewport(int x, int y, int w, int h);
+
+ // Fill with black around the circle
+- void Projector::draw_viewport_shape(void);
++ void draw_viewport_shape(void);
+
+ int viewW(void) const {return vec_viewport[2];}
+ int viewH(void) const {return vec_viewport[3];}
+Index: stellarium-0.7.1/src/stel_command_interface.h
+===================================================================
+--- stellarium-0.7.1.orig/src/stel_command_interface.h
++++ stellarium-0.7.1/src/stel_command_interface.h
+@@ -43,9 +43,9 @@ class StelCommandInterface : CommandInte
+ public:
+ StelCommandInterface(stel_core * core);
+ virtual ~StelCommandInterface();
+- virtual int StelCommandInterface::execute_command(string commandline);
+- virtual int StelCommandInterface::execute_command(string command, double arg);
+- virtual int StelCommandInterface::execute_command(string command, int arg);
++ virtual int execute_command(string commandline);
++ virtual int execute_command(string command, double arg);
++ virtual int execute_command(string command, int arg);
+ virtual int execute_command(string command, unsigned long int &wait, bool trusted);
+ virtual int set_flag(string name, string value, bool &newval, bool trusted);
+ void update(int delta_time);
+Index: stellarium-0.7.1/src/stel_ui.h
+===================================================================
+--- stellarium-0.7.1.orig/src/stel_ui.h
++++ stellarium-0.7.1/src/stel_ui.h
+@@ -316,7 +316,7 @@ private:
+ void tui_cb_sky_time(); // change effect parameters
+
+ // Parse a file of type /usr/share/zoneinfo/zone.tab
+- s_tui::MultiSet_item<string>* stel_ui::create_tree_from_time_zone_file(const string& zonetab);
++ s_tui::MultiSet_item<string>* create_tree_from_time_zone_file(const string& zonetab);
+
+ bool ScriptDirectoryRead;
+ };