ports/76259: Update port: astro/stellarium to 0.6.2

Jean-Yves Lefort jylefort at brutele.be
Sat Jan 15 04:00:50 UTC 2005


>Number:         76259
>Category:       ports
>Synopsis:       Update port: astro/stellarium to 0.6.2
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          maintainer-update
>Submitter-Id:   current-users
>Arrival-Date:   Sat Jan 15 04:00:42 GMT 2005
>Closed-Date:
>Last-Modified:
>Originator:     Jean-Yves Lefort
>Release:        FreeBSD 5.3-RELEASE i386
>Organization:
>Environment:
System: FreeBSD jsite.lefort.net 5.3-RELEASE FreeBSD 5.3-RELEASE #0: Thu Dec 2 15:08:28 CET 2004 jylefort at jsite.lefort.net:/usr/obj/usr/src/sys/JSITE i386
>Description:
>How-To-Repeat:
>Fix:
diff -ruN /usr/ports/astro/stellarium/Makefile stellarium/Makefile
--- /usr/ports/astro/stellarium/Makefile	Wed Jun 23 04:23:32 2004
+++ stellarium/Makefile	Sat Jan 15 03:13:24 2005
@@ -6,8 +6,7 @@
 #
 
 PORTNAME=		stellarium
-PORTVERSION=		0.6.0
-PORTREVISION=		1
+PORTVERSION=		0.6.2
 CATEGORIES=		astro
 MASTER_SITES=		${MASTER_SITE_SOURCEFORGE}
 MASTER_SITE_SUBDIR=	${PORTNAME}
@@ -15,7 +14,7 @@
 MAINTAINER=		jylefort at brutele.be
 COMMENT=		A 3D photo-realistic sky renderer
 
-USE_GCC=		3.3
+USE_GCC=		3.4
 USE_GL=			yes
 USE_SDL=		sdl
 USE_X_PREFIX=		yes
diff -ruN /usr/ports/astro/stellarium/distinfo stellarium/distinfo
--- /usr/ports/astro/stellarium/distinfo	Sun Jun 13 04:27:03 2004
+++ stellarium/distinfo	Sat Jan 15 03:18:28 2005
@@ -1,2 +1,2 @@
-MD5 (stellarium-0.6.0.tar.gz) = 820a9246cb8c17c1ef6361100984ccbe
-SIZE (stellarium-0.6.0.tar.gz) = 5934058
+MD5 (stellarium-0.6.2.tar.gz) = f00e99b88f53273419683cf18905e39c
+SIZE (stellarium-0.6.2.tar.gz) = 9431913
diff -ruN /usr/ports/astro/stellarium/files/patch-configure stellarium/files/patch-configure
--- /usr/ports/astro/stellarium/files/patch-configure	Sun Jun 13 04:27:03 2004
+++ stellarium/files/patch-configure	Sat Jan 15 03:13:17 2005
@@ -1,11 +1,11 @@
---- configure.orig	Sat Jun 12 17:26:37 2004
-+++ configure	Sat Jun 12 17:27:52 2004
-@@ -3331,8 +3331,6 @@
+--- configure.orig	Sat Jan 15 03:12:45 2005
++++ configure	Sat Jan 15 03:12:59 2005
+@@ -3341,8 +3341,6 @@
  
  
  
--CFLAGS=" -Wall -s -O3"
--CXXFLAGS=" -Wall -s -O3"
+-CFLAGS=" -Wall  -O3"
+-CXXFLAGS=" -Wall -O3"
  
  ac_ext=c
  ac_cpp='$CPP $CPPFLAGS'
diff -ruN /usr/ports/astro/stellarium/files/patch-src_observator.cpp stellarium/files/patch-src_observator.cpp
--- /usr/ports/astro/stellarium/files/patch-src_observator.cpp	Sat Jun 12 23:28:55 2004
+++ stellarium/files/patch-src_observator.cpp	Sat Jan 15 03:21:11 2005
@@ -1,11 +1,13 @@
---- src/observator.cpp.orig	Sat Jun 12 17:53:26 2004
-+++ src/observator.cpp	Sat Jun 12 17:53:50 2004
-@@ -166,25 +166,21 @@
- // Fixed 31-05-2004 Now use the extern variables set by tzset()
- float Observator::get_GMT_shift_from_system(double JD) const
- {
--	return -(float)timezone/3600 + (daylight!=0);
+--- src/observator.cpp.orig	Sat Jan 15 03:19:14 2005
++++ src/observator.cpp	Sat Jan 15 03:20:57 2005
+@@ -174,27 +174,23 @@
+ 	// + (timeinfo->tm_isdst!=0);
+ 	// only tells if dst is in effect for actual time, not drawn time
+ #else
+-	return -(float)timezone/3600;
+ 	// no portable dst method implemented yet, so just standard time for all platforms
  
+ #endif
  	
 -/*	time_t rawtime = get_time_t_from_julian(JD);
 +	time_t rawtime = get_time_t_from_julian(JD);
diff -ruN /usr/ports/astro/stellarium/files/patch-src_stel_sdl.cpp stellarium/files/patch-src_stel_sdl.cpp
--- /usr/ports/astro/stellarium/files/patch-src_stel_sdl.cpp	Tue Jun 22 09:59:39 2004
+++ stellarium/files/patch-src_stel_sdl.cpp	Thu Jan  1 01:00:00 1970
@@ -1,23 +0,0 @@
---- src/stel_sdl.cpp.orig	Thu Jun 17 14:11:01 2004
-+++ src/stel_sdl.cpp	Thu Jun 17 14:16:40 2004
-@@ -60,9 +60,18 @@
-     Screen = SDL_SetVideoMode(core->get_screen_W(), core->get_screen_H(), core->get_bppMode(), Vflags);
- 	if(!Screen)
- 	{
--		printf("sdl: Couldn't set %dx%d video mode: %s!",
-+		printf("sdl: Couldn't set %dx%d video mode (%s), retrying with stencil size 0\n",
- 		core->get_screen_W(), core->get_screen_H(), SDL_GetError());
--		exit(-1);
-+
-+		SDL_GL_SetAttribute(SDL_GL_STENCIL_SIZE,0);
-+		Screen = SDL_SetVideoMode(core->get_screen_W(), core->get_screen_H(), core->get_bppMode(), Vflags);
-+
-+		if(!Screen)
-+		{
-+			printf("sdl: Couldn't set %dx%d video mode: %s!\n",
-+			core->get_screen_W(), core->get_screen_H(), SDL_GetError());
-+			exit(-1);
-+		}
- 	}
- 
- 	// Disable key repeat
diff -ruN /usr/ports/astro/stellarium/pkg-plist stellarium/pkg-plist
--- /usr/ports/astro/stellarium/pkg-plist	Sun Jun 13 04:27:04 2004
+++ stellarium/pkg-plist	Sat Jan 15 04:48:45 2005
@@ -2,8 +2,6 @@
 share/stellarium/config/default_config.ini
 share/stellarium/config/default_config_dome.ini
 share/stellarium/data/commonname.fab
-share/stellarium/data/constellationsart.fab
-share/stellarium/data/constellationship.fab
 share/stellarium/data/courierfont.txt
 share/stellarium/data/files_format.txt
 share/stellarium/data/hipparcos.fab
@@ -11,12 +9,27 @@
 share/stellarium/data/landscapes.ini
 share/stellarium/data/messier.fab
 share/stellarium/data/name.fab
-share/stellarium/data/script_load_config
-share/stellarium/data/script_save_config
-share/stellarium/data/script_set_locale
-share/stellarium/data/script_set_time_zone
+share/stellarium/data/planet_names.eng.fab
+share/stellarium/data/planet_names.esl.fab
+share/stellarium/data/planet_names.fra.fab
+share/stellarium/data/planet_names.haw.fab
+share/stellarium/data/sky_cultures/polynesian/constellation_names.eng.fab
+share/stellarium/data/sky_cultures/polynesian/constellation_names.haw.fab
+share/stellarium/data/sky_cultures/polynesian/constellationsart.fab
+share/stellarium/data/sky_cultures/polynesian/constellationship.fab
+share/stellarium/data/sky_cultures/western/constellation_names.eng.fab
+share/stellarium/data/sky_cultures/western/constellation_names.esl.fab
+share/stellarium/data/sky_cultures/western/constellation_names.fra.fab
+share/stellarium/data/sky_cultures/western/constellation_names.haw.fab
+share/stellarium/data/sky_cultures/western/constellationsart.fab
+share/stellarium/data/sky_cultures/western/constellationship.fab
+share/stellarium/data/skycultures.fab
 share/stellarium/data/spacefont.txt
 share/stellarium/data/ssystem.ini
+share/stellarium/data/star_names.eng.fab
+share/stellarium/data/star_names.esl.fab
+share/stellarium/data/star_names.fra.fab
+share/stellarium/data/star_names.haw.fab
 share/stellarium/data/stellarium.ico
 share/stellarium/data/zone.tab
 share/stellarium/textures/backmenu.png
@@ -25,6 +38,7 @@
 share/stellarium/textures/bt_cardinal.png
 share/stellarium/textures/bt_config.png
 share/stellarium/textures/bt_const_names.png
+share/stellarium/textures/bt_constart.png
 share/stellarium/textures/bt_constellations.png
 share/stellarium/textures/bt_follow.png
 share/stellarium/textures/bt_grid.png
@@ -34,8 +48,91 @@
 share/stellarium/textures/bt_planet.png
 share/stellarium/textures/bt_quit.png
 share/stellarium/textures/callisto.png
+share/stellarium/textures/constellation-art/andromeda.png
+share/stellarium/textures/constellation-art/antlia.png
+share/stellarium/textures/constellation-art/apus.png
+share/stellarium/textures/constellation-art/aquarius.png
+share/stellarium/textures/constellation-art/aquila.png
+share/stellarium/textures/constellation-art/ara.png
+share/stellarium/textures/constellation-art/argonavis.png
+share/stellarium/textures/constellation-art/aries.png
+share/stellarium/textures/constellation-art/auriga.png
+share/stellarium/textures/constellation-art/bootes.png
+share/stellarium/textures/constellation-art/caelum.png
+share/stellarium/textures/constellation-art/camelopardalis.png
+share/stellarium/textures/constellation-art/cancer.png
+share/stellarium/textures/constellation-art/canes-venatici.png
+share/stellarium/textures/constellation-art/canis-major.png
+share/stellarium/textures/constellation-art/canis-minor.png
+share/stellarium/textures/constellation-art/capricornus.png
+share/stellarium/textures/constellation-art/cassiopeia.png
+share/stellarium/textures/constellation-art/centaurus.png
+share/stellarium/textures/constellation-art/cepheus.png
+share/stellarium/textures/constellation-art/cetus.png
+share/stellarium/textures/constellation-art/chamaeleon.png
+share/stellarium/textures/constellation-art/circinus.png
+share/stellarium/textures/constellation-art/columba.png
+share/stellarium/textures/constellation-art/coma-berenices.png
+share/stellarium/textures/constellation-art/corona-australis.png
+share/stellarium/textures/constellation-art/corona-borealis.png
+share/stellarium/textures/constellation-art/corvus.png
+share/stellarium/textures/constellation-art/crater.png
+share/stellarium/textures/constellation-art/crux.png
+share/stellarium/textures/constellation-art/cygnus.png
+share/stellarium/textures/constellation-art/delphinus.png
+share/stellarium/textures/constellation-art/dorado.png
+share/stellarium/textures/constellation-art/draco.png
+share/stellarium/textures/constellation-art/equuleus.png
+share/stellarium/textures/constellation-art/eridanus.png
+share/stellarium/textures/constellation-art/fornax.png
+share/stellarium/textures/constellation-art/gemini.png
+share/stellarium/textures/constellation-art/grus.png
+share/stellarium/textures/constellation-art/hercules.png
+share/stellarium/textures/constellation-art/horlogium.png
+share/stellarium/textures/constellation-art/hydra.png
+share/stellarium/textures/constellation-art/hydrus.png
+share/stellarium/textures/constellation-art/indus.png
+share/stellarium/textures/constellation-art/lacerta.png
+share/stellarium/textures/constellation-art/leo-minor.png
+share/stellarium/textures/constellation-art/leo.png
+share/stellarium/textures/constellation-art/lepus.png
+share/stellarium/textures/constellation-art/libra.png
+share/stellarium/textures/constellation-art/lupus.png
+share/stellarium/textures/constellation-art/lynx.png
+share/stellarium/textures/constellation-art/lyra.png
+share/stellarium/textures/constellation-art/mensa.png
+share/stellarium/textures/constellation-art/microscopium.png
+share/stellarium/textures/constellation-art/monoceros.png
+share/stellarium/textures/constellation-art/musca.png
+share/stellarium/textures/constellation-art/norma.png
+share/stellarium/textures/constellation-art/octans.png
+share/stellarium/textures/constellation-art/ophiuchus.png
+share/stellarium/textures/constellation-art/orion.png
+share/stellarium/textures/constellation-art/pavo.png
+share/stellarium/textures/constellation-art/pegasus.png
+share/stellarium/textures/constellation-art/perseus.png
+share/stellarium/textures/constellation-art/phoenix.png
+share/stellarium/textures/constellation-art/pictor.png
+share/stellarium/textures/constellation-art/pisces.png
+share/stellarium/textures/constellation-art/piscis-austrinus.png
+share/stellarium/textures/constellation-art/pyxis.png
+share/stellarium/textures/constellation-art/reticulum.png
+share/stellarium/textures/constellation-art/sagitta.png
+share/stellarium/textures/constellation-art/sagittarius.png
+share/stellarium/textures/constellation-art/scorpius.png
+share/stellarium/textures/constellation-art/sculptor.png
+share/stellarium/textures/constellation-art/scutum.png
+share/stellarium/textures/constellation-art/sextans.png
+share/stellarium/textures/constellation-art/taurus.png
+share/stellarium/textures/constellation-art/telescopium.png
+share/stellarium/textures/constellation-art/triangulum-australe.png
+share/stellarium/textures/constellation-art/triangulum.png
 share/stellarium/textures/constellation-art/tucana.png
 share/stellarium/textures/constellation-art/ursa-major.png
+share/stellarium/textures/constellation-art/ursa-minor.png
+share/stellarium/textures/constellation-art/virgo.png
+share/stellarium/textures/constellation-art/volans.png
+share/stellarium/textures/constellation-art/vulpecula.png
 share/stellarium/textures/courierfont.png
 share/stellarium/textures/down.png
 share/stellarium/textures/earthmap.png
@@ -47,6 +144,15 @@
 share/stellarium/textures/io.png
 share/stellarium/textures/jupiter.png
 share/stellarium/textures/landscapes/forest.png
+share/stellarium/textures/landscapes/guereins1.png
+share/stellarium/textures/landscapes/guereins2.png
+share/stellarium/textures/landscapes/guereins3.png
+share/stellarium/textures/landscapes/guereins4.png
+share/stellarium/textures/landscapes/guereins5.png
+share/stellarium/textures/landscapes/guereins6.png
+share/stellarium/textures/landscapes/guereins7.png
+share/stellarium/textures/landscapes/guereins8.png
+share/stellarium/textures/landscapes/guereinsb.png
 share/stellarium/textures/landscapes/sea1.png
 share/stellarium/textures/landscapes/sea2.png
 share/stellarium/textures/landscapes/sea3.png
@@ -189,6 +295,9 @@
 %%PORTDOCS%%%%DOCSDIR%%/README
 %%PORTDOCS%%%%DOCSDIR%%/TODO
 @dirrm share/stellarium/config
+ at dirrm share/stellarium/data/sky_cultures/polynesian
+ at dirrm share/stellarium/data/sky_cultures/western
+ at dirrm share/stellarium/data/sky_cultures
 @dirrm share/stellarium/data
 @dirrm share/stellarium/textures/constellation-art
 @dirrm share/stellarium/textures/landscapes
>Release-Note:
>Audit-Trail:
>Unformatted:



More information about the freebsd-ports-bugs mailing list