pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/misc/celestia Changes 1.3.2:
details: https://anonhg.NetBSD.org/pkgsrc/rev/fc37730c52d0
branches: trunk
changeset: 483314:fc37730c52d0
user: adam <adam%pkgsrc.org@localhost>
date: Wed Nov 10 16:38:27 2004 +0000
description:
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:
misc/celestia/Makefile | 17 +---
misc/celestia/Makefile.common | 31 ++++---
misc/celestia/PLIST | 137 +++++++++++++++++++++++++++++++----
misc/celestia/distinfo | 15 +--
misc/celestia/patches/patch-aa | 154 -----------------------------------------
misc/celestia/patches/patch-ab | 20 ++--
misc/celestia/patches/patch-ac | 12 ---
misc/celestia/patches/patch-ad | 8 +-
misc/celestia/patches/patch-ae | 8 +-
9 files changed, 165 insertions(+), 237 deletions(-)
diffs (truncated from 681 to 300 lines):
diff -r 486c5153f78c -r fc37730c52d0 misc/celestia/Makefile
--- a/misc/celestia/Makefile Wed Nov 10 16:23:20 2004 +0000
+++ b/misc/celestia/Makefile Wed Nov 10 16:38:27 2004 +0000
@@ -1,25 +1,14 @@
-# $NetBSD: Makefile,v 1.4 2004/04/24 18:53:40 snj Exp $
-#
-
-.include "../../misc/celestia/Makefile.common"
+# $NetBSD: Makefile,v 1.5 2004/11/10 16:38:27 adam Exp $
COMMENT= Free real-time 3D space simulator
-USE_PKGINSTALL= YES
-
-CONFIGURE_ARGS+= --without-gtk
-CONFIGURE_ARGS+= --without-kde
+USE_PKGINSTALL= yes
EGDIR= ${PREFIX}/share/examples/celestia
-
CONF_FILES= ${EGDIR}/celestia.cfg.default ${PKG_SYSCONFDIR}/celestia.cfg
post-install:
${INSTALL_DATA_DIR} ${EGDIR}
${INSTALL_DATA} ${WRKSRC}/celestia.cfg ${EGDIR}/celestia.cfg.default
-.include "../../graphics/Mesa/buildlink3.mk"
-.include "../../graphics/jpeg/buildlink3.mk"
-.include "../../graphics/png/buildlink3.mk"
-
-.include "../../mk/bsd.pkg.mk"
+.include "../../misc/celestia/Makefile.common"
diff -r 486c5153f78c -r fc37730c52d0 misc/celestia/Makefile.common
--- a/misc/celestia/Makefile.common Wed Nov 10 16:23:20 2004 +0000
+++ b/misc/celestia/Makefile.common Wed Nov 10 16:38:27 2004 +0000
@@ -1,8 +1,6 @@
-# $NetBSD: Makefile.common,v 1.7 2004/10/03 00:12:58 tv Exp $
-#
+# $NetBSD: Makefile.common,v 1.8 2004/11/10 16:38:27 adam Exp $
DISTNAME= celestia-${CELESTIA_VERS}
-PKGREVISION= 2
CATEGORIES= misc x11
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=celestia/}
@@ -12,18 +10,17 @@
DISTINFO_FILE= ${.CURDIR}/../../misc/celestia/distinfo
PATCHDIR= ${.CURDIR}/../../misc/celestia/patches
-CELESTIA_VERS= 1.3.0
+CELESTIA_VERS= 1.3.2
-USE_BUILDLINK3= YES
-GNU_CONFIGURE= YES
-USE_X11= YES
-USE_GNU_TOOLS+= make
-USE_LIBTOOL= YES
+USE_BUILDLINK3= yes
+USE_GNU_TOOLS+= make
+USE_LIBTOOL= yes
+USE_X11= yes
+GNU_CONFIGURE= yes
+#CONFIGURE_ARGS+= --includedir=${PREFIX}/include
+CONFIGURE_ARGS+= --with-lua --with-glut
-CONFIGURE_ARGS+= --includedir=${PREFIX}/include
-CONFIGURE_ARGS+= --with-lua=${BUILDLINK_PREFIX.lua}
-
-CXXFLAGS= -DPKG_SYSCONFDIR=\"\\\"${PKG_SYSCONFDIR}\\\"\"
+CXXFLAGS+= -DPKG_SYSCONFDIR=\"\\\"${PKG_SYSCONFDIR}\\\"\"
.include "../../mk/bsd.prefs.mk"
@@ -31,9 +28,15 @@
CONFIGURE_ARGS+= --with-xinerama
.endif
-.include "../../lang/lua/buildlink3.mk"
.include "../../mk/pthread.buildlink3.mk"
.if defined(PTHREAD_TYPE) && (${PTHREAD_TYPE} == "none")
CONFIGURE_ARGS+= --disable-threading
.endif
+
+.include "../../graphics/glut/buildlink3.mk"
+.include "../../graphics/jpeg/buildlink3.mk"
+.include "../../graphics/png/buildlink3.mk"
+.include "../../lang/lua/buildlink3.mk"
+
+.include "../../mk/bsd.pkg.mk"
diff -r 486c5153f78c -r fc37730c52d0 misc/celestia/PLIST
--- a/misc/celestia/PLIST Wed Nov 10 16:23:20 2004 +0000
+++ b/misc/celestia/PLIST Wed Nov 10 16:38:27 2004 +0000
@@ -1,25 +1,45 @@
-@comment $NetBSD: PLIST,v 1.2 2003/05/09 00:23:56 salo Exp $
+@comment $NetBSD: PLIST,v 1.3 2004/11/10 16:38:27 adam Exp $
bin/celestia
share/celestia/COPYING
+share/celestia/celestia.png
share/celestia/controls.txt
share/celestia/data/asterisms.dat
+share/celestia/data/asteroids.ssc
share/celestia/data/boundaries.dat
+share/celestia/data/cassini.xyz
+share/celestia/data/comets.ssc
share/celestia/data/deepsky.dsc
share/celestia/data/extrasolar.ssc
-share/celestia/data/galaxies.dat
share/celestia/data/galileo.xyz
-share/celestia/data/hdnames.dat
+share/celestia/data/huygens.xyz
+share/celestia/data/outersys.ssc
share/celestia/data/solarsys.ssc
+share/celestia/data/solsys_locs.ssc
+share/celestia/data/spacecraft.ssc
share/celestia/data/starnames.dat
share/celestia/data/stars.dat
+share/celestia/data/world-capitals.ssc
share/celestia/demo.cel
share/celestia/extras/apollo.ssc
share/celestia/extras/comets.ssc
+share/celestia/extras/eros_locs2.ssc
+share/celestia/extras/gaspra_locs2.ssc
+share/celestia/extras/ida_locs2.ssc
+share/celestia/extras/jupmoons2.ssc
+share/celestia/extras/mars_locs2.ssc
+share/celestia/extras/marsmoons2.ssc
+share/celestia/extras/merc_locs2.ssc
share/celestia/extras/minormoons.ssc
+share/celestia/extras/moon_locs2.ssc
+share/celestia/extras/nepmoons2.ssc
share/celestia/extras/numberedmoons.ssc
+share/celestia/extras/ring_locs.ssc
+share/celestia/extras/satmoons2.ssc
share/celestia/extras/shroxclassic.ssc
share/celestia/extras/shroxmars.ssc
share/celestia/extras/skylab.ssc
+share/celestia/extras/uranmoons.ssc
+share/celestia/extras/venus_locs2.ssc
share/celestia/fonts/clean12.txf
share/celestia/fonts/clean16.txf
share/celestia/fonts/cleanbold12.txf
@@ -32,142 +52,220 @@
share/celestia/fonts/helvbold12.txf
share/celestia/fonts/helvbold18.txf
share/celestia/fonts/helvbold24.txf
+share/celestia/fonts/sans10.txf
+share/celestia/fonts/sans12.txf
+share/celestia/fonts/sans14.txf
+share/celestia/fonts/sans20.txf
+share/celestia/fonts/sansbold10.txf
+share/celestia/fonts/sansbold12.txf
+share/celestia/fonts/sansbold14.txf
share/celestia/fonts/sansbold20.txf
share/celestia/guide.cel
share/celestia/models/amalthea.3ds
+share/celestia/models/amalthea.cmod
share/celestia/models/apollo.3ds
share/celestia/models/asteroid.cms
share/celestia/models/bacchus.3ds
+share/celestia/models/bacchus.cmod
share/celestia/models/borrelly.cms
+share/celestia/models/cassini.3ds
share/celestia/models/castalia.3ds
+share/celestia/models/castalia.cmod
share/celestia/models/deimos.3ds
+share/celestia/models/deimos.cmod
share/celestia/models/epimetheus.3ds
+share/celestia/models/epimetheus.cmod
share/celestia/models/eros.3ds
+share/celestia/models/eros.cmod
share/celestia/models/eros.cms
share/celestia/models/galileo.3ds
share/celestia/models/gaspra.3ds
+share/celestia/models/gaspra.cmod
share/celestia/models/gemini.3ds
share/celestia/models/geographos.3ds
+share/celestia/models/geographos.cmod
share/celestia/models/golevka.3ds
+share/celestia/models/golevka.cmod
+share/celestia/models/halley.3ds
+share/celestia/models/halley.cmod
share/celestia/models/hubble.3ds
+share/celestia/models/huygens.3ds
share/celestia/models/hyperion.3ds
+share/celestia/models/hyperion.cmod
share/celestia/models/hyperion.cms
share/celestia/models/ida.3ds
+share/celestia/models/ida.cmod
share/celestia/models/iss.3ds
share/celestia/models/janus.3ds
+share/celestia/models/janus.cmod
share/celestia/models/kleopatra.3ds
+share/celestia/models/kleopatra.cmod
share/celestia/models/ky26.3ds
+share/celestia/models/ky26.cmod
+share/celestia/models/larissa.3ds
+share/celestia/models/larissa.cmod
share/celestia/models/marsglobalsurvr.3ds
share/celestia/models/marsodyssey.3ds
share/celestia/models/mercury7.3ds
share/celestia/models/mir.3ds
+share/celestia/models/pandora.3ds
+share/celestia/models/pandora.cmod
share/celestia/models/phobos.3ds
+share/celestia/models/phobos.cmod
share/celestia/models/prometheus.3ds
+share/celestia/models/prometheus.cmod
share/celestia/models/proteus.3ds
+share/celestia/models/proteus.cmod
share/celestia/models/proteus.cms
share/celestia/models/roughsphere.cms
share/celestia/models/skylab.3ds
share/celestia/models/toutatis.3ds
+share/celestia/models/toutatis.cmod
share/celestia/models/vesta.3ds
+share/celestia/models/vesta.cmod
share/celestia/shaders/bumpdiffuse.vp
share/celestia/shaders/bumpdiffuse_arb.vp
+share/celestia/shaders/bumpdiffuse_nv.fp
share/celestia/shaders/bumphaze.vp
share/celestia/shaders/bumphaze_arb.vp
share/celestia/shaders/diffuse.vp
share/celestia/shaders/diffuse_arb.vp
+share/celestia/shaders/diffuse_nv.fp
share/celestia/shaders/diffuse_texoff.vp
share/celestia/shaders/diffuse_texoff_arb.vp
+share/celestia/shaders/eclipse1_nv.fp
+share/celestia/shaders/eclipse2_nv.fp
share/celestia/shaders/glossmap_arb.vp
share/celestia/shaders/haze.vp
share/celestia/shaders/haze_arb.vp
+share/celestia/shaders/multishadow_arb.vp
share/celestia/shaders/night.vp
share/celestia/shaders/night_arb.vp
share/celestia/shaders/rings.vp
share/celestia/shaders/rings_arb.vp
share/celestia/shaders/ringshadow.vp
share/celestia/shaders/ringshadow_arb.vp
+share/celestia/shaders/sample_nv.fp
+share/celestia/shaders/shadow_on_rings_nv.fp
share/celestia/shaders/shadowtex.vp
share/celestia/shaders/shadowtex_arb.vp
share/celestia/shaders/simple.vp
share/celestia/shaders/simple_arb.vp
share/celestia/shaders/specular.vp
share/celestia/shaders/specular_arb.vp
+share/celestia/shaders/texphong_alpha_arb.vp
+share/celestia/shaders/texphong_alpha_nv.fp
+share/celestia/shaders/texphong_arb.vp
+share/celestia/shaders/texphong_nv.fp
share/celestia/start.cel
-share/celestia/textures/astar.jpg
-share/celestia/textures/bstar.jpg
share/celestia/textures/flare.jpg
-share/celestia/textures/gstar.jpg
share/celestia/textures/logo.png
+share/celestia/textures/lores/amalthea.jpg
+share/celestia/textures/lores/ariel-lok-mask.png
share/celestia/textures/lores/ariel.jpg
share/celestia/textures/lores/astar.jpg
share/celestia/textures/lores/asteroid.jpg
share/celestia/textures/lores/browndwarf.jpg
share/celestia/textures/lores/bstar.jpg
+share/celestia/textures/lores/callisto-lok-mask.png
share/celestia/textures/lores/callisto.jpg
-share/celestia/textures/lores/charon.jpg
+share/celestia/textures/lores/charon-lok-spec.jpg
+share/celestia/textures/lores/charon-lok.jpg
share/celestia/textures/lores/deimos.jpg
share/celestia/textures/lores/dione.jpg
share/celestia/textures/lores/earth-clouds.png
+share/celestia/textures/lores/earth-spec.png
+share/celestia/textures/lores/earth.jpg
share/celestia/textures/lores/earth.png
share/celestia/textures/lores/earthnight.jpg
share/celestia/textures/lores/enceladus.jpg
+share/celestia/textures/lores/epimetheus-lok.jpg
+share/celestia/textures/lores/epimetheus.jpg
share/celestia/textures/lores/eros.jpg
+share/celestia/textures/lores/europa-lok-mask.png
share/celestia/textures/lores/europa.jpg
+share/celestia/textures/lores/extrasolar-lok.jpg
+share/celestia/textures/lores/ganymede-lok-mask.png
share/celestia/textures/lores/ganymede.jpg
share/celestia/textures/lores/gasgiant.jpg
+share/celestia/textures/lores/gasgiantnight.jpg
share/celestia/textures/lores/gaspramosaic.jpg
share/celestia/textures/lores/gstar.jpg
+share/celestia/textures/lores/hyperion-lok.jpg
+share/celestia/textures/lores/hyperion.jpg
share/celestia/textures/lores/iapetus.jpg
share/celestia/textures/lores/idamosaic.jpg
+share/celestia/textures/lores/io-lok-mask.png
share/celestia/textures/lores/io.jpg
+share/celestia/textures/lores/janus.jpg
share/celestia/textures/lores/jupiter.jpg
share/celestia/textures/lores/jupiterlike.jpg
share/celestia/textures/lores/mars.jpg
-share/celestia/textures/lores/marsbump1k.jpg
Home |
Main Index |
Thread Index |
Old Index