Import stellarium-0.8.2

Stellarium is a free open source planetarium for your computer.
Stellarium renders 3D photo-realistic skies in real time with OpenGL.
It displays stars, constellations, planets, nebulas and others things
like ground, landscape, atmosphere, etc. It shows a realistic sky in 3D,
just like what you see with the naked eye, binoculars or a telescope.
It is being used in planetarium projectors. Just set your coordinates
and go.

ok steven@ kili@
This commit is contained in:
ajacoutot 2007-03-25 12:29:22 +00:00
parent 4e9964992c
commit 826c95d3ea
8 changed files with 609 additions and 0 deletions

37
astro/stellarium/Makefile Normal file
View File

@ -0,0 +1,37 @@
# $OpenBSD: Makefile,v 1.1.1.1 2007/03/25 12:29:22 ajacoutot Exp $
COMMENT= "free open source planetarium"
DISTNAME= stellarium-0.8.2
CATEGORIES= astro x11
HOMEPAGE= http://www.stellarium.org/
MAINTAINER= Antoine Jacoutot <ajacoutot@openbsd.org>
# GPLv2
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=stellarium/}
WANTLIB= freetype c pthread stdc++ usbhid Xext m GL X11 GLU z
USE_X11= Yes
MODULES= devel/gettext
LIB_DEPENDS= png.>=5::graphics/png \
SDL.>=6::devel/sdl \
SDL_mixer.>=3::devel/sdl-mixer
CONFIGURE_STYLE=gnu
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include \
-I${LOCALBASE}/include/libpng" \
LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib"
CONFIGURE_ARGS= --with-x
pre-configure:
perl -pi -e 's,\@\@PREFIX\@\@,${PREFIX},g' ${WRKSRC}/data/stellarium.1
.include <bsd.port.mk>

View File

@ -0,0 +1,5 @@
MD5 (stellarium-0.8.2.tar.gz) = 8f4bcfcf6ad74ab57f1a9fc4f3927527
RMD160 (stellarium-0.8.2.tar.gz) = cd6c8fe909bc247a46d02f0184929aba781ff1b6
SHA1 (stellarium-0.8.2.tar.gz) = f5721df4cd64ad1673d10a56e340d3d96d4827dd
SHA256 (stellarium-0.8.2.tar.gz) = 0231e6c9ab4bcbe2547e19f7166987f5a916a86a3d690a4c7f1dbec3d1f3825c
SIZE (stellarium-0.8.2.tar.gz) = 16575379

View File

@ -0,0 +1,16 @@
$OpenBSD: patch-data_default_config_ini,v 1.1.1.1 2007/03/25 12:29:22 ajacoutot Exp $
--- data/default_config.ini.orig Thu Oct 5 10:12:09 2006
+++ data/default_config.ini Fri Mar 23 16:13:23 2007
@@ -3,9 +3,9 @@
version = 0.8.2
[video]
-fullscreen = true
-screen_w = 1024
-screen_h = 768
+fullscreen = false
+screen_w = 640
+screen_h = 480
bbp_mode = 32
horizontal_offset = 0
vertical_offset = 0

View File

@ -0,0 +1,14 @@
$OpenBSD: patch-data_stellarium_1,v 1.1.1.1 2007/03/25 12:29:22 ajacoutot Exp $
--- data/stellarium.1.orig Wed Aug 31 16:28:09 2005
+++ data/stellarium.1 Sun Mar 25 13:37:26 2007
@@ -29,8 +29,8 @@ Instead, it has documentation in the GNU Info format;
.PP
\fBstellarium\fP is a free GPL software which renders realistic skies in real time with openGL. It is available for Linux/Unix, Windows and MacOSX. With Stellarium, you really see what you can see with your eyes, binoculars or a small telescope.
.SH CONFIGURATION
-When you first launch stellarium, it will use the file default_config.ini from /usr/share/stellarium/config/ to create config.ini into \fB$HOME/.stellarium\fP.
-The configuration options from this file are quite self-explanatory. Some configuration files examples are in /usr/share/doc/stellarium/examples.
+When you first launch stellarium, it will use the file default_config.ini from @@PREFIX@@/share/stellarium/data/ to create config.ini into \fB$HOME/.stellarium\fP.
+The configuration options from this file are quite self-explanatory.
.SH OPTIONS
.TP
.B "\-v, \-\-version"

View File

@ -0,0 +1,99 @@
$OpenBSD: patch-src_stel_utility_cpp,v 1.1.1.1 2007/03/25 12:29:22 ajacoutot Exp $
--- src/stel_utility.cpp.orig Thu Jun 15 22:27:10 2006
+++ src/stel_utility.cpp Sun Mar 25 13:37:26 2007
@@ -275,12 +275,12 @@ double get_dec_angle(const string& str)
//! @return The corresponding string
wstring StelUtility::printAngleDMS(double angle, bool decimals, bool useD)
{
- wchar_t buf[32];
- buf[31]=L'\0';
- wchar_t sign = L'+';
+ char buf[32];
+ buf[31]='\0';
+ char sign = '+';
// wchar_t degsign = L'°'; ???
- wchar_t degsign = L'\u00B0';
- if (useD) degsign = L'd';
+ char degsign = '\u00B0';
+ if (useD) degsign = 'd';
angle *= 180./M_PI;
@@ -297,11 +297,11 @@ wstring StelUtility::printAngleDMS(double angle, bool
d /= 60;
const int m = d % 60;
d /= 60;
- swprintf(buf,
+ snprintf(buf,
#ifndef MINGW32
sizeof(buf),
#endif
- L"%lc%.2d%lc%.2d'%.2d.%02d\"",
+ "%c%.2d%c%.2d'%.2d.%02d\"",
sign, d, degsign, m, s, centi);
} else {
int d = (int)(0.5+angle*(60*60));
@@ -309,14 +309,16 @@ wstring StelUtility::printAngleDMS(double angle, bool
d /= 60;
const int m = d % 60;
d /= 60;
- swprintf(buf,
+ snprintf(buf,
#ifndef MINGW32
sizeof(buf),
#endif
- L"%lc%.2d%lc%.2d'%.2d\"",
+ "%c%.2d%c%.2d'%.2d\"",
sign, d, degsign, m, s);
}
- return buf;
+ std::string s(buf);
+ std::wstring ws(s.begin(), s.end());
+ return ws;
}
//! @brief Print the passed angle with the format +hhhmmmss(.ss)"
@@ -325,8 +327,8 @@ wstring StelUtility::printAngleDMS(double angle, bool
//! @return The corresponding string
wstring StelUtility::printAngleHMS(double angle, bool decimals)
{
- wchar_t buf[16];
- buf[15] = L'\0';
+ char buf[16];
+ buf[15] = '\0';
angle = fmod(angle,2.0*M_PI);
if (angle < 0.0) angle += 2.0*M_PI; // range: [0..2.0*M_PI)
angle *= 12./M_PI; // range: [0..24)
@@ -340,11 +342,11 @@ wstring StelUtility::printAngleHMS(double angle, bool
h /= 60;
const int m = h % 60;
h /= 60;
- swprintf(buf,
+ snprintf(buf,
#ifndef MINGW32
sizeof(buf),
#endif
- L"%.2dh%.2dm%.2d.%02ds",h,m,s,centi);
+ "%.2dh%.2dm%.2d.%02ds",h,m,s,centi);
} else {
angle = 0.5+angle*(60*60); // range:[0.5,24*60*60+0.5)
if (angle >= (24*60*60)) angle -= (24*60*60);
@@ -353,13 +355,15 @@ wstring StelUtility::printAngleHMS(double angle, bool
h /= 60;
const int m = h % 60;
h /= 60;
- swprintf(buf,
+ snprintf(buf,
#ifndef MINGW32
sizeof(buf),
#endif
- L"%.2dh%.2dm%.2ds",h,m,s);
+ "%.2dh%.2dm%.2ds",h,m,s);
}
- return buf;
+ std::string s(buf);
+ std::wstring ws(s.begin(), s.end());
+ return ws;
}

View File

@ -0,0 +1,12 @@
$OpenBSD: patch-src_translator_cpp,v 1.1.1.1 2007/03/25 12:29:22 ajacoutot Exp $
--- src/translator.cpp.orig Thu Oct 5 10:12:12 2006
+++ src/translator.cpp Sun Mar 25 13:35:40 2007
@@ -71,7 +71,7 @@ void Translator::initSystemLanguage(void)
}
//change systemLangName to ISO 639 / ISO 3166.
- unsigned int pos = Translator::systemLangName.find(':', 0);
+ std::string::size_type pos = Translator::systemLangName.find(':', 0);
if(pos != Translator::systemLangName.npos)
Translator::systemLangName.resize(pos);
pos = Translator::systemLangName.find('.', 0);

View File

@ -0,0 +1,7 @@
Stellarium is a free open source planetarium for your computer.
Stellarium renders 3D photo-realistic skies in real time with OpenGL.
It displays stars, constellations, planets, nebulas and others things
like ground, landscape, atmosphere, etc. It shows a realistic sky in 3D,
just like what you see with the naked eye, binoculars or a telescope.
It is being used in planetarium projectors. Just set your coordinates
and go.

419
astro/stellarium/pkg/PLIST Normal file
View File

@ -0,0 +1,419 @@
@comment $OpenBSD: PLIST,v 1.1.1.1 2007/03/25 12:29:22 ajacoutot Exp $
bin/stellarium
@man man/man1/stellarium.1
share/locale/af/
share/locale/af/LC_MESSAGES/
share/locale/af/LC_MESSAGES/stellarium.mo
share/locale/ar/
share/locale/ar/LC_MESSAGES/
share/locale/ar/LC_MESSAGES/stellarium.mo
share/locale/az/
share/locale/az/LC_MESSAGES/
share/locale/az/LC_MESSAGES/stellarium.mo
share/locale/bg/LC_MESSAGES/stellarium.mo
share/locale/ca/LC_MESSAGES/stellarium.mo
share/locale/cs/LC_MESSAGES/stellarium.mo
share/locale/da/LC_MESSAGES/stellarium.mo
share/locale/de/LC_MESSAGES/stellarium.mo
share/locale/el/LC_MESSAGES/stellarium.mo
share/locale/en/LC_MESSAGES/stellarium.mo
share/locale/en_GB/
share/locale/en_GB/LC_MESSAGES/
share/locale/en_GB/LC_MESSAGES/stellarium.mo
share/locale/es/LC_MESSAGES/stellarium.mo
share/locale/fa/
share/locale/fa/LC_MESSAGES/
share/locale/fa/LC_MESSAGES/stellarium.mo
share/locale/fi/LC_MESSAGES/stellarium.mo
share/locale/fr/LC_MESSAGES/stellarium.mo
share/locale/ga/LC_MESSAGES/stellarium.mo
share/locale/he/LC_MESSAGES/stellarium.mo
share/locale/hu/LC_MESSAGES/stellarium.mo
share/locale/id/LC_MESSAGES/stellarium.mo
share/locale/it/LC_MESSAGES/stellarium.mo
share/locale/ja/LC_MESSAGES/stellarium.mo
share/locale/ko/LC_MESSAGES/stellarium.mo
share/locale/lv/LC_MESSAGES/stellarium.mo
share/locale/mt/
share/locale/mt/LC_MESSAGES/
share/locale/mt/LC_MESSAGES/stellarium.mo
share/locale/nb/LC_MESSAGES/stellarium.mo
share/locale/nl/LC_MESSAGES/stellarium.mo
share/locale/nn/LC_MESSAGES/stellarium.mo
share/locale/pl/LC_MESSAGES/stellarium.mo
share/locale/pt/LC_MESSAGES/stellarium.mo
share/locale/pt_BR/LC_MESSAGES/stellarium.mo
share/locale/ro/LC_MESSAGES/stellarium.mo
share/locale/ru/LC_MESSAGES/stellarium.mo
share/locale/sk/LC_MESSAGES/stellarium.mo
share/locale/sv/LC_MESSAGES/stellarium.mo
share/locale/th/
share/locale/th/LC_MESSAGES/
share/locale/th/LC_MESSAGES/stellarium.mo
share/locale/tr/LC_MESSAGES/stellarium.mo
share/locale/uk/LC_MESSAGES/stellarium.mo
share/locale/vi/LC_MESSAGES/stellarium.mo
share/locale/zh_CN/LC_MESSAGES/stellarium.mo
share/locale/zh_HK/
share/locale/zh_HK/LC_MESSAGES/
share/locale/zh_HK/LC_MESSAGES/stellarium.mo
share/locale/zh_TW/LC_MESSAGES/stellarium.mo
share/stellarium/
share/stellarium/data/
share/stellarium/data/DejaVuSans.ttf
share/stellarium/data/DejaVuSansMono.ttf
share/stellarium/data/cities.fab
share/stellarium/data/constellations_boundaries.dat
share/stellarium/data/default_config.ini
share/stellarium/data/double_txt.dat
share/stellarium/data/fontmap.dat
share/stellarium/data/hipparcos.fab
share/stellarium/data/icon.bmp
share/stellarium/data/iso639-1.utf8
share/stellarium/data/landscapes.ini
share/stellarium/data/name.fab
share/stellarium/data/nebula_textures.fab
share/stellarium/data/ngc2000.dat
share/stellarium/data/ngc2000names.dat
share/stellarium/data/scripts/
share/stellarium/data/scripts/lunar_eclipse_partial.sts
share/stellarium/data/scripts/lunar_eclipse_total.sts
share/stellarium/data/scripts/startup.sts
share/stellarium/data/sky_cultures/
share/stellarium/data/sky_cultures/chinese/
share/stellarium/data/sky_cultures/chinese/constellation_names.eng.fab
share/stellarium/data/sky_cultures/chinese/constellationship.fab
share/stellarium/data/sky_cultures/chinese/info.ini
share/stellarium/data/sky_cultures/egyptian/
share/stellarium/data/sky_cultures/egyptian/constellation_names.eng.fab
share/stellarium/data/sky_cultures/egyptian/constellationship.fab
share/stellarium/data/sky_cultures/egyptian/info.ini
share/stellarium/data/sky_cultures/korean/
share/stellarium/data/sky_cultures/korean/constellation_names.eng.fab
share/stellarium/data/sky_cultures/korean/constellation_names.exp.fab
share/stellarium/data/sky_cultures/korean/constellationsart.fab
share/stellarium/data/sky_cultures/korean/constellationship.fab
share/stellarium/data/sky_cultures/korean/info.ini
share/stellarium/data/sky_cultures/korean/on_korea_constellations.txt
share/stellarium/data/sky_cultures/korean/star_names.fab
share/stellarium/data/sky_cultures/polynesian/
share/stellarium/data/sky_cultures/polynesian/constellation_names.eng.fab
share/stellarium/data/sky_cultures/polynesian/constellationsart.fab
share/stellarium/data/sky_cultures/polynesian/constellationship.fab
share/stellarium/data/sky_cultures/polynesian/info.ini
share/stellarium/data/sky_cultures/polynesian/star_names.fab
share/stellarium/data/sky_cultures/western/
share/stellarium/data/sky_cultures/western/constellation_names.eng.fab
share/stellarium/data/sky_cultures/western/constellationsart.fab
share/stellarium/data/sky_cultures/western/constellationship.fab
share/stellarium/data/sky_cultures/western/info.ini
share/stellarium/data/sky_cultures/western/star_names.fab
share/stellarium/data/ssystem.ini
share/stellarium/data/stellarium.ico
share/stellarium/data/variable_txt.dat
share/stellarium/data/zone.tab
share/stellarium/textures/
share/stellarium/textures/ariel.png
share/stellarium/textures/backmenu.png
share/stellarium/textures/backmenu_flip.png
share/stellarium/textures/bt_alert.png
share/stellarium/textures/bt_atmosphere.png
share/stellarium/textures/bt_azgrid.png
share/stellarium/textures/bt_blank.png
share/stellarium/textures/bt_cardinal.png
share/stellarium/textures/bt_chart.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_eqgrid.png
share/stellarium/textures/bt_flip_horz.png
share/stellarium/textures/bt_flip_vert.png
share/stellarium/textures/bt_follow.png
share/stellarium/textures/bt_fwd.png
share/stellarium/textures/bt_goto.png
share/stellarium/textures/bt_ground.png
share/stellarium/textures/bt_help.png
share/stellarium/textures/bt_nebula.png
share/stellarium/textures/bt_night.png
share/stellarium/textures/bt_nightview.png
share/stellarium/textures/bt_now.png
share/stellarium/textures/bt_planet.png
share/stellarium/textures/bt_question.png
share/stellarium/textures/bt_quit.png
share/stellarium/textures/bt_realtime.png
share/stellarium/textures/bt_rwd.png
share/stellarium/textures/bt_search.png
share/stellarium/textures/bt_track.png
share/stellarium/textures/callisto.png
share/stellarium/textures/city.png
share/stellarium/textures/constellation-art/
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/deimos.png
share/stellarium/textures/dione.png
share/stellarium/textures/down.png
share/stellarium/textures/earth-shadow.png
share/stellarium/textures/earthmap.png
share/stellarium/textures/enceladus.png
share/stellarium/textures/europa.png
share/stellarium/textures/fog.png
share/stellarium/textures/fogridge.png
share/stellarium/textures/ganymede.png
share/stellarium/textures/h1990-20.png
share/stellarium/textures/halo.png
share/stellarium/textures/headermenu.png
share/stellarium/textures/hyperion.png
share/stellarium/textures/iapetus.png
share/stellarium/textures/io.png
share/stellarium/textures/jupiter.png
share/stellarium/textures/landscapes/
share/stellarium/textures/landscapes/apollo17.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/hurricane1.png
share/stellarium/textures/landscapes/hurricane2.png
share/stellarium/textures/landscapes/hurricane3.png
share/stellarium/textures/landscapes/hurricane4.png
share/stellarium/textures/landscapes/hurricane5.png
share/stellarium/textures/landscapes/hurricane6.png
share/stellarium/textures/landscapes/hurricane7.png
share/stellarium/textures/landscapes/hurricane8.png
share/stellarium/textures/landscapes/hurricaneb.png
share/stellarium/textures/landscapes/ocean1.png
share/stellarium/textures/landscapes/ocean2.png
share/stellarium/textures/landscapes/ocean3.png
share/stellarium/textures/landscapes/ocean4.png
share/stellarium/textures/landscapes/ocean5.png
share/stellarium/textures/landscapes/ocean6.png
share/stellarium/textures/landscapes/ocean7.png
share/stellarium/textures/landscapes/ocean8.png
share/stellarium/textures/landscapes/ocean9.png
share/stellarium/textures/landscapes/trees_512.png
share/stellarium/textures/logo24bits.png
share/stellarium/textures/lune.png
share/stellarium/textures/m1.png
share/stellarium/textures/m10.png
share/stellarium/textures/m100.png
share/stellarium/textures/m101.png
share/stellarium/textures/m102.png
share/stellarium/textures/m103.png
share/stellarium/textures/m104.png
share/stellarium/textures/m105.png
share/stellarium/textures/m106.png
share/stellarium/textures/m107.png
share/stellarium/textures/m108.png
share/stellarium/textures/m109.png
share/stellarium/textures/m11.png
share/stellarium/textures/m110.png
share/stellarium/textures/m12.png
share/stellarium/textures/m13.png
share/stellarium/textures/m14.png
share/stellarium/textures/m15.png
share/stellarium/textures/m16.png
share/stellarium/textures/m17.png
share/stellarium/textures/m18.png
share/stellarium/textures/m19.png
share/stellarium/textures/m2.png
share/stellarium/textures/m20.png
share/stellarium/textures/m21.png
share/stellarium/textures/m22.png
share/stellarium/textures/m23.png
share/stellarium/textures/m24.png
share/stellarium/textures/m25.png
share/stellarium/textures/m26.png
share/stellarium/textures/m27.png
share/stellarium/textures/m28.png
share/stellarium/textures/m29.png
share/stellarium/textures/m3.png
share/stellarium/textures/m30.png
share/stellarium/textures/m31.png
share/stellarium/textures/m33.png
share/stellarium/textures/m34.png
share/stellarium/textures/m35.png
share/stellarium/textures/m36.png
share/stellarium/textures/m37.png
share/stellarium/textures/m38.png
share/stellarium/textures/m4.png
share/stellarium/textures/m41.png
share/stellarium/textures/m42.png
share/stellarium/textures/m43.png
share/stellarium/textures/m44.png
share/stellarium/textures/m45.png
share/stellarium/textures/m46.png
share/stellarium/textures/m48.png
share/stellarium/textures/m49.png
share/stellarium/textures/m5.png
share/stellarium/textures/m50.png
share/stellarium/textures/m51.png
share/stellarium/textures/m52.png
share/stellarium/textures/m53.png
share/stellarium/textures/m54.png
share/stellarium/textures/m55.png
share/stellarium/textures/m56.png
share/stellarium/textures/m57.png
share/stellarium/textures/m58.png
share/stellarium/textures/m59.png
share/stellarium/textures/m6.png
share/stellarium/textures/m60.png
share/stellarium/textures/m61.png
share/stellarium/textures/m62.png
share/stellarium/textures/m63.png
share/stellarium/textures/m64.png
share/stellarium/textures/m65.png
share/stellarium/textures/m66.png
share/stellarium/textures/m67.png
share/stellarium/textures/m68.png
share/stellarium/textures/m69.png
share/stellarium/textures/m7.png
share/stellarium/textures/m70.png
share/stellarium/textures/m71.png
share/stellarium/textures/m72.png
share/stellarium/textures/m73.png
share/stellarium/textures/m74.png
share/stellarium/textures/m75.png
share/stellarium/textures/m76.png
share/stellarium/textures/m78.png
share/stellarium/textures/m79.png
share/stellarium/textures/m8.png
share/stellarium/textures/m80.png
share/stellarium/textures/m81.png
share/stellarium/textures/m82.png
share/stellarium/textures/m83.png
share/stellarium/textures/m84.png
share/stellarium/textures/m85.png
share/stellarium/textures/m86.png
share/stellarium/textures/m87.png
share/stellarium/textures/m89.png
share/stellarium/textures/m9.png
share/stellarium/textures/m90.png
share/stellarium/textures/m91.png
share/stellarium/textures/m92.png
share/stellarium/textures/m93.png
share/stellarium/textures/m94.png
share/stellarium/textures/m95.png
share/stellarium/textures/m96.png
share/stellarium/textures/m97.png
share/stellarium/textures/m98.png
share/stellarium/textures/m99.png
share/stellarium/textures/mars.png
share/stellarium/textures/mercury.png
share/stellarium/textures/milkyway.png
share/stellarium/textures/milkyway_chart.png
share/stellarium/textures/mimas.png
share/stellarium/textures/miranda.png
share/stellarium/textures/neb.png
share/stellarium/textures/neptune.png
share/stellarium/textures/oberon.png
share/stellarium/textures/orion_neb.png
share/stellarium/textures/phobos.png
share/stellarium/textures/pleiades.png
share/stellarium/textures/pointeur1.png
share/stellarium/textures/pointeur2.png
share/stellarium/textures/pointeur4.png
share/stellarium/textures/pointeur5.png
share/stellarium/textures/rhea.png
share/stellarium/textures/saturn.png
share/stellarium/textures/saturn_rings_radial.png
share/stellarium/textures/star16x16.png
share/stellarium/textures/starc64x64.png
share/stellarium/textures/sun.png
share/stellarium/textures/telescope.png
share/stellarium/textures/tethys.png
share/stellarium/textures/titan.png
share/stellarium/textures/titania.png
share/stellarium/textures/umbriel.png
share/stellarium/textures/up.png
share/stellarium/textures/uranus.png
share/stellarium/textures/venus.png
share/stellarium/textures/zenith.png