diff options
author | adam <adam> | 2008-10-26 14:03:37 +0000 |
---|---|---|
committer | adam <adam> | 2008-10-26 14:03:37 +0000 |
commit | 7efcc49a86eee81b852dd219a98bca9b84df8835 (patch) | |
tree | 39ff2a2c7fa232d91ce755fa22b6f873fc38d226 /misc/stellarium/Makefile | |
parent | 6b19ff2598c2424c089f48b074cb8e69edf827c2 (diff) | |
download | pkgsrc-7efcc49a86eee81b852dd219a98bca9b84df8835.tar.gz |
Changes 0.10.0:
* Global switch to Qt. Don't support SDL main application anymore.
* The whole StelApp class is managed by a QGraphicsScene, inside a
QGraphicsView.
* Removed deprecated sources from the core of stellarium.
* Continued API cleaning and simplifications.
* Performed large refactorings to use portable Qt API.
* Re-organized the source files into sub-directories.
* Migrated config file parsing to a QSettings based implementation.
* Exposed some methods as slots so that they can be scripted in the future.
* Created the new Qt-based GUI button bars.
* Recoded from scratch the new QWidget based GUI rendered in the QGraphicsView
using style sheets.
* Moved stars/planets halo rendering into SkyDrawer.
* Implemented dynamic eye adaptation for bright objects.
* Optimized atmosphere computation and others, speed can be increased up to
a factor of 2.
* Implemented light pollution following the Bortle scale index.
* Improved and optimized stars rendering (updated colors, sizes and added
large halo for very bright ones, use GL lists for drawing stars by bunch)
* Created a new SkyTile class supporting lazy dynamic multi-resolution images
loading and display. Image trees can be stored as JSON files.
* Startup is much faster.
* Migrated the previous nebula textures to the new format.
* Added a LocationManager for managing observing locations and cleaned
the code of observer.
* Changed key bindings, use F1.. F6 for opening dialogs.
* Tab completion on the search dialog.
* Added descriptions for the sky cultures and improved the ones for landscapes.
* Added a new mars landscape.
* Fixed many bugs.
Diffstat (limited to 'misc/stellarium/Makefile')
-rw-r--r-- | misc/stellarium/Makefile | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/misc/stellarium/Makefile b/misc/stellarium/Makefile index 556553c4218..57aa9c58606 100644 --- a/misc/stellarium/Makefile +++ b/misc/stellarium/Makefile @@ -1,8 +1,9 @@ -# $NetBSD: Makefile,v 1.27 2008/09/16 22:51:20 markd Exp $ +# $NetBSD: Makefile,v 1.28 2008/10/26 14:03:37 adam Exp $ -DISTNAME= stellarium-0.9.1 +DISTNAME= stellarium-0.10.0 CATEGORIES= misc MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=stellarium/} +EXTRACT_SUFX= .tgz MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= http://www.stellarium.org/ @@ -19,11 +20,11 @@ CMAKE_ARGS+= -D FreeType2_INCLUDE_DIR:PATH=${BUILDLINK_PREFIX.freetype2}/include CMAKE_ARGS+= -D FreeType2_LIBRARIES:PATH=${BUILDLINK_PREFIX.freetype2}/lib CMAKE_ARGS+= -D SDLMIXER_INCLUDE_DIR:PATH=${BUILDLINK_PREFIX.SDL}/include/SDL +.include "../../audio/SDL_mixer/buildlink3.mk" +.include "../../devel/boost-headers/buildlink3.mk" .include "../../graphics/freetype2/buildlink3.mk" .include "../../graphics/png/buildlink3.mk" +.include "../../www/curl/buildlink3.mk" .include "../../x11/qt4-libs/buildlink3.mk" .include "../../x11/qt4-tools/buildlink3.mk" -.include "../../devel/boost-headers/buildlink3.mk" -.include "../../www/curl/buildlink3.mk" -.include "../../audio/SDL_mixer/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |