public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sci-astronomy/ds9/files: ds9-5.1-gcc4.2-x86.patch ds9-5.2-gcc43.patch ds9-5.2-Makefile.patch
@ 2008-04-16 16:13 Sebastien Fabbro (bicatali)
  0 siblings, 0 replies; only message in thread
From: Sebastien Fabbro (bicatali) @ 2008-04-16 16:13 UTC (permalink / raw
  To: gentoo-commits

bicatali    08/04/16 16:13:56

  Modified:             ds9-5.1-gcc4.2-x86.patch
  Added:                ds9-5.2-gcc43.patch ds9-5.2-Makefile.patch
  Log:
  Version bump, with gcc-4.3 patch and adapted bug #189118 patch to avoid emacs dependency
  (Portage version: 2.1.5_rc2)

Revision  Changes    Path
1.2                  sci-astronomy/ds9/files/ds9-5.1-gcc4.2-x86.patch

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/ds9/files/ds9-5.1-gcc4.2-x86.patch?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/ds9/files/ds9-5.1-gcc4.2-x86.patch?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/ds9/files/ds9-5.1-gcc4.2-x86.patch?r1=1.1&r2=1.2

Index: ds9-5.1-gcc4.2-x86.patch
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-astronomy/ds9/files/ds9-5.1-gcc4.2-x86.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ds9-5.1-gcc4.2-x86.patch	23 Jan 2008 14:29:16 -0000	1.1
+++ ds9-5.1-gcc4.2-x86.patch	16 Apr 2008 16:13:55 -0000	1.2
@@ -1,13 +1,11 @@
 diff -Naur saods9/make.linux saods9.new/make.linux
 --- saods9/make.linux	2007-12-18 17:54:57.000000000 -0500
 +++ saods9.new/make.linux	2008-01-23 08:58:46.000000000 -0500
-@@ -9,15 +9,15 @@
+@@ -9,15 +9,13 @@
  
  # note: bug with gcc 4.1 and 4.2
  # can't use -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64
-+CXX	= g++
 +CXXOPT	= ${OPTS} -fPIC -DHAVE_SYS_UN_H -DHAVE_SYS_SHM_H
-+CC	= gcc
 +CCOPT	= ${OPTS} -fPIC -DHAVE_SYS_UN_H -DHAVE_SYS_SHM_H
 +
  #CXX	= g++



1.1                  sci-astronomy/ds9/files/ds9-5.2-gcc43.patch

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/ds9/files/ds9-5.2-gcc43.patch?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/ds9/files/ds9-5.2-gcc43.patch?rev=1.1&content-type=text/plain

Index: ds9-5.2-gcc43.patch
===================================================================
--- iis/iistcl.C.orig	2008-04-16 13:53:34.315972056 +0000
+++ iis/iistcl.C	2008-04-16 13:54:57.634895375 +0000
@@ -4,7 +4,7 @@
 
 #include <ctype.h>
 #include <string.h>
-
+#include <cstdlib>
 #include <iostream>
 #include <sstream>
 using namespace std;
--- saotk/widget/ps.C.orig	2008-04-16 14:09:20.865993878 +0000
+++ saotk/widget/ps.C	2008-04-16 14:10:04.020453111 +0000
@@ -4,6 +4,7 @@
 
 #include "ps.h"
 #include "util.h"
+#include <cstring>
 
 Filter::Filter()
 {
--- saotk/frame/callback.C.orig	2008-04-16 14:23:03.661659706 +0000
+++ saotk/frame/callback.C	2008-04-16 14:36:52.264879112 +0000
@@ -2,8 +2,8 @@
 // Smithsonian Astrophysical Observatory, Cambridge, MA, USA
 // For conditions of distribution and use, see copyright notice in "copyright"
 
-#include <string.h>
-#include <iostream.h>
+#include <cstring>
+#include <iostream>
 
 #include "callback.h"
 
--- saotk/frame/ciaoparser.C.orig	2008-04-16 15:12:42.535454290 +0000
+++ saotk/frame/ciaoparser.C	2008-04-16 15:13:18.023725663 +0000
@@ -128,9 +128,9 @@
 
 #define FITSPTR (fr->findFits(1))
 
-#include <math.h>
-#include <string.h>
-#include <iostream.h>
+#include <cmath>
+#include <cstring>
+#include <iostream>
 
 #include "framebase.h"
 #include "fitsimage.h"
--- saotk/frame/ds9parser.C.orig	2008-04-16 15:12:42.535454290 +0000
+++ saotk/frame/ds9parser.C	2008-04-16 15:13:40.601718953 +0000
@@ -333,9 +333,9 @@
 #define FITSPTR (fr->findFits(globalTile))
 #define DISCARD_(x) {yyclearin; mkDiscard(x);}
 
-#include <math.h>
-#include <string.h>
-#include <iostream.h>
+#include <cmath>
+#include <cstring>
+#include <iostream>
 
 #include "framebase.h"
 #include "fitsimage.h"
--- saotk/frame/fitsdata.C.orig	2008-04-16 15:09:33.746979438 +0000
+++ saotk/frame/fitsdata.C	2008-04-16 15:11:28.432297279 +0000
@@ -2,11 +2,11 @@
 // Smithsonian Astrophysical Observatory, Cambridge, MA, USA
 // For conditions of distribution and use, see copyright notice in "copyright"
 
-#include <stdlib.h>
-#include <limits.h>
-#include <float.h>
-#include <iostream.h>
-#include <math.h>
+#include <cstdlib>
+#include <climits>
+#include <cfloat>
+#include <iostream>
+#include <cmath>
 
 #include "fitsdata.h"
 #include "colorscale.h"
--- saotk/frame/inversescale.C.orig	2008-04-16 15:12:42.539452518 +0000
+++ saotk/frame/inversescale.C	2008-04-16 15:13:56.113594982 +0000
@@ -2,8 +2,8 @@
 // Smithsonian Astrophysical Observatory, Cambridge, MA, USA
 // For conditions of distribution and use, see copyright notice in "copyright"
 
-#include <iostream.h>
-#include <math.h>
+#include <iostream>
+#include <cmath>
 
 #include "inversescale.h"
 #include "framebase.h"
--- saotk/frame/parser.C.orig	2008-04-16 15:12:42.539452518 +0000
+++ saotk/frame/parser.C	2008-04-16 15:14:20.254970721 +0000
@@ -708,9 +708,9 @@
 
 #define FITSPTR (fr->findFits(1))
 
-#include <math.h>
-#include <string.h>
-#include <iostream.h>
+#include <cmath>
+#include <cstring>
+#include <iostream>
 
 #include "framebase.h"
 #include "frame.h"
--- saotk/frame/prosparser.C.orig	2008-04-16 15:12:42.543450746 +0000
+++ saotk/frame/prosparser.C	2008-04-16 15:14:40.360116448 +0000
@@ -155,9 +155,9 @@
 #define FITSPTR (fr->findFits(1))
 #define DISCARD_(x) {yyclearin; prosDiscard(x);}
 
-#include <math.h>
-#include <string.h>
-#include <iostream.h>
+#include <cmath>
+#include <cstring>
+#include <iostream>
 
 #include "framebase.h"
 #include "fitsimage.h"
--- saotk/frame/saoparser.C.orig	2008-04-16 15:12:42.547448974 +0000
+++ saotk/frame/saoparser.C	2008-04-16 15:14:56.133015294 +0000
@@ -121,9 +121,9 @@
 #define FITSPTR (fr->findFits(1))
 #define DISCARD_(x) {yyclearin; saoDiscard(x);}
 
-#include <math.h>
-#include <string.h>
-#include <iostream.h>
+#include <cmath>
+#include <cstring>
+#include <iostream>
 
 #include "framebase.h"
 #include "fitsimage.h"
--- saotk/frame/tngparser.C.orig	2008-04-16 15:12:42.547448974 +0000
+++ saotk/frame/tngparser.C	2008-04-16 15:15:11.549893852 +0000
@@ -167,9 +167,9 @@
 #define FITSPTR (fr->findFits(1))
 #define DISCARD_(x) {yyclearin; tngDiscard(x);}
 
-#include <math.h>
-#include <string.h>
-#include <iostream.h>
+#include <cmath>
+#include <cstring>
+#include <iostream>
 
 #include "framebase.h"
 #include "fitsimage.h"
--- saotk/frame/xyparser.C.orig	2008-04-16 15:12:42.551447202 +0000
+++ saotk/frame/xyparser.C	2008-04-16 15:15:28.970886617 +0000
@@ -200,9 +200,9 @@
 
 #define FITSPTR (fr->findFits(1))
 
-#include <math.h>
-#include <string.h>
-#include <iostream.h>
+#include <cmath>
+#include <cstring>
+#include <iostream>
 
 #include "framebase.h"
 #include "fitsimage.h"
--- saotk/colorbar/colorbarbase.C.orig	2008-04-16 15:41:10.236325709 +0000
+++ saotk/colorbar/colorbarbase.C	2008-04-16 15:33:33.482296780 +0000
@@ -11,6 +11,7 @@
 #include <X11/Xutil.h>
 
 #include "parser.H"
+#include <cstdlib>
 
 // Parser Stuff
 #undef yyFlexLexer
--- saotk/colorbar/colorbar.C.orig	2008-04-16 15:27:48.890467306 +0000
+++ saotk/colorbar/colorbar.C	2008-04-16 15:28:09.291629902 +0000
@@ -2,8 +2,8 @@
 // Smithsonian Astrophysical Observatory, Cambridge, MA, USA
 // For conditions of distribution and use, see copyright notice in "copyright"
 
-#include <stdlib.h>
-#include <string.h>
+#include <cstdlib>
+#include <cstring>
 
 #include "colorbar.h"
 #include "util.h"
--- saotk/util/conputs.C.orig	2008-04-16 15:41:48.354497940 +0000
+++ saotk/util/conputs.C	2008-04-16 15:42:01.775262745 +0000
@@ -1,3 +1,4 @@
+#include <cstring>
 #include <iostream>
 using namespace std;
 
--- ds9/ds9.C.orig	2008-04-16 15:45:04.281663192 +0000
+++ ds9/ds9.C	2008-04-16 15:45:17.622423439 +0000
@@ -1,3 +1,4 @@
+#include <cstdlib>
 #include <iostream>
 using namespace std;
 



1.1                  sci-astronomy/ds9/files/ds9-5.2-Makefile.patch

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/ds9/files/ds9-5.2-Makefile.patch?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/ds9/files/ds9-5.2-Makefile.patch?rev=1.1&content-type=text/plain

Index: ds9-5.2-Makefile.patch
===================================================================
--- Makefile.orig	2008-04-16 13:43:29.417500857 +0000
+++ Makefile	2008-04-16 14:03:38.346474803 +0000
@@ -237,23 +237,23 @@
 tcl	: FORCE
 	@echo "Installing Tcl..."
 	cd $(TCLDIRDIR); CC='$(CC)' CFLAGS='$(OPTS) $(TCLOPTS)' LDFLAGS='$(LIBS)' ./configure $(TCLFLAGS) --disable-shared
-	cd $(TCLDIRDIR); $(MAKE) install
+	cd $(TCLDIRDIR); $(MAKE) install-binaries install-libraries
 
 tk	: FORCE
 	@echo "Installing Tk..."
 	cd $(TKDIRDIR); CC='$(CC)' CFLAGS='$(OPTS) $(TCLOPTS)' LDFLAGS='$(LIBS)' ./configure $(TCLFLAGS) --disable-shared
-	cd $(TKDIRDIR); $(MAKE) install
+	cd $(TKDIRDIR); $(MAKE) install-binaries install-libraries
 	$(RM) -r lib/$(TKVER)/demos
 
 tktable	: FORCE
 	@echo "Installing TkTable..."
 	cd $(TKTABLEDIR); CC='$(CC)' CFLAGS='$(OPTS)' LDFLAGS='$(LIBS)' ./configure $(TKTABLEFLAGS) --disable-shared
-	cd $(TKTABLEDIR); $(MAKE); $(MAKE) install
+	cd $(TKTABLEDIR); $(MAKE); $(MAKE) install-binaries install-libraries
 
 tcllib	: FORCE
 	@echo "Installing TclLib..."
 	cd $(TCLLIBDIR); ./configure $(TCLLIBFLAGS)
-	cd $(TCLLIBDIR); $(MAKE) install
+	cd $(TCLLIBDIR); $(MAKE) install-libraries
 
 tkcon	: FORCE
 	@echo "Installing TkCon..."
@@ -295,7 +295,7 @@
 	@echo "Installing XPA..."
 	cd $(XPADIR); CC='$(CC)' CFLAGS='$(OPTS)' LDFLAGS='$(OPTS) $(LIBS)' ./configure $(XPAFLAGS)  --disable-shared
 	cd $(XPADIR); $(MAKE); $(MAKE) install
-	cd bin; $(STRIP) xpa*
+
 
 iis	: FORCE
 	@echo "Installing IIS..."



-- 
gentoo-commits@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2008-04-16 16:14 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-04-16 16:13 [gentoo-commits] gentoo-x86 commit in sci-astronomy/ds9/files: ds9-5.1-gcc4.2-x86.patch ds9-5.2-gcc43.patch ds9-5.2-Makefile.patch Sebastien Fabbro (bicatali)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox