summaryrefslogtreecommitdiff
path: root/misc/celestia/patches
diff options
context:
space:
mode:
authoradam <adam>2004-11-10 16:38:27 +0000
committeradam <adam>2004-11-10 16:38:27 +0000
commit0b79313a60b6723e2f66dd7918e0b6d68a69225f (patch)
treeaf8dbc0eee4fe70ebf2973c8172bc13d6013e4c8 /misc/celestia/patches
parent35ea86061fa0115e7ca3a7a83cc5f7f85fce81aa (diff)
downloadpkgsrc-0b79313a60b6723e2f66dd7918e0b6d68a69225f.tar.gz
Changes 1.3.2:
* Added support for extended character sets (most of WGL4) and UTF-8 encoded strings * Updated info display to show apparent size of selected object * Enable tab completion of location names * Introduced support for JPL ephemeris files * Fixed crash in Windows star browser that occurred after changing the number of stars and pressing return. * Fixed bug that made stars and galaxies appear square when certain nebulae were in view. * Made the delete button in the Windows bookmarks organizer actually work * Updated orbits for Amalthea and Phoebe * Fixed seams in Jupiter and Phobos textures * Spacecraft orbit paths adaptively sampled for smoother results * Eliminated obscuring of location labels that occurred low view aspect ratios * Added models of comet Halley and the small moons Pandora and Larissa * Added limit of knowledge masks for the Galilean moons * Changed spectral class of carbon stars to C, which supercedes and combines R and N * Lua scripting additions * View management commands * Image capture commands * Made setrenderflags and setlabelflags accept a table * Orbit and locations settings * observer:cancelgoto * Made the cursor shape change to the resize icon when positioned over view borders * Added a new 3D file format: cmod, the Celestia model format * Documented the fields in celestia.cfg with extensive comments * Added newly discovered extrasolar planet HD 330075 b * Added Cassini and Huygens models and trajectories * Fixed crashing bug in the eclipse finder * Changed default start location to Earth * Revised some erroneous spectral classes in star catalog * Made solar system objects occlude labels of more distant objects * Implemented an algorithm for importance weights to avoid overlapping or too crowded location labels for Mars, Venus and the Moon * Added new textures for Titan based on recent imaging from the Cassini mission * Improved depth sorting so that hidden surface removal works properly for overlapping objects * Added theoretical estimates of oblateness and rotation rate for extrasolar planets * Replaced old Io and Europa textures with improved versions * Added disposition modifier for ssc objects to control what happens when an object with the same name and parent already exists. The three possible behaviors are Add (the default), Replace, and Modify. * WINDOWS: Limited CPU usage when main window is minimized * WINDOWS: Changed preferred z-buffer depth from 16 to 24 bits to reduce z-fight artifacts. * Fixed labels and info text so it looks crisp when multisample antialiasing is enabled. * Eliminated flickering of location labels * WINDOWS: Save texture resolution setting between sessions
Diffstat (limited to 'misc/celestia/patches')
-rw-r--r--misc/celestia/patches/patch-aa154
-rw-r--r--misc/celestia/patches/patch-ab20
-rw-r--r--misc/celestia/patches/patch-ac12
-rw-r--r--misc/celestia/patches/patch-ad8
-rw-r--r--misc/celestia/patches/patch-ae8
5 files changed, 18 insertions, 184 deletions
diff --git a/misc/celestia/patches/patch-aa b/misc/celestia/patches/patch-aa
deleted file mode 100644
index 14f3fba8d49..00000000000
--- a/misc/celestia/patches/patch-aa
+++ /dev/null
@@ -1,154 +0,0 @@
-$NetBSD: patch-aa,v 1.1.1.1 2003/05/08 23:47:03 salo Exp $
-
---- configure.orig 2003-04-16 09:03:21.000000000 +0200
-+++ configure 2003-05-08 18:06:45.000000000 +0200
-@@ -14924,7 +14924,7 @@
- else
- enable_debug="no"
- fi;
--if test "$enable_debug" == "yes" ; then
-+if test "$enable_debug" = "yes" ; then
- CELESTIA_CFLAGS="-g -Wall"; CELESTIA_CXXFLAGS="-g -Wall"
- cat >>confdefs.h <<\_ACEOF
- #define DEBUG 1
-@@ -14943,7 +14943,7 @@
- else
- enable_pedantic="no"
- fi;
--if test "$enable_pedantic" == "yes" ; then
-+if test "$enable_pedantic" = "yes" ; then
- CELESTIA_CFLAGS="$CELESTIA_CFLAGS -ansi -pedantic"; CELESTIA_CXXFLAGS="$CELESTIA_CXXFLAGS -pedantic"
- fi
- echo "$as_me:$LINENO: result: $enable_pedantic" >&5
-@@ -14958,7 +14958,7 @@
- else
- enable_profile="no"
- fi;
--if test "$enable_profile" == "yes" ; then
-+if test "$enable_profile" = "yes" ; then
- CELESTIA_CFLAGS="$CELESTIA_CFLAGS -pg"; CELESTIA_CXXFLAGS="$CELESTIA_CXXFLAGS -pg"
- else
- if test "$enable_debug" != "yes" ; then
-@@ -15026,7 +15026,7 @@
-
- echo "$as_me:$LINENO: checking whether to enable GLUT" >&5
- echo $ECHO_N "checking whether to enable GLUT... $ECHO_C" >&6
--if test "$enable_gtk" == "no" -a "$gtk_by_default" == "no" -a "$enable_kde" == "no" -a "$kde_by_default" == "no"; then
-+if test "$enable_gtk" = "no" -a "$gtk_by_default" = "no" -a "$enable_kde" = "no" -a "$kde_by_default" = "no"; then
- enable_glut="yes"
- echo "$as_me:$LINENO: result: yes" >&5
- echo "${ECHO_T}yes" >&6
-@@ -15035,15 +15035,15 @@
- echo "${ECHO_T}no" >&6
- fi
-
--if test "$enable_gtk" != "no" -a "$gtk_by_default" == "no" -a "$enable_kde" != "no" -a "$kde_by_default" == "no"; then
-+if test "$enable_gtk" != "no" -a "$gtk_by_default" = "no" -a "$enable_kde" != "no" -a "$kde_by_default" = "no"; then
- enable_gtk="no"
- fi
-
--if test "$enable_gtk" != "no" -a "$gtk_by_default" == "no" -a "$kde_by_default" == "yes" ; then
-+if test "$enable_gtk" != "no" -a "$gtk_by_default" = "no" -a "$kde_by_default" = "yes" ; then
- enable_kde="no"
- fi
-
--if test "$enable_gtk" == "no" -a "$gtk_by_default" == "yes" -a "$enable_kde" == "no" -a "$kde_by_default" == "no" ; then
-+if test "$enable_gtk" = "no" -a "$gtk_by_default" = "yes" -a "$enable_kde" = "no" -a "$kde_by_default" = "no" ; then
- enable_gtk="yes"
- fi
-
-@@ -15058,7 +15058,7 @@
- echo "$as_me:$LINENO: result: GTK" >&5
- echo "${ECHO_T}GTK" >&6
- fi
--if test "$enable_glut" == "yes" ; then
-+if test "$enable_glut" = "yes" ; then
- echo "$as_me:$LINENO: result: GLUT" >&5
- echo "${ECHO_T}GLUT" >&6
- fi
-@@ -15067,7 +15067,7 @@
-
- echo "$as_me:$LINENO: checking whether to disable GTK." >&5
- echo $ECHO_N "checking whether to disable GTK.... $ECHO_C" >&6
--if test "$enable_gtk" == "yes" ; then
-+if test "$enable_gtk" = "yes" ; then
- echo "$as_me:$LINENO: result: no" >&5
- echo "${ECHO_T}no" >&6
-
-@@ -15376,7 +15376,7 @@
- rm -f conf.gtktest
-
-
-- if test "$enable_gtk_by_default" == "no" -a "$enable_gtk" == "no"; then
-+ if test "$enable_gtk_by_default" = "no" -a "$enable_gtk" = "no"; then
- echo "$as_me:$LINENO: result: Unable to find GTK" >&5
- echo "${ECHO_T}Unable to find GTK" >&6
- enable_glut="yes"
-@@ -20537,7 +20537,7 @@
- fi
-
-
--if test "$enable_gtk" != "no" -o "$enable_glut" == "yes" ; then
-+if test "$enable_gtk" != "no" -o "$enable_glut" = "yes" ; then
-
- for ac_header in GL/glut.h
- do
-@@ -20756,7 +20756,7 @@
- fi
-
-
--if test "$enable_glut" == "yes"; then
-+if test "$enable_glut" = "yes"; then
- ENABLE_GLUT_TRUE=
- ENABLE_GLUT_FALSE='#'
- else
-@@ -20835,7 +20835,7 @@
- fi
-
-
-- if test "$enable_gtk_by_default" == "no" -a "$enable_gtk" == "no"; then
-+ if test "$enable_gtk_by_default" = "no" -a "$enable_gtk" = "no"; then
- { { echo "$as_me:$LINENO: error: Unable to find gtkglarea" >&5
- echo "$as_me: error: Unable to find gtkglarea" >&2;}
- { (exit 1); exit 1; }; }
-@@ -22103,7 +22103,7 @@
- LIBS="$LIBS $GTK_LIBS $GNOME_LIBS $GNOMEUI_LIBS $GTKGL_LIBS"
- LDFLAGS="$LDFLAGS $GNOME_LIBDIR"
- else
-- if test "$enable_gtk_by_default" == "yes" ; then
-+ if test "$enable_gtk_by_default" = "yes" ; then
- { echo "$as_me:$LINENO: WARNING: Disabled GTK GUI because of missing necessary packages" >&5
- echo "$as_me: WARNING: Disabled GTK GUI because of missing necessary packages" >&2;}
- fi
-@@ -22111,7 +22111,7 @@
- fi
-
-
--if test "$enable_gtk" == "yes"; then
-+if test "$enable_gtk" = "yes"; then
- ENABLE_GTK_TRUE=
- ENABLE_GTK_FALSE='#'
- else
-@@ -29752,7 +29752,7 @@
- fi
-
-
--if test "$enable_kde" == "yes"; then
-+if test "$enable_kde" = "yes"; then
- ENABLE_KDE_TRUE=
- ENABLE_KDE_FALSE='#'
- else
-@@ -30423,12 +30423,7 @@
- prefix=$ac_default_prefix
- fi
-
--if test "$enable_kde" == "yes" ; then
-- PKGDATADIR=`eval echo "${kde_datadir}/$PACKAGE"`
-- datadir=${kde_datadir}
--else
-- PKGDATADIR=`eval echo "${datadir}/$PACKAGE"`
--fi
-+PKGDATADIR=`eval echo "${datadir}/$PACKAGE"`
-
-
- cat >>confdefs.h <<_ACEOF
diff --git a/misc/celestia/patches/patch-ab b/misc/celestia/patches/patch-ab
index 6755fac367e..7d957019121 100644
--- a/misc/celestia/patches/patch-ab
+++ b/misc/celestia/patches/patch-ab
@@ -1,13 +1,13 @@
-$NetBSD: patch-ab,v 1.1.1.1 2003/05/08 23:47:03 salo Exp $
+$NetBSD: patch-ab,v 1.2 2004/11/10 16:38:27 adam Exp $
---- manual/Makefile.in.orig 2003-04-16 09:04:31.000000000 +0200
-+++ manual/Makefile.in 2003-05-07 23:38:16.000000000 +0200
-@@ -38,7 +38,7 @@
- build_triplet = @build@
- host_triplet = @host@
- target_triplet = @target@
+--- manual/Makefile.in.orig 2004-08-23 07:22:06.000000000 +0000
++++ manual/Makefile.in
+@@ -69,7 +69,7 @@ target_triplet = @target@
+ EXEEXT = @EXEEXT@
+ OBJEXT = @OBJEXT@
+ PATH_SEPARATOR = @PATH_SEPARATOR@
-pkgdatadir = @datadir@/@PACKAGE@/manual
+pkgdatadir = @datadir@/doc/html/@PACKAGE@/manual
- ACLOCAL = @ACLOCAL@
- AMDEP_FALSE = @AMDEP_FALSE@
- AMDEP_TRUE = @AMDEP_TRUE@
+ AMTAR = @AMTAR@
+ ARTSCCONFIG = @ARTSCCONFIG@
+ AS = @AS@
diff --git a/misc/celestia/patches/patch-ac b/misc/celestia/patches/patch-ac
deleted file mode 100644
index 826f740b2b6..00000000000
--- a/misc/celestia/patches/patch-ac
+++ /dev/null
@@ -1,12 +0,0 @@
-$NetBSD: patch-ac,v 1.1.1.1 2003/05/08 23:47:03 salo Exp $
-
---- src/celestia/kde/kdeapp.h.orig 2003-04-09 09:14:04.000000000 +0200
-+++ src/celestia/kde/kdeapp.h 2003-05-08 18:45:02.000000000 +0200
-@@ -22,6 +22,7 @@
- #include <config.h>
- #endif
-
-+#include <time.h>
- #include <kapp.h>
- #include <qwidget.h>
- #include <kmainwindow.h>
diff --git a/misc/celestia/patches/patch-ad b/misc/celestia/patches/patch-ad
index 7bf160f5f18..793414e74ab 100644
--- a/misc/celestia/patches/patch-ad
+++ b/misc/celestia/patches/patch-ad
@@ -1,8 +1,8 @@
-$NetBSD: patch-ad,v 1.1.1.1 2003/05/08 23:47:03 salo Exp $
+$NetBSD: patch-ad,v 1.2 2004/11/10 16:38:27 adam Exp $
---- src/celestia/celestiacore.cpp.orig 2003-04-14 19:58:00.000000000 +0200
-+++ src/celestia/celestiacore.cpp 2003-05-08 23:46:34.000000000 +0200
-@@ -2658,7 +2658,7 @@
+--- src/celestia/celestiacore.cpp.orig 2004-07-30 07:10:10.000000000 +0000
++++ src/celestia/celestiacore.cpp
+@@ -3454,7 +3454,7 @@ bool CelestiaCore::initSimulation()
}
#endif
diff --git a/misc/celestia/patches/patch-ae b/misc/celestia/patches/patch-ae
index 336f03bc7be..6215481fe49 100644
--- a/misc/celestia/patches/patch-ae
+++ b/misc/celestia/patches/patch-ae
@@ -1,8 +1,8 @@
-$NetBSD: patch-ae,v 1.2 2003/05/09 00:23:56 salo Exp $
+$NetBSD: patch-ae,v 1.3 2004/11/10 16:38:27 adam Exp $
---- Makefile.in.orig 2003-04-16 09:04:31.000000000 +0200
-+++ Makefile.in 2003-05-08 23:54:18.000000000 +0200
-@@ -270,7 +270,7 @@
+--- Makefile.in.orig 2004-08-23 07:22:06.000000000 +0000
++++ Makefile.in
+@@ -255,7 +255,7 @@ x_includes = @x_includes@
x_libraries = @x_libraries@
dosstuff = celestia.mak $(wildcard *.bat)
noinst_DATA = devguide.txt $(dosstuff)