aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey Dokuchaev <danfe@FreeBSD.org>2014-08-02 19:48:36 +0000
committerAlexey Dokuchaev <danfe@FreeBSD.org>2014-08-02 19:48:36 +0000
commit87a30f18c33211ca677f264a4a3c53f4c0459de1 (patch)
treee22fa4b093c130d200de78d65308be12dfb0336c
parentdcec133efd409b56b73b972a8693c16a47feb185 (diff)
downloadports-87a30f18c33211ca677f264a4a3c53f4c0459de1.tar.gz
ports-87a30f18c33211ca677f264a4a3c53f4c0459de1.zip
Update Stellarium to version 0.13.0. It's a new major release, and is based
on Qt version 5 now; for those who are not comfortable with upgrading to the new version of Qt, `astro/stellarium-qt4' port is available, serving version 0.12.4. Add an UPDATING entry to alert users about this. While here, make scripting support optional in `astro/stellarium-qt4', since it allows to use one less dependency. Unfortunately, this is not applicable to 0.13.0 as required `x11-toolkits/qt5-declarative' port has USE_QT5=script unconditionally. Relax USE_GL knob for both ports: only libGL itself is required, not libGLU.
Notes
Notes: svn path=/head/; revision=363837
-rw-r--r--UPDATING9
-rw-r--r--astro/Makefile1
-rw-r--r--astro/stellarium-qt4/Makefile75
-rw-r--r--astro/stellarium-qt4/distinfo12
-rw-r--r--astro/stellarium-qt4/files/patch-src-StelMainGraphicsView.cpp (renamed from astro/stellarium/files/patch-src-StelMainGraphicsView.cpp)0
-rw-r--r--astro/stellarium-qt4/files/patch-src-core-StelUtils.cpp (renamed from astro/stellarium/files/patch-src-core-StelUtils.cpp)0
-rw-r--r--astro/stellarium-qt4/files/patch-src-core-renderer-StelQGLArrayVertexBufferBackend.cpp (renamed from astro/stellarium/files/patch-src-core-renderer-StelQGLArrayVertexBufferBackend.cpp)0
-rw-r--r--astro/stellarium-qt4/files/patch-src-core-renderer-StelQGLInterleavedArrayVertexBufferBackend.cpp (renamed from astro/stellarium/files/patch-src-core-renderer-StelQGLInterleavedArrayVertexBufferBackend.cpp)0
-rw-r--r--astro/stellarium-qt4/pkg-descr9
-rw-r--r--astro/stellarium-qt4/pkg-plist1209
-rw-r--r--astro/stellarium/Makefile21
-rw-r--r--astro/stellarium/distinfo4
-rw-r--r--astro/stellarium/pkg-plist759
13 files changed, 1716 insertions, 383 deletions
diff --git a/UPDATING b/UPDATING
index 1c235c94f582..93fd9ed10f34 100644
--- a/UPDATING
+++ b/UPDATING
@@ -5,6 +5,15 @@ they are unavoidable.
You should get into the habit of checking this file for changes each time
you update your ports collection, before attempting any port upgrades.
+20140802:
+ AFFECTS: users of astro/stellarium
+ AUTHOR: danfe@FreeBSD.org
+
+ Stellarium was updated to version 0.13.0. It's a new major release, and
+ it is based on Qt version 5 now. For those who are not comfortable with
+ upgrading to the new Qt, previous Stellarium version (0.12.4) was copied
+ over to `astro/stellarium-qt4' port.
+
20140731:
AFFECTS: users of www/ajaxplorer
AUTHOR: madpilot@FreeBSD.org
diff --git a/astro/Makefile b/astro/Makefile
index b42c63756d28..ef7cbdd7d19e 100644
--- a/astro/Makefile
+++ b/astro/Makefile
@@ -101,6 +101,7 @@
SUBDIR += starplot
SUBDIR += stars
SUBDIR += stellarium
+ SUBDIR += stellarium-qt4
SUBDIR += sunclock
SUBDIR += swe
SUBDIR += tclgeomap
diff --git a/astro/stellarium-qt4/Makefile b/astro/stellarium-qt4/Makefile
new file mode 100644
index 000000000000..5c1831794614
--- /dev/null
+++ b/astro/stellarium-qt4/Makefile
@@ -0,0 +1,75 @@
+# Created by: Jean-Yves Lefort <jylefort@brutele.be>
+# $FreeBSD$
+
+PORTNAME= stellarium
+PORTVERSION= 0.12.4
+CATEGORIES= astro
+MASTER_SITES= SF/${PORTNAME}/Stellarium-sources/${PORTVERSION}
+DISTFILES= ${DISTNAME}${EXTRACT_SUFX}
+EXTRACT_ONLY:= ${DISTFILES}
+PKGNAMESUFFIX= -qt4
+
+MAINTAINER= danfe@FreeBSD.org
+COMMENT= 3D photo-realistic sky renderer (planetarium)
+
+LICENSE= GPLv2
+
+USES= cmake gettext iconv
+USE_GL= gl
+USE_QT4= moc_build rcc_build uic_build qmake_build \
+ corelib gui network opengl
+INSTALLS_ICONS= yes
+
+PORTDOCS= AUTHORS ChangeLog README
+
+OPTIONS_DEFINE= MORE_STARS MULTIMEDIA SCRIPTING DOCS
+OPTIONS_DEFAULT= MULTIMEDIA SCRIPTING
+MORE_STARS_DESC= Install extra star catalogs (1.2GB)
+MULTIMEDIA_DESC= Sound and video support (via Phonon)
+SCRIPTING_DESC= Scripting support
+
+.include <bsd.port.options.mk>
+
+.if ${PORT_OPTIONS:MMORE_STARS}
+. for i in 4 5 6 7 8
+MASTER_SITES+= SF/${PORTNAME}/Extra-data-files/stars${i}:stars${i}
+. endfor
+DISTFILES+= stars_4_1v0_0.cat:stars4 stars_5_2v0_0.cat:stars5 \
+ stars_6_2v0_0.cat:stars6 stars_7_2v0_0.cat:stars7 \
+ stars_8_2v0_0.cat:stars8
+PLIST_SUB+= MORE_STARS=""
+.else
+PLIST_SUB+= MORE_STARS="@comment "
+.endif
+
+.if ${PORT_OPTIONS:MMULTIMEDIA}
+USE_QT4+= phonon
+.else
+CMAKE_ARGS+= -DENABLE_SOUND:BOOL=OFF
+.endif
+
+.if ${PORT_OPTIONS:MSCRIPTING}
+USE_QT4+= script
+PLIST_SUB+= SCRIPTS=""
+.else
+CMAKE_ARGS+= -DENABLE_SCRIPTING:BOOL=OFF
+PLIST_SUB+= SCRIPTS="@comment "
+.endif
+
+post-patch: .SILENT
+ ${REINPLACE_CMD} -e '/QTTEST/d' ${WRKSRC}/CMakeLists.txt
+# Avoid picking up the wrong `fixx11h.h' (`x11/kdelibs3' port installs one
+# that does not handle FontChange)
+ ${GREP} -Rl --null fixx11h\\.h ${WRKSRC}/src ${WRKSRC}/plugins | \
+ ${XARGS} -0 ${REINPLACE_CMD} -e 's/fixx11h\.h/fixx11qt4h.h/'
+ cd ${WRKSRC}/src/core/external && ${MV} fixx11h.h fixx11qt4h.h
+
+post-install:
+.if ${PORT_OPTIONS:MMORE_STARS}
+ ${INSTALL_DATA} ${DISTDIR}/stars_[45678]_[12]v0_0.cat \
+ ${STAGEDIR}${DATADIR}/stars/default
+.endif
+ @${MKDIR} ${STAGEDIR}${DOCSDIR}
+ ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
+
+.include <bsd.port.mk>
diff --git a/astro/stellarium-qt4/distinfo b/astro/stellarium-qt4/distinfo
new file mode 100644
index 000000000000..07fdc6ee7d53
--- /dev/null
+++ b/astro/stellarium-qt4/distinfo
@@ -0,0 +1,12 @@
+SHA256 (stellarium-0.12.4.tar.gz) = 0fae1b6e2231ccfaba8fd00abf816a88bd89b5dc61387ac84edf479b363c6684
+SIZE (stellarium-0.12.4.tar.gz) = 79343617
+SHA256 (stars_4_1v0_0.cat) = e0373d869d08ffac2ba78e7fbe29add6511073cd74a52b9918d8b77fb05827e7
+SIZE (stars_4_1v0_0.cat) = 17275482
+SHA256 (stars_5_2v0_0.cat) = d093e25e8cb8350ef74706d7bf05455d224acb076da87bf1b784b5cf0e0d9931
+SIZE (stars_5_2v0_0.cat) = 46096018
+SHA256 (stars_6_2v0_0.cat) = 40a8674dead3178d9f36178f62e128047bb53784fa3ff408e473a5969a4ee379
+SIZE (stars_6_2v0_0.cat) = 160019110
+SHA256 (stars_7_2v0_0.cat) = 730ca2d9182af5ebd4efcc5f87461ad9156caf79cadf1a79708fa970acb809fe
+SIZE (stars_7_2v0_0.cat) = 348268348
+SHA256 (stars_8_2v0_0.cat) = 91b79dcf97464b4ca0f6c604e745dac2c6ca02e25ed986dbec2de5f6d6e8a1f9
+SIZE (stars_8_2v0_0.cat) = 706781416
diff --git a/astro/stellarium/files/patch-src-StelMainGraphicsView.cpp b/astro/stellarium-qt4/files/patch-src-StelMainGraphicsView.cpp
index d24bd88a96a4..d24bd88a96a4 100644
--- a/astro/stellarium/files/patch-src-StelMainGraphicsView.cpp
+++ b/astro/stellarium-qt4/files/patch-src-StelMainGraphicsView.cpp
diff --git a/astro/stellarium/files/patch-src-core-StelUtils.cpp b/astro/stellarium-qt4/files/patch-src-core-StelUtils.cpp
index c5ef930f9518..c5ef930f9518 100644
--- a/astro/stellarium/files/patch-src-core-StelUtils.cpp
+++ b/astro/stellarium-qt4/files/patch-src-core-StelUtils.cpp
diff --git a/astro/stellarium/files/patch-src-core-renderer-StelQGLArrayVertexBufferBackend.cpp b/astro/stellarium-qt4/files/patch-src-core-renderer-StelQGLArrayVertexBufferBackend.cpp
index 5ddea6034b25..5ddea6034b25 100644
--- a/astro/stellarium/files/patch-src-core-renderer-StelQGLArrayVertexBufferBackend.cpp
+++ b/astro/stellarium-qt4/files/patch-src-core-renderer-StelQGLArrayVertexBufferBackend.cpp
diff --git a/astro/stellarium/files/patch-src-core-renderer-StelQGLInterleavedArrayVertexBufferBackend.cpp b/astro/stellarium-qt4/files/patch-src-core-renderer-StelQGLInterleavedArrayVertexBufferBackend.cpp
index deb92bf15f3f..deb92bf15f3f 100644
--- a/astro/stellarium/files/patch-src-core-renderer-StelQGLInterleavedArrayVertexBufferBackend.cpp
+++ b/astro/stellarium-qt4/files/patch-src-core-renderer-StelQGLInterleavedArrayVertexBufferBackend.cpp
diff --git a/astro/stellarium-qt4/pkg-descr b/astro/stellarium-qt4/pkg-descr
new file mode 100644
index 000000000000..beb252483744
--- /dev/null
+++ b/astro/stellarium-qt4/pkg-descr
@@ -0,0 +1,9 @@
+Stellarium is a free open source planetarium for your computer. 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.
+
+This is legacy version based on Qt 4. For the latest Qt 5 based one please
+install `astro/stellarium' port instead.
+
+WWW: http://www.stellarium.org/
diff --git a/astro/stellarium-qt4/pkg-plist b/astro/stellarium-qt4/pkg-plist
new file mode 100644
index 000000000000..8ad87d586f32
--- /dev/null
+++ b/astro/stellarium-qt4/pkg-plist
@@ -0,0 +1,1209 @@
+bin/stellarium
+man/man1/stellarium.1.gz
+%%DATADIR%%/data/DejaVuSans.ttf
+%%DATADIR%%/data/DejaVuSansMono.ttf
+%%DATADIR%%/data/base_locations.bin.gz
+%%DATADIR%%/data/countryCodes.dat
+%%DATADIR%%/data/default_config.ini
+%%DATADIR%%/data/default_shortcuts.json
+%%DATADIR%%/data/iso3166-1-alpha-2.utf8
+%%DATADIR%%/data/iso639-1.utf8
+%%DATADIR%%/data/ssystem.ini
+%%DATADIR%%/data/stellarium.ico
+%%DATADIR%%/landscapes/garching/description.ar.utf8
+%%DATADIR%%/landscapes/garching/description.be.utf8
+%%DATADIR%%/landscapes/garching/description.bg.utf8
+%%DATADIR%%/landscapes/garching/description.de.utf8
+%%DATADIR%%/landscapes/garching/description.en.utf8
+%%DATADIR%%/landscapes/garching/description.fr.utf8
+%%DATADIR%%/landscapes/garching/description.nb.utf8
+%%DATADIR%%/landscapes/garching/description.pt_BR.utf8
+%%DATADIR%%/landscapes/garching/description.ru.utf8
+%%DATADIR%%/landscapes/garching/description.uk.utf8
+%%DATADIR%%/landscapes/garching/garching-gl1.png
+%%DATADIR%%/landscapes/garching/garching-gl2.png
+%%DATADIR%%/landscapes/garching/garching-gl3.png
+%%DATADIR%%/landscapes/garching/garching-gl4.png
+%%DATADIR%%/landscapes/garching/garching-ground3.png
+%%DATADIR%%/landscapes/garching/landscape.ini
+%%DATADIR%%/landscapes/guereins/description.ar.utf8
+%%DATADIR%%/landscapes/guereins/description.be.utf8
+%%DATADIR%%/landscapes/guereins/description.bg.utf8
+%%DATADIR%%/landscapes/guereins/description.de.utf8
+%%DATADIR%%/landscapes/guereins/description.en.utf8
+%%DATADIR%%/landscapes/guereins/description.fr.utf8
+%%DATADIR%%/landscapes/guereins/description.nb.utf8
+%%DATADIR%%/landscapes/guereins/description.pt_BR.utf8
+%%DATADIR%%/landscapes/guereins/description.ru.utf8
+%%DATADIR%%/landscapes/guereins/description.uk.utf8
+%%DATADIR%%/landscapes/guereins/guereins1.png
+%%DATADIR%%/landscapes/guereins/guereins2.png
+%%DATADIR%%/landscapes/guereins/guereins3.png
+%%DATADIR%%/landscapes/guereins/guereins4.png
+%%DATADIR%%/landscapes/guereins/guereins5.png
+%%DATADIR%%/landscapes/guereins/guereins6.png
+%%DATADIR%%/landscapes/guereins/guereins7.png
+%%DATADIR%%/landscapes/guereins/guereins8.png
+%%DATADIR%%/landscapes/guereins/guereinsb.png
+%%DATADIR%%/landscapes/guereins/landscape.ini
+%%DATADIR%%/landscapes/hurricane/description.ar.utf8
+%%DATADIR%%/landscapes/hurricane/description.be.utf8
+%%DATADIR%%/landscapes/hurricane/description.bg.utf8
+%%DATADIR%%/landscapes/hurricane/description.de.utf8
+%%DATADIR%%/landscapes/hurricane/description.en.utf8
+%%DATADIR%%/landscapes/hurricane/description.fr.utf8
+%%DATADIR%%/landscapes/hurricane/description.nb.utf8
+%%DATADIR%%/landscapes/hurricane/description.pt_BR.utf8
+%%DATADIR%%/landscapes/hurricane/description.ru.utf8
+%%DATADIR%%/landscapes/hurricane/description.uk.utf8
+%%DATADIR%%/landscapes/hurricane/hurricane1.png
+%%DATADIR%%/landscapes/hurricane/hurricane2.png
+%%DATADIR%%/landscapes/hurricane/hurricane3.png
+%%DATADIR%%/landscapes/hurricane/hurricane4.png
+%%DATADIR%%/landscapes/hurricane/hurricane5.png
+%%DATADIR%%/landscapes/hurricane/hurricane6.png
+%%DATADIR%%/landscapes/hurricane/hurricane7.png
+%%DATADIR%%/landscapes/hurricane/hurricane8.png
+%%DATADIR%%/landscapes/hurricane/hurricaneb.png
+%%DATADIR%%/landscapes/hurricane/landscape.ini
+%%DATADIR%%/landscapes/jupiter/description.en.utf8
+%%DATADIR%%/landscapes/jupiter/description.fr.utf8
+%%DATADIR%%/landscapes/jupiter/description.pt_BR.utf8
+%%DATADIR%%/landscapes/jupiter/description.ru.utf8
+%%DATADIR%%/landscapes/jupiter/jupiter-256.png
+%%DATADIR%%/landscapes/jupiter/landscape.ini
+%%DATADIR%%/landscapes/mars/description.ar.utf8
+%%DATADIR%%/landscapes/mars/description.be.utf8
+%%DATADIR%%/landscapes/mars/description.bg.utf8
+%%DATADIR%%/landscapes/mars/description.de.utf8
+%%DATADIR%%/landscapes/mars/description.en.utf8
+%%DATADIR%%/landscapes/mars/description.fr.utf8
+%%DATADIR%%/landscapes/mars/description.nb.utf8
+%%DATADIR%%/landscapes/mars/description.pt_BR.utf8
+%%DATADIR%%/landscapes/mars/description.ru.utf8
+%%DATADIR%%/landscapes/mars/description.uk.utf8
+%%DATADIR%%/landscapes/mars/landscape.ini
+%%DATADIR%%/landscapes/mars/mars.png
+%%DATADIR%%/landscapes/moon/apollo17.png
+%%DATADIR%%/landscapes/moon/description.ar.utf8
+%%DATADIR%%/landscapes/moon/description.be.utf8
+%%DATADIR%%/landscapes/moon/description.bg.utf8
+%%DATADIR%%/landscapes/moon/description.de.utf8
+%%DATADIR%%/landscapes/moon/description.en.utf8
+%%DATADIR%%/landscapes/moon/description.fr.utf8
+%%DATADIR%%/landscapes/moon/description.nb.utf8
+%%DATADIR%%/landscapes/moon/description.pt_BR.utf8
+%%DATADIR%%/landscapes/moon/description.ru.utf8
+%%DATADIR%%/landscapes/moon/description.uk.utf8
+%%DATADIR%%/landscapes/moon/landscape.ini
+%%DATADIR%%/landscapes/neptune/description.en.utf8
+%%DATADIR%%/landscapes/neptune/description.fr.utf8
+%%DATADIR%%/landscapes/neptune/description.pt_BR.utf8
+%%DATADIR%%/landscapes/neptune/description.ru.utf8
+%%DATADIR%%/landscapes/neptune/landscape.ini
+%%DATADIR%%/landscapes/neptune/neptune-256.png
+%%DATADIR%%/landscapes/ocean/description.ar.utf8
+%%DATADIR%%/landscapes/ocean/description.be.utf8
+%%DATADIR%%/landscapes/ocean/description.bg.utf8
+%%DATADIR%%/landscapes/ocean/description.de.utf8
+%%DATADIR%%/landscapes/ocean/description.en.utf8
+%%DATADIR%%/landscapes/ocean/description.fr.utf8
+%%DATADIR%%/landscapes/ocean/description.nb.utf8
+%%DATADIR%%/landscapes/ocean/description.pt_BR.utf8
+%%DATADIR%%/landscapes/ocean/description.ru.utf8
+%%DATADIR%%/landscapes/ocean/description.uk.utf8
+%%DATADIR%%/landscapes/ocean/landscape.ini
+%%DATADIR%%/landscapes/ocean/ocean1.png
+%%DATADIR%%/landscapes/ocean/ocean2.png
+%%DATADIR%%/landscapes/ocean/ocean3.png
+%%DATADIR%%/landscapes/ocean/ocean4.png
+%%DATADIR%%/landscapes/ocean/ocean5.png
+%%DATADIR%%/landscapes/ocean/ocean6.png
+%%DATADIR%%/landscapes/ocean/ocean7.png
+%%DATADIR%%/landscapes/ocean/ocean8.png
+%%DATADIR%%/landscapes/ocean/ocean9.png
+%%DATADIR%%/landscapes/saturn/description.ar.utf8
+%%DATADIR%%/landscapes/saturn/description.be.utf8
+%%DATADIR%%/landscapes/saturn/description.bg.utf8
+%%DATADIR%%/landscapes/saturn/description.de.utf8
+%%DATADIR%%/landscapes/saturn/description.en.utf8
+%%DATADIR%%/landscapes/saturn/description.fr.utf8
+%%DATADIR%%/landscapes/saturn/description.nb.utf8
+%%DATADIR%%/landscapes/saturn/description.pt_BR.utf8
+%%DATADIR%%/landscapes/saturn/description.ru.utf8
+%%DATADIR%%/landscapes/saturn/description.uk.utf8
+%%DATADIR%%/landscapes/saturn/landscape.ini
+%%DATADIR%%/landscapes/saturn/saturn-256.png
+%%DATADIR%%/landscapes/trees/description.ar.utf8
+%%DATADIR%%/landscapes/trees/description.be.utf8
+%%DATADIR%%/landscapes/trees/description.bg.utf8
+%%DATADIR%%/landscapes/trees/description.de.utf8
+%%DATADIR%%/landscapes/trees/description.en.utf8
+%%DATADIR%%/landscapes/trees/description.fr.utf8
+%%DATADIR%%/landscapes/trees/description.nb.utf8
+%%DATADIR%%/landscapes/trees/description.pt_BR.utf8
+%%DATADIR%%/landscapes/trees/description.ru.utf8
+%%DATADIR%%/landscapes/trees/description.uk.utf8
+%%DATADIR%%/landscapes/trees/landscape.ini
+%%DATADIR%%/landscapes/trees/trees_512.png
+%%DATADIR%%/landscapes/uranus/description.en.utf8
+%%DATADIR%%/landscapes/uranus/description.fr.utf8
+%%DATADIR%%/landscapes/uranus/description.pt_BR.utf8
+%%DATADIR%%/landscapes/uranus/description.ru.utf8
+%%DATADIR%%/landscapes/uranus/landscape.ini
+%%DATADIR%%/landscapes/uranus/uranus-256.png
+%%DATADIR%%/nebulae/default/etaCarinae_gzotti.png
+%%DATADIR%%/nebulae/default/ic1805.png
+%%DATADIR%%/nebulae/default/ic1848.png
+%%DATADIR%%/nebulae/default/ic2118.png
+%%DATADIR%%/nebulae/default/ic2944-trev.png
+%%DATADIR%%/nebulae/default/ic434bousquet.png
+%%DATADIR%%/nebulae/default/ic4592kepler-part.png
+%%DATADIR%%/nebulae/default/ic4601kepler.png
+%%DATADIR%%/nebulae/default/ic4628-trev.png
+%%DATADIR%%/nebulae/default/ic5146.png
+%%DATADIR%%/nebulae/default/lmc_moshdr-1.png
+%%DATADIR%%/nebulae/default/lmc_moshdr-2.png
+%%DATADIR%%/nebulae/default/lmc_moshdr-3.png
+%%DATADIR%%/nebulae/default/lmc_moshdr-4.png
+%%DATADIR%%/nebulae/default/m10.png
+%%DATADIR%%/nebulae/default/m100.png
+%%DATADIR%%/nebulae/default/m101.png
+%%DATADIR%%/nebulae/default/m102.png
+%%DATADIR%%/nebulae/default/m103.png
+%%DATADIR%%/nebulae/default/m104.png
+%%DATADIR%%/nebulae/default/m105.png
+%%DATADIR%%/nebulae/default/m106.png
+%%DATADIR%%/nebulae/default/m107.png
+%%DATADIR%%/nebulae/default/m108.png
+%%DATADIR%%/nebulae/default/m109.png
+%%DATADIR%%/nebulae/default/m11.png
+%%DATADIR%%/nebulae/default/m110.png
+%%DATADIR%%/nebulae/default/m12.png
+%%DATADIR%%/nebulae/default/m13.png
+%%DATADIR%%/nebulae/default/m14.png
+%%DATADIR%%/nebulae/default/m15dumont.png
+%%DATADIR%%/nebulae/default/m16dumont.png
+%%DATADIR%%/nebulae/default/m17spano.png
+%%DATADIR%%/nebulae/default/m18.png
+%%DATADIR%%/nebulae/default/m19.png
+%%DATADIR%%/nebulae/default/m1dumont.png
+%%DATADIR%%/nebulae/default/m2.png
+%%DATADIR%%/nebulae/default/m20-trev.png
+%%DATADIR%%/nebulae/default/m21-trev.png
+%%DATADIR%%/nebulae/default/m22.png
+%%DATADIR%%/nebulae/default/m23.png
+%%DATADIR%%/nebulae/default/m24.png
+%%DATADIR%%/nebulae/default/m25.png
+%%DATADIR%%/nebulae/default/m26.png
+%%DATADIR%%/nebulae/default/m27dumont.png
+%%DATADIR%%/nebulae/default/m28.png
+%%DATADIR%%/nebulae/default/m29.png
+%%DATADIR%%/nebulae/default/m3.png
+%%DATADIR%%/nebulae/default/m30.png
+%%DATADIR%%/nebulae/default/m31.png
+%%DATADIR%%/nebulae/default/m33bousquet.png
+%%DATADIR%%/nebulae/default/m34.png
+%%DATADIR%%/nebulae/default/m35.png
+%%DATADIR%%/nebulae/default/m36.png
+%%DATADIR%%/nebulae/default/m37.png
+%%DATADIR%%/nebulae/default/m38.png
+%%DATADIR%%/nebulae/default/m39-dss.png
+%%DATADIR%%/nebulae/default/m4.png
+%%DATADIR%%/nebulae/default/m41.png
+%%DATADIR%%/nebulae/default/m42dumont.png
+%%DATADIR%%/nebulae/default/m44spano.png
+%%DATADIR%%/nebulae/default/m46.png
+%%DATADIR%%/nebulae/default/m47-trev.png
+%%DATADIR%%/nebulae/default/m48.png
+%%DATADIR%%/nebulae/default/m49.png
+%%DATADIR%%/nebulae/default/m5.png
+%%DATADIR%%/nebulae/default/m50.png
+%%DATADIR%%/nebulae/default/m51.png
+%%DATADIR%%/nebulae/default/m52.png
+%%DATADIR%%/nebulae/default/m53.png
+%%DATADIR%%/nebulae/default/m54.png
+%%DATADIR%%/nebulae/default/m55.png
+%%DATADIR%%/nebulae/default/m56.png
+%%DATADIR%%/nebulae/default/m57dumont.png
+%%DATADIR%%/nebulae/default/m58.png
+%%DATADIR%%/nebulae/default/m59.png
+%%DATADIR%%/nebulae/default/m6.png
+%%DATADIR%%/nebulae/default/m60.png
+%%DATADIR%%/nebulae/default/m61.png
+%%DATADIR%%/nebulae/default/m62.png
+%%DATADIR%%/nebulae/default/m63.png
+%%DATADIR%%/nebulae/default/m64.png
+%%DATADIR%%/nebulae/default/m65.png
+%%DATADIR%%/nebulae/default/m66.png
+%%DATADIR%%/nebulae/default/m67.png
+%%DATADIR%%/nebulae/default/m68.png
+%%DATADIR%%/nebulae/default/m69.png
+%%DATADIR%%/nebulae/default/m7.png
+%%DATADIR%%/nebulae/default/m70.png
+%%DATADIR%%/nebulae/default/m71.png
+%%DATADIR%%/nebulae/default/m72.png
+%%DATADIR%%/nebulae/default/m73.png
+%%DATADIR%%/nebulae/default/m74.png
+%%DATADIR%%/nebulae/default/m75.png
+%%DATADIR%%/nebulae/default/m76.png
+%%DATADIR%%/nebulae/default/m77-dss.png
+%%DATADIR%%/nebulae/default/m78.png
+%%DATADIR%%/nebulae/default/m79.png
+%%DATADIR%%/nebulae/default/m80.png
+%%DATADIR%%/nebulae/default/m81.png
+%%DATADIR%%/nebulae/default/m82.png
+%%DATADIR%%/nebulae/default/m83.png
+%%DATADIR%%/nebulae/default/m84.png
+%%DATADIR%%/nebulae/default/m85.png
+%%DATADIR%%/nebulae/default/m86.png
+%%DATADIR%%/nebulae/default/m87.png
+%%DATADIR%%/nebulae/default/m88-dss.png
+%%DATADIR%%/nebulae/default/m89.png
+%%DATADIR%%/nebulae/default/m8bousquet.png
+%%DATADIR%%/nebulae/default/m9.png
+%%DATADIR%%/nebulae/default/m90.png
+%%DATADIR%%/nebulae/default/m91.png
+%%DATADIR%%/nebulae/default/m92.png
+%%DATADIR%%/nebulae/default/m93.png
+%%DATADIR%%/nebulae/default/m94.png
+%%DATADIR%%/nebulae/default/m95.png
+%%DATADIR%%/nebulae/default/m96.png
+%%DATADIR%%/nebulae/default/m97dumont.png
+%%DATADIR%%/nebulae/default/m98.png
+%%DATADIR%%/nebulae/default/m99.png
+%%DATADIR%%/nebulae/default/n104.png
+%%DATADIR%%/nebulae/default/n1333oleg.png
+%%DATADIR%%/nebulae/default/n1365.png
+%%DATADIR%%/nebulae/default/n1499bousquet.png
+%%DATADIR%%/nebulae/default/n1532-darkskies.png
+%%DATADIR%%/nebulae/default/n2244bousquet.png
+%%DATADIR%%/nebulae/default/n253bousquet.png
+%%DATADIR%%/nebulae/default/n281kepler.png
+%%DATADIR%%/nebulae/default/n2903oleg.png
+%%DATADIR%%/nebulae/default/n300.png
+%%DATADIR%%/nebulae/default/n3190oleg.png
+%%DATADIR%%/nebulae/default/n3628.png
+%%DATADIR%%/nebulae/default/n3718oleg.png
+%%DATADIR%%/nebulae/default/n4490oleg.png
+%%DATADIR%%/nebulae/default/n4945.png
+%%DATADIR%%/nebulae/default/n5128.png
+%%DATADIR%%/nebulae/default/n5139kepler.png
+%%DATADIR%%/nebulae/default/n55.png
+%%DATADIR%%/nebulae/default/n5982oleg.png
+%%DATADIR%%/nebulae/default/n6543kepler.png
+%%DATADIR%%/nebulae/default/n6726.png
+%%DATADIR%%/nebulae/default/n6744.png
+%%DATADIR%%/nebulae/default/n6752.png
+%%DATADIR%%/nebulae/default/n6822.png
+%%DATADIR%%/nebulae/default/n6888_dn.png
+%%DATADIR%%/nebulae/default/n6946dumont.png
+%%DATADIR%%/nebulae/default/n6960kepler.png
+%%DATADIR%%/nebulae/default/n7023kepler.png
+%%DATADIR%%/nebulae/default/n7129oleg.png
+%%DATADIR%%/nebulae/default/n7293.png
+%%DATADIR%%/nebulae/default/n7318kepler.png
+%%DATADIR%%/nebulae/default/n7331kepler.png
+%%DATADIR%%/nebulae/default/n869-884spano.png
+%%DATADIR%%/nebulae/default/n891oleg.png
+%%DATADIR%%/nebulae/default/nebula_textures.fab
+%%DATADIR%%/nebulae/default/ngc2000.dat
+%%DATADIR%%/nebulae/default/ngc2000names.dat
+%%DATADIR%%/nebulae/default/pleiades.png
+%%DATADIR%%/nebulae/default/rho-a00.png
+%%DATADIR%%/nebulae/default/rho-a01.png
+%%DATADIR%%/nebulae/default/rho-a10.png
+%%DATADIR%%/nebulae/default/rho-a11.png
+%%DATADIR%%/nebulae/default/smc29-1.png
+%%DATADIR%%/nebulae/default/smc29-2.png
+%%DATADIR%%/nebulae/default/smc29-3.png
+%%DATADIR%%/nebulae/default/smc29-4.png
+%%DATADIR%%/nebulae/default/textures.json
+%%SCRIPTS%%%%DATADIR%%/scripts/analemma.ssc
+%%SCRIPTS%%%%DATADIR%%/scripts/common_objects.inc
+%%SCRIPTS%%%%DATADIR%%/scripts/constellations_tour.ssc
+%%SCRIPTS%%%%DATADIR%%/scripts/earth_1.ssc
+%%SCRIPTS%%%%DATADIR%%/scripts/earth_2.ssc
+%%SCRIPTS%%%%DATADIR%%/scripts/earth_3.ssc
+%%SCRIPTS%%%%DATADIR%%/scripts/earth_4.ssc
+%%SCRIPTS%%%%DATADIR%%/scripts/earth_5.ssc
+%%SCRIPTS%%%%DATADIR%%/scripts/earth_6.ssc
+%%SCRIPTS%%%%DATADIR%%/scripts/landscapes.ssc
+%%SCRIPTS%%%%DATADIR%%/scripts/lunar_partial.ssc
+%%SCRIPTS%%%%DATADIR%%/scripts/lunar_total.ssc
+%%SCRIPTS%%%%DATADIR%%/scripts/phobos_phun_1.ssc
+%%SCRIPTS%%%%DATADIR%%/scripts/phobos_phun_2.ssc
+%%SCRIPTS%%%%DATADIR%%/scripts/phobos_phun_3.ssc
+%%SCRIPTS%%%%DATADIR%%/scripts/phobos_phun_4.ssc
+%%SCRIPTS%%%%DATADIR%%/scripts/phobos_phun_5.ssc
+%%SCRIPTS%%%%DATADIR%%/scripts/screensaver.ssc
+%%SCRIPTS%%%%DATADIR%%/scripts/sky_cultures.ssc
+%%SCRIPTS%%%%DATADIR%%/scripts/solar_eclipse.ssc
+%%SCRIPTS%%%%DATADIR%%/scripts/solar_system_screensaver.ssc
+%%SCRIPTS%%%%DATADIR%%/scripts/startup.ssc
+%%SCRIPTS%%%%DATADIR%%/scripts/sun.ssc
+%%SCRIPTS%%%%DATADIR%%/scripts/supernova.ssc
+%%SCRIPTS%%%%DATADIR%%/scripts/transit_of_venus.ssc
+%%SCRIPTS%%%%DATADIR%%/scripts/triple_sunrise_and_sunsets.ssc
+%%SCRIPTS%%%%DATADIR%%/scripts/zodiac.ssc
+%%DATADIR%%/skycultures/arabic/Bearer-of-the-Demons-Head.png
+%%DATADIR%%/skycultures/arabic/Book_of_Fixed_Stars3.png
+%%DATADIR%%/skycultures/arabic/CentaurAndThe-Beast-of-Prey.png
+%%DATADIR%%/skycultures/arabic/Cetus.png
+%%DATADIR%%/skycultures/arabic/Inflammatus.png
+%%DATADIR%%/skycultures/arabic/Part-of-the-Horse.png
+%%DATADIR%%/skycultures/arabic/The-Archer.png
+%%DATADIR%%/skycultures/arabic/The-Arrow.png
+%%DATADIR%%/skycultures/arabic/The-Balance.png
+%%DATADIR%%/skycultures/arabic/The-Brave.png
+%%DATADIR%%/skycultures/arabic/The-Bull.png
+%%DATADIR%%/skycultures/arabic/The-Censer.png
+%%DATADIR%%/skycultures/arabic/The-Crab.png
+%%DATADIR%%/skycultures/arabic/The-Dolphin.png
+%%DATADIR%%/skycultures/arabic/The-Dragon.png
+%%DATADIR%%/skycultures/arabic/The-Eagle.png
+%%DATADIR%%/skycultures/arabic/The-Giant.png
+%%DATADIR%%/skycultures/arabic/The-Great-Cup.png
+%%DATADIR%%/skycultures/arabic/The-Great-Horse.png
+%%DATADIR%%/skycultures/arabic/The-Greater-Bear.png
+%%DATADIR%%/skycultures/arabic/The-Greater-Dog.png
+%%DATADIR%%/skycultures/arabic/The-Hare.png
+%%DATADIR%%/skycultures/arabic/The-Hen.png
+%%DATADIR%%/skycultures/arabic/The-Howler.png
+%%DATADIR%%/skycultures/arabic/The-Kneeling-Man.png
+%%DATADIR%%/skycultures/arabic/The-Lesser-Bear.png
+%%DATADIR%%/skycultures/arabic/The-Lesser-Dog.png
+%%DATADIR%%/skycultures/arabic/The-Lion.png
+%%DATADIR%%/skycultures/arabic/The-Maiden.png
+%%DATADIR%%/skycultures/arabic/The-Northern-Crown.png
+%%DATADIR%%/skycultures/arabic/The-Ram.png
+%%DATADIR%%/skycultures/arabic/The-Raven.png
+%%DATADIR%%/skycultures/arabic/The-Reins-holder.png
+%%DATADIR%%/skycultures/arabic/The-River.png
+%%DATADIR%%/skycultures/arabic/The-Scorpion.png
+%%DATADIR%%/skycultures/arabic/The-Shackled-Woman.png
+%%DATADIR%%/skycultures/arabic/The-Ship.png
+%%DATADIR%%/skycultures/arabic/The-Snake-Charmer.png
+%%DATADIR%%/skycultures/arabic/The-Southern-Crown.png
+%%DATADIR%%/skycultures/arabic/The-Southern-Whale.png
+%%DATADIR%%/skycultures/arabic/The-Triangle.png
+%%DATADIR%%/skycultures/arabic/The-Turtle.png
+%%DATADIR%%/skycultures/arabic/The-Twins.png
+%%DATADIR%%/skycultures/arabic/The-Well-bucket.png
+%%DATADIR%%/skycultures/arabic/The-Whale.png
+%%DATADIR%%/skycultures/arabic/The-Young-Goat.png
+%%DATADIR%%/skycultures/arabic/Who-Lady-Has-Chair.png
+%%DATADIR%%/skycultures/arabic/al_sufi_altre_006_copia.png
+%%DATADIR%%/skycultures/arabic/constellation_names.eng.fab
+%%DATADIR%%/skycultures/arabic/constellation_names.exp.fab
+%%DATADIR%%/skycultures/arabic/constellations_boundaries.dat
+%%DATADIR%%/skycultures/arabic/constellationsart.fab
+%%DATADIR%%/skycultures/arabic/constellationship.fab
+%%DATADIR%%/skycultures/arabic/description.ar.utf8
+%%DATADIR%%/skycultures/arabic/description.be.utf8
+%%DATADIR%%/skycultures/arabic/description.en.utf8
+%%DATADIR%%/skycultures/arabic/description.fr.utf8
+%%DATADIR%%/skycultures/arabic/description.hu.utf8
+%%DATADIR%%/skycultures/arabic/description.pt_BR.utf8
+%%DATADIR%%/skycultures/arabic/description.ru.utf8
+%%DATADIR%%/skycultures/arabic/description.uk.utf8
+%%DATADIR%%/skycultures/arabic/info.ini
+%%DATADIR%%/skycultures/arabic/star_names.fab
+%%DATADIR%%/skycultures/aztec/Primeros_Memoriales.png
+%%DATADIR%%/skycultures/aztec/Tianquiztli_T.png
+%%DATADIR%%/skycultures/aztec/aztec0.png
+%%DATADIR%%/skycultures/aztec/citlaltlachtli.png
+%%DATADIR%%/skycultures/aztec/citlaltlachtli_t.png
+%%DATADIR%%/skycultures/aztec/colotlixayac.png
+%%DATADIR%%/skycultures/aztec/colotlixayac_image.png
+%%DATADIR%%/skycultures/aztec/colotlixayac_t.png
+%%DATADIR%%/skycultures/aztec/constellation_names.eng.fab
+%%DATADIR%%/skycultures/aztec/constellation_names.esp.fab
+%%DATADIR%%/skycultures/aztec/constellations_boundaries.dat
+%%DATADIR%%/skycultures/aztec/constellationsart.fab
+%%DATADIR%%/skycultures/aztec/constellationship.fab
+%%DATADIR%%/skycultures/aztec/description.ar.utf8
+%%DATADIR%%/skycultures/aztec/description.be.utf8
+%%DATADIR%%/skycultures/aztec/description.en.utf8
+%%DATADIR%%/skycultures/aztec/description.es.utf8
+%%DATADIR%%/skycultures/aztec/description.fr.utf8
+%%DATADIR%%/skycultures/aztec/description.pt_BR.utf8
+%%DATADIR%%/skycultures/aztec/description.ru.utf8
+%%DATADIR%%/skycultures/aztec/description.uk.utf8
+%%DATADIR%%/skycultures/aztec/edificios.png
+%%DATADIR%%/skycultures/aztec/info.ini
+%%DATADIR%%/skycultures/aztec/mamalhuaztli.png
+%%DATADIR%%/skycultures/aztec/mamalhuaztli_image.png
+%%DATADIR%%/skycultures/aztec/mamalhuaztli_t.png
+%%DATADIR%%/skycultures/aztec/nanahuatzin.png
+%%DATADIR%%/skycultures/aztec/star_names.fab
+%%DATADIR%%/skycultures/aztec/tianquiztli.png
+%%DATADIR%%/skycultures/aztec/tiaquitztli_image.png
+%%DATADIR%%/skycultures/aztec/xonecuilli.png
+%%DATADIR%%/skycultures/aztec/xonecuilli_Glifo.png
+%%DATADIR%%/skycultures/aztec/xonecuilli_t.png
+%%DATADIR%%/skycultures/chinese/constellation_names.eng.fab
+%%DATADIR%%/skycultures/chinese/constellations_boundaries.dat
+%%DATADIR%%/skycultures/chinese/constellationship.fab
+%%DATADIR%%/skycultures/chinese/description.ar.utf8
+%%DATADIR%%/skycultures/chinese/description.be.utf8
+%%DATADIR%%/skycultures/chinese/description.en.utf8
+%%DATADIR%%/skycultures/chinese/description.fr.utf8
+%%DATADIR%%/skycultures/chinese/description.it.utf8
+%%DATADIR%%/skycultures/chinese/description.pt_BR.utf8
+%%DATADIR%%/skycultures/chinese/description.ru.utf8
+%%DATADIR%%/skycultures/chinese/description.uk.utf8
+%%DATADIR%%/skycultures/chinese/info.ini
+%%DATADIR%%/skycultures/chinese/star_names.fab
+%%DATADIR%%/skycultures/egyptian/constellation_names.eng.fab
+%%DATADIR%%/skycultures/egyptian/constellations_boundaries.dat
+%%DATADIR%%/skycultures/egyptian/constellationship.fab
+%%DATADIR%%/skycultures/egyptian/description.ar.utf8
+%%DATADIR%%/skycultures/egyptian/description.be.utf8
+%%DATADIR%%/skycultures/egyptian/description.bs.utf8
+%%DATADIR%%/skycultures/egyptian/description.en.utf8
+%%DATADIR%%/skycultures/egyptian/description.fr.utf8
+%%DATADIR%%/skycultures/egyptian/description.it.utf8
+%%DATADIR%%/skycultures/egyptian/description.nb.utf8
+%%DATADIR%%/skycultures/egyptian/description.pt_BR.utf8
+%%DATADIR%%/skycultures/egyptian/description.ru.utf8
+%%DATADIR%%/skycultures/egyptian/description.uk.utf8
+%%DATADIR%%/skycultures/egyptian/info.ini
+%%DATADIR%%/skycultures/egyptian/star_names.fab
+%%DATADIR%%/skycultures/indian/aquarius.png
+%%DATADIR%%/skycultures/indian/aries.png
+%%DATADIR%%/skycultures/indian/cancer.png
+%%DATADIR%%/skycultures/indian/canis-major.png
+%%DATADIR%%/skycultures/indian/capricornus.png
+%%DATADIR%%/skycultures/indian/constellation_names.eng.fab
+%%DATADIR%%/skycultures/indian/constellations_boundaries.dat
+%%DATADIR%%/skycultures/indian/constellationsart.fab
+%%DATADIR%%/skycultures/indian/constellationship.fab
+%%DATADIR%%/skycultures/indian/description.ar.utf8
+%%DATADIR%%/skycultures/indian/description.bs.utf8
+%%DATADIR%%/skycultures/indian/description.en.utf8
+%%DATADIR%%/skycultures/indian/description.fr.utf8
+%%DATADIR%%/skycultures/indian/description.pt_BR.utf8
+%%DATADIR%%/skycultures/indian/description.ru.utf8
+%%DATADIR%%/skycultures/indian/description.uk.utf8
+%%DATADIR%%/skycultures/indian/gemini.png
+%%DATADIR%%/skycultures/indian/info.ini
+%%DATADIR%%/skycultures/indian/leo.png
+%%DATADIR%%/skycultures/indian/libra.png
+%%DATADIR%%/skycultures/indian/orion.png
+%%DATADIR%%/skycultures/indian/pisces.png
+%%DATADIR%%/skycultures/indian/sagittarius.png
+%%DATADIR%%/skycultures/indian/scorpius.png
+%%DATADIR%%/skycultures/indian/star_names.fab
+%%DATADIR%%/skycultures/indian/taurus.png
+%%DATADIR%%/skycultures/indian/virgo.png
+%%DATADIR%%/skycultures/inuit/blubber-container.png
+%%DATADIR%%/skycultures/inuit/breastbone.png
+%%DATADIR%%/skycultures/inuit/caribou.png
+%%DATADIR%%/skycultures/inuit/collarbones.png
+%%DATADIR%%/skycultures/inuit/constellation_names.eng.fab
+%%DATADIR%%/skycultures/inuit/constellations_boundaries.dat
+%%DATADIR%%/skycultures/inuit/constellationsart.fab
+%%DATADIR%%/skycultures/inuit/constellationship.fab
+%%DATADIR%%/skycultures/inuit/description.ar.utf8
+%%DATADIR%%/skycultures/inuit/description.be.utf8
+%%DATADIR%%/skycultures/inuit/description.en.utf8
+%%DATADIR%%/skycultures/inuit/description.fr.utf8
+%%DATADIR%%/skycultures/inuit/description.it.utf8
+%%DATADIR%%/skycultures/inuit/description.pt_BR.utf8
+%%DATADIR%%/skycultures/inuit/description.ru.utf8
+%%DATADIR%%/skycultures/inuit/description.uk.utf8
+%%DATADIR%%/skycultures/inuit/dogs.png
+%%DATADIR%%/skycultures/inuit/info.ini
+%%DATADIR%%/skycultures/inuit/lamp-stand.png
+%%DATADIR%%/skycultures/inuit/runners.png
+%%DATADIR%%/skycultures/inuit/star_names.fab
+%%DATADIR%%/skycultures/inuit/the-one-behind.png
+%%DATADIR%%/skycultures/inuit/two-in-front.png
+%%DATADIR%%/skycultures/inuit/two-placed-far-apart.png
+%%DATADIR%%/skycultures/inuit/two-sunbeams.png
+%%DATADIR%%/skycultures/korean/constellation_names.eng.fab
+%%DATADIR%%/skycultures/korean/constellation_names.exp.fab
+%%DATADIR%%/skycultures/korean/constellations_boundaries.dat
+%%DATADIR%%/skycultures/korean/constellationsart.fab
+%%DATADIR%%/skycultures/korean/constellationship.fab
+%%DATADIR%%/skycultures/korean/description.ar.utf8
+%%DATADIR%%/skycultures/korean/description.be.utf8
+%%DATADIR%%/skycultures/korean/description.en.utf8
+%%DATADIR%%/skycultures/korean/description.fr.utf8
+%%DATADIR%%/skycultures/korean/description.it.utf8
+%%DATADIR%%/skycultures/korean/description.pt_BR.utf8
+%%DATADIR%%/skycultures/korean/description.ru.utf8
+%%DATADIR%%/skycultures/korean/description.uk.utf8
+%%DATADIR%%/skycultures/korean/info.ini
+%%DATADIR%%/skycultures/korean/star_names.fab
+%%DATADIR%%/skycultures/lakota/constellation_names.eng.fab
+%%DATADIR%%/skycultures/lakota/constellations_boundaries.dat
+%%DATADIR%%/skycultures/lakota/constellationsart.fab
+%%DATADIR%%/skycultures/lakota/constellationship.fab
+%%DATADIR%%/skycultures/lakota/description.ar.utf8
+%%DATADIR%%/skycultures/lakota/description.be.utf8
+%%DATADIR%%/skycultures/lakota/description.bs.utf8
+%%DATADIR%%/skycultures/lakota/description.en.utf8
+%%DATADIR%%/skycultures/lakota/description.fr.utf8
+%%DATADIR%%/skycultures/lakota/description.it.utf8
+%%DATADIR%%/skycultures/lakota/description.pt_BR.utf8
+%%DATADIR%%/skycultures/lakota/description.ru.utf8
+%%DATADIR%%/skycultures/lakota/description.uk.utf8
+%%DATADIR%%/skycultures/lakota/info.ini
+%%DATADIR%%/skycultures/lakota/star_names.fab
+%%DATADIR%%/skycultures/maori/constellation_names.eng.fab
+%%DATADIR%%/skycultures/maori/constellations_boundaries.dat
+%%DATADIR%%/skycultures/maori/constellationsart.fab
+%%DATADIR%%/skycultures/maori/constellationship.fab
+%%DATADIR%%/skycultures/maori/description.ar.utf8
+%%DATADIR%%/skycultures/maori/description.be.utf8
+%%DATADIR%%/skycultures/maori/description.en.utf8
+%%DATADIR%%/skycultures/maori/description.fr.utf8
+%%DATADIR%%/skycultures/maori/description.it.utf8
+%%DATADIR%%/skycultures/maori/description.pt_BR.utf8
+%%DATADIR%%/skycultures/maori/description.ru.utf8
+%%DATADIR%%/skycultures/maori/description.uk.utf8
+%%DATADIR%%/skycultures/maori/info.ini
+%%DATADIR%%/skycultures/maori/star_names.fab
+%%DATADIR%%/skycultures/navajo/constellation_names.eng.fab
+%%DATADIR%%/skycultures/navajo/constellations_boundaries.dat
+%%DATADIR%%/skycultures/navajo/constellationship.fab
+%%DATADIR%%/skycultures/navajo/description.ar.utf8
+%%DATADIR%%/skycultures/navajo/description.be.utf8
+%%DATADIR%%/skycultures/navajo/description.bs.utf8
+%%DATADIR%%/skycultures/navajo/description.en.utf8
+%%DATADIR%%/skycultures/navajo/description.fr.utf8
+%%DATADIR%%/skycultures/navajo/description.it.utf8
+%%DATADIR%%/skycultures/navajo/description.pt_BR.utf8
+%%DATADIR%%/skycultures/navajo/description.ru.utf8
+%%DATADIR%%/skycultures/navajo/description.uk.utf8
+%%DATADIR%%/skycultures/navajo/info.ini
+%%DATADIR%%/skycultures/navajo/star_names.fab
+%%DATADIR%%/skycultures/norse/constellation_names.eng.fab
+%%DATADIR%%/skycultures/norse/constellations_boundaries.dat
+%%DATADIR%%/skycultures/norse/constellationship.fab
+%%DATADIR%%/skycultures/norse/description.ar.utf8
+%%DATADIR%%/skycultures/norse/description.be.utf8
+%%DATADIR%%/skycultures/norse/description.bs.utf8
+%%DATADIR%%/skycultures/norse/description.en.utf8
+%%DATADIR%%/skycultures/norse/description.fr.utf8
+%%DATADIR%%/skycultures/norse/description.it.utf8
+%%DATADIR%%/skycultures/norse/description.nb.utf8
+%%DATADIR%%/skycultures/norse/description.pt_BR.utf8
+%%DATADIR%%/skycultures/norse/description.ru.utf8
+%%DATADIR%%/skycultures/norse/description.uk.utf8
+%%DATADIR%%/skycultures/norse/info.ini
+%%DATADIR%%/skycultures/norse/star_names.fab
+%%DATADIR%%/skycultures/polynesian/constellation_names.eng.fab
+%%DATADIR%%/skycultures/polynesian/constellations_boundaries.dat
+%%DATADIR%%/skycultures/polynesian/constellationsart.fab
+%%DATADIR%%/skycultures/polynesian/constellationship.fab
+%%DATADIR%%/skycultures/polynesian/description.ar.utf8
+%%DATADIR%%/skycultures/polynesian/description.be.utf8
+%%DATADIR%%/skycultures/polynesian/description.en.utf8
+%%DATADIR%%/skycultures/polynesian/description.fr.utf8
+%%DATADIR%%/skycultures/polynesian/description.it.utf8
+%%DATADIR%%/skycultures/polynesian/description.pt_BR.utf8
+%%DATADIR%%/skycultures/polynesian/description.ru.utf8
+%%DATADIR%%/skycultures/polynesian/description.uk.utf8
+%%DATADIR%%/skycultures/polynesian/info.ini
+%%DATADIR%%/skycultures/polynesian/star_names.fab
+%%DATADIR%%/skycultures/sami/constellation_names.eng.fab
+%%DATADIR%%/skycultures/sami/constellations_boundaries.dat
+%%DATADIR%%/skycultures/sami/constellationship.fab
+%%DATADIR%%/skycultures/sami/description.ar.utf8
+%%DATADIR%%/skycultures/sami/description.be.utf8
+%%DATADIR%%/skycultures/sami/description.en.utf8
+%%DATADIR%%/skycultures/sami/description.fr.utf8
+%%DATADIR%%/skycultures/sami/description.nb.utf8
+%%DATADIR%%/skycultures/sami/description.pt_BR.utf8
+%%DATADIR%%/skycultures/sami/description.ru.utf8
+%%DATADIR%%/skycultures/sami/description.uk.utf8
+%%DATADIR%%/skycultures/sami/info.ini
+%%DATADIR%%/skycultures/sami/star_names.fab
+%%DATADIR%%/skycultures/tongan/constellation_names.eng.fab
+%%DATADIR%%/skycultures/tongan/constellations_boundaries.dat
+%%DATADIR%%/skycultures/tongan/constellationsart.fab
+%%DATADIR%%/skycultures/tongan/constellationship.fab
+%%DATADIR%%/skycultures/tongan/description.ar.utf8
+%%DATADIR%%/skycultures/tongan/description.en.utf8
+%%DATADIR%%/skycultures/tongan/description.fr.utf8
+%%DATADIR%%/skycultures/tongan/description.pt_BR.utf8
+%%DATADIR%%/skycultures/tongan/description.ru.utf8
+%%DATADIR%%/skycultures/tongan/description.uk.utf8
+%%DATADIR%%/skycultures/tongan/info.ini
+%%DATADIR%%/skycultures/tongan/star_names.fab
+%%DATADIR%%/skycultures/tupi/constellation_names.eng.fab
+%%DATADIR%%/skycultures/tupi/constellations_boundaries.dat
+%%DATADIR%%/skycultures/tupi/constellationsart.fab
+%%DATADIR%%/skycultures/tupi/constellationship.fab
+%%DATADIR%%/skycultures/tupi/description.ar.utf8
+%%DATADIR%%/skycultures/tupi/description.be.utf8
+%%DATADIR%%/skycultures/tupi/description.en.utf8
+%%DATADIR%%/skycultures/tupi/description.fr.utf8
+%%DATADIR%%/skycultures/tupi/description.it.utf8
+%%DATADIR%%/skycultures/tupi/description.pt_BR.utf8
+%%DATADIR%%/skycultures/tupi/description.ru.utf8
+%%DATADIR%%/skycultures/tupi/description.uk.utf8
+%%DATADIR%%/skycultures/tupi/info.ini
+%%DATADIR%%/skycultures/tupi/star_names.fab
+%%DATADIR%%/skycultures/western/andromeda.png
+%%DATADIR%%/skycultures/western/antlia.png
+%%DATADIR%%/skycultures/western/apus.png
+%%DATADIR%%/skycultures/western/aquarius.png
+%%DATADIR%%/skycultures/western/aquila.png
+%%DATADIR%%/skycultures/western/ara.png
+%%DATADIR%%/skycultures/western/argonavis.png
+%%DATADIR%%/skycultures/western/aries.png
+%%DATADIR%%/skycultures/western/auriga.png
+%%DATADIR%%/skycultures/western/bootes.png
+%%DATADIR%%/skycultures/western/caelum.png
+%%DATADIR%%/skycultures/western/camelopardalis.png
+%%DATADIR%%/skycultures/western/cancer.png
+%%DATADIR%%/skycultures/western/canes-venatici.png
+%%DATADIR%%/skycultures/western/canis-major.png
+%%DATADIR%%/skycultures/western/canis-minor.png
+%%DATADIR%%/skycultures/western/capricornus.png
+%%DATADIR%%/skycultures/western/cassiopeia.png
+%%DATADIR%%/skycultures/western/centaurus.png
+%%DATADIR%%/skycultures/western/cepheus.png
+%%DATADIR%%/skycultures/western/cetus.png
+%%DATADIR%%/skycultures/western/chamaeleon.png
+%%DATADIR%%/skycultures/western/circinus.png
+%%DATADIR%%/skycultures/western/columba.png
+%%DATADIR%%/skycultures/western/coma-berenices.png
+%%DATADIR%%/skycultures/western/constellation_names.eng.fab
+%%DATADIR%%/skycultures/western/constellations_boundaries.dat
+%%DATADIR%%/skycultures/western/constellationsart.fab
+%%DATADIR%%/skycultures/western/constellationship.fab
+%%DATADIR%%/skycultures/western/corona-australis.png
+%%DATADIR%%/skycultures/western/corona-borealis.png
+%%DATADIR%%/skycultures/western/corvus.png
+%%DATADIR%%/skycultures/western/crater.png
+%%DATADIR%%/skycultures/western/crux.png
+%%DATADIR%%/skycultures/western/cygnus.png
+%%DATADIR%%/skycultures/western/delphinus.png
+%%DATADIR%%/skycultures/western/description.ar.utf8
+%%DATADIR%%/skycultures/western/description.be.utf8
+%%DATADIR%%/skycultures/western/description.en.utf8
+%%DATADIR%%/skycultures/western/description.fr.utf8
+%%DATADIR%%/skycultures/western/description.hu.utf8
+%%DATADIR%%/skycultures/western/description.it.utf8
+%%DATADIR%%/skycultures/western/description.nb.utf8
+%%DATADIR%%/skycultures/western/description.pt_BR.utf8
+%%DATADIR%%/skycultures/western/description.ru.utf8
+%%DATADIR%%/skycultures/western/description.uk.utf8
+%%DATADIR%%/skycultures/western/dorado.png
+%%DATADIR%%/skycultures/western/draco.png
+%%DATADIR%%/skycultures/western/equuleus.png
+%%DATADIR%%/skycultures/western/eridanus.png
+%%DATADIR%%/skycultures/western/fornax.png
+%%DATADIR%%/skycultures/western/gemini.png
+%%DATADIR%%/skycultures/western/grus.png
+%%DATADIR%%/skycultures/western/hercules.png
+%%DATADIR%%/skycultures/western/horlogium.png
+%%DATADIR%%/skycultures/western/hydra.png
+%%DATADIR%%/skycultures/western/hydrus.png
+%%DATADIR%%/skycultures/western/indus.png
+%%DATADIR%%/skycultures/western/info.ini
+%%DATADIR%%/skycultures/western/lacerta.png
+%%DATADIR%%/skycultures/western/leo-minor.png
+%%DATADIR%%/skycultures/western/leo.png
+%%DATADIR%%/skycultures/western/lepus.png
+%%DATADIR%%/skycultures/western/libra.png
+%%DATADIR%%/skycultures/western/lupus.png
+%%DATADIR%%/skycultures/western/lynx.png
+%%DATADIR%%/skycultures/western/lyra.png
+%%DATADIR%%/skycultures/western/mensa.png
+%%DATADIR%%/skycultures/western/microscopium.png
+%%DATADIR%%/skycultures/western/monoceros.png
+%%DATADIR%%/skycultures/western/musca.png
+%%DATADIR%%/skycultures/western/norma.png
+%%DATADIR%%/skycultures/western/octans.png
+%%DATADIR%%/skycultures/western/ophiuchus.png
+%%DATADIR%%/skycultures/western/orion.png
+%%DATADIR%%/skycultures/western/pavo.png
+%%DATADIR%%/skycultures/western/pegasus.png
+%%DATADIR%%/skycultures/western/perseus.png
+%%DATADIR%%/skycultures/western/phoenix.png
+%%DATADIR%%/skycultures/western/pictor.png
+%%DATADIR%%/skycultures/western/pisces.png
+%%DATADIR%%/skycultures/western/piscis-austrinus.png
+%%DATADIR%%/skycultures/western/pyxis.png
+%%DATADIR%%/skycultures/western/reticulum.png
+%%DATADIR%%/skycultures/western/sagitta.png
+%%DATADIR%%/skycultures/western/sagittarius.png
+%%DATADIR%%/skycultures/western/scorpius.png
+%%DATADIR%%/skycultures/western/sculptor.png
+%%DATADIR%%/skycultures/western/scutum.png
+%%DATADIR%%/skycultures/western/sextans.png
+%%DATADIR%%/skycultures/western/star_names.fab
+%%DATADIR%%/skycultures/western/taurus.png
+%%DATADIR%%/skycultures/western/telescopium.png
+%%DATADIR%%/skycultures/western/triangulum-australe.png
+%%DATADIR%%/skycultures/western/triangulum.png
+%%DATADIR%%/skycultures/western/tucana.png
+%%DATADIR%%/skycultures/western/ursa-major.png
+%%DATADIR%%/skycultures/western/ursa-minor.png
+%%DATADIR%%/skycultures/western/virgo.png
+%%DATADIR%%/skycultures/western/volans.png
+%%DATADIR%%/skycultures/western/vulpecula.png
+%%DATADIR%%/stars/default/defaultStarsConfig.json
+%%DATADIR%%/stars/default/gcvs_hip_part.dat
+%%DATADIR%%/stars/default/name.fab
+%%DATADIR%%/stars/default/stars_0_0v0_3.cat
+%%DATADIR%%/stars/default/stars_1_0v0_3.cat
+%%DATADIR%%/stars/default/stars_2_0v0_3.cat
+%%DATADIR%%/stars/default/stars_3_1v0_2.cat
+%%MORE_STARS%%%%DATADIR%%/stars/default/stars_4_1v0_0.cat
+%%MORE_STARS%%%%DATADIR%%/stars/default/stars_5_2v0_0.cat
+%%MORE_STARS%%%%DATADIR%%/stars/default/stars_6_2v0_0.cat
+%%MORE_STARS%%%%DATADIR%%/stars/default/stars_7_2v0_0.cat
+%%MORE_STARS%%%%DATADIR%%/stars/default/stars_8_2v0_0.cat
+%%DATADIR%%/stars/default/stars_hip_cids_0v0_0.cat
+%%DATADIR%%/stars/default/stars_hip_sp_0v0_0.cat
+%%DATADIR%%/textures/amalthea.png
+%%DATADIR%%/textures/ariel.png
+%%DATADIR%%/textures/callisto.png
+%%DATADIR%%/textures/charon.png
+%%DATADIR%%/textures/corona.png
+%%DATADIR%%/textures/deimos.png
+%%DATADIR%%/textures/dione.png
+%%DATADIR%%/textures/earth-clouds.png
+%%DATADIR%%/textures/earth-shadow.png
+%%DATADIR%%/textures/earth_cmap.png
+%%DATADIR%%/textures/earthmap.png
+%%DATADIR%%/textures/enceladus.png
+%%DATADIR%%/textures/europa.png
+%%DATADIR%%/textures/fog.png
+%%DATADIR%%/textures/fogridge.png
+%%DATADIR%%/textures/ganymede.png
+%%DATADIR%%/textures/halo.png
+%%DATADIR%%/textures/haloLune.png
+%%DATADIR%%/textures/hyperion.png
+%%DATADIR%%/textures/iapetus.png
+%%DATADIR%%/textures/io.png
+%%DATADIR%%/textures/jupiter.png
+%%DATADIR%%/textures/logo24bits.png
+%%DATADIR%%/textures/lune.png
+%%DATADIR%%/textures/mars.png
+%%DATADIR%%/textures/mercury.png
+%%DATADIR%%/textures/milkyway.png
+%%DATADIR%%/textures/mimas.png
+%%DATADIR%%/textures/miranda.png
+%%DATADIR%%/textures/moon.png
+%%DATADIR%%/textures/neb.png
+%%DATADIR%%/textures/neb_dif.png
+%%DATADIR%%/textures/neb_gal.png
+%%DATADIR%%/textures/neb_gcl.png
+%%DATADIR%%/textures/neb_ocl.png
+%%DATADIR%%/textures/neb_ocln.png
+%%DATADIR%%/textures/neb_pnb.png
+%%DATADIR%%/textures/neptune.png
+%%DATADIR%%/textures/neptune_rings.png
+%%DATADIR%%/textures/nomap.png
+%%DATADIR%%/textures/oberon.png
+%%DATADIR%%/textures/phobos.png
+%%DATADIR%%/textures/planet-indicator.png
+%%DATADIR%%/textures/pluto.png
+%%DATADIR%%/textures/pointeur2.png
+%%DATADIR%%/textures/pointeur4.png
+%%DATADIR%%/textures/pointeur5.png
+%%DATADIR%%/textures/proteus.png
+%%DATADIR%%/textures/rhea.png
+%%DATADIR%%/textures/saturn.png
+%%DATADIR%%/textures/saturn_rings_radial.png
+%%DATADIR%%/textures/star16x16.png
+%%DATADIR%%/textures/sun.png
+%%DATADIR%%/textures/tethys.png
+%%DATADIR%%/textures/titan.png
+%%DATADIR%%/textures/titania.png
+%%DATADIR%%/textures/triton.png
+%%DATADIR%%/textures/umbriel.png
+%%DATADIR%%/textures/uranus.png
+%%DATADIR%%/textures/uranus_rings.png
+%%DATADIR%%/textures/venus.png
+@dirrm %%DATADIR%%/textures
+@dirrm %%DATADIR%%/stars/default
+@dirrm %%DATADIR%%/stars
+@dirrm %%DATADIR%%/skycultures/western
+@dirrm %%DATADIR%%/skycultures/tupi
+@dirrm %%DATADIR%%/skycultures/tongan
+@dirrm %%DATADIR%%/skycultures/sami
+@dirrm %%DATADIR%%/skycultures/polynesian
+@dirrm %%DATADIR%%/skycultures/norse
+@dirrm %%DATADIR%%/skycultures/navajo
+@dirrm %%DATADIR%%/skycultures/maori
+@dirrm %%DATADIR%%/skycultures/lakota
+@dirrm %%DATADIR%%/skycultures/korean
+@dirrm %%DATADIR%%/skycultures/inuit
+@dirrm %%DATADIR%%/skycultures/indian
+@dirrm %%DATADIR%%/skycultures/egyptian
+@dirrm %%DATADIR%%/skycultures/chinese
+@dirrm %%DATADIR%%/skycultures/aztec
+@dirrm %%DATADIR%%/skycultures/arabic
+@dirrm %%DATADIR%%/skycultures
+%%SCRIPTS%%@dirrm %%DATADIR%%/scripts
+@dirrm %%DATADIR%%/nebulae/default
+@dirrm %%DATADIR%%/nebulae
+@dirrm %%DATADIR%%/landscapes/uranus
+@dirrm %%DATADIR%%/landscapes/trees
+@dirrm %%DATADIR%%/landscapes/saturn
+@dirrm %%DATADIR%%/landscapes/ocean
+@dirrm %%DATADIR%%/landscapes/neptune
+@dirrm %%DATADIR%%/landscapes/moon
+@dirrm %%DATADIR%%/landscapes/mars
+@dirrm %%DATADIR%%/landscapes/jupiter
+@dirrm %%DATADIR%%/landscapes/hurricane
+@dirrm %%DATADIR%%/landscapes/guereins
+@dirrm %%DATADIR%%/landscapes/garching
+@dirrm %%DATADIR%%/landscapes
+@dirrm %%DATADIR%%/data
+@dirrm %%DATADIR%%
+share/applications/stellarium.desktop
+share/icons/hicolor/16x16/apps/stellarium.png
+share/icons/hicolor/32x32/apps/stellarium.png
+share/icons/hicolor/48x48/apps/stellarium.png
+share/icons/hicolor/64x64/apps/stellarium.png
+share/icons/hicolor/128x128/apps/stellarium.png
+share/icons/hicolor/256x256/apps/stellarium.png
+share/icons/hicolor/512x512/apps/stellarium.png
+share/locale/aa/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/aa/LC_MESSAGES/stellarium.mo
+share/locale/ab/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/ab/LC_MESSAGES/stellarium.mo
+share/locale/ae/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/ae/LC_MESSAGES/stellarium.mo
+share/locale/af/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/af/LC_MESSAGES/stellarium.mo
+share/locale/ak/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/ak/LC_MESSAGES/stellarium.mo
+share/locale/am/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/am/LC_MESSAGES/stellarium.mo
+share/locale/an/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/an/LC_MESSAGES/stellarium.mo
+share/locale/ar/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/ar/LC_MESSAGES/stellarium.mo
+share/locale/as/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/as/LC_MESSAGES/stellarium.mo
+share/locale/ast/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/ast/LC_MESSAGES/stellarium.mo
+share/locale/av/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/av/LC_MESSAGES/stellarium.mo
+share/locale/az/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/az/LC_MESSAGES/stellarium.mo
+share/locale/ba/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/ba/LC_MESSAGES/stellarium.mo
+share/locale/be/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/be/LC_MESSAGES/stellarium.mo
+share/locale/bg/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/bg/LC_MESSAGES/stellarium.mo
+share/locale/bh/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/bh/LC_MESSAGES/stellarium.mo
+share/locale/bi/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/bi/LC_MESSAGES/stellarium.mo
+share/locale/bn/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/bn/LC_MESSAGES/stellarium.mo
+share/locale/bo/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/bo/LC_MESSAGES/stellarium.mo
+share/locale/br/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/br/LC_MESSAGES/stellarium.mo
+share/locale/bs/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/bs/LC_MESSAGES/stellarium.mo
+share/locale/ca/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/ca/LC_MESSAGES/stellarium.mo
+share/locale/ce/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/ce/LC_MESSAGES/stellarium.mo
+share/locale/ckb/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/ckb/LC_MESSAGES/stellarium.mo
+share/locale/cs/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/cs/LC_MESSAGES/stellarium.mo
+share/locale/cv/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/cv/LC_MESSAGES/stellarium.mo
+share/locale/cy/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/cy/LC_MESSAGES/stellarium.mo
+share/locale/da/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/da/LC_MESSAGES/stellarium.mo
+share/locale/de/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/de/LC_MESSAGES/stellarium.mo
+share/locale/dv/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/dv/LC_MESSAGES/stellarium.mo
+share/locale/el/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/el/LC_MESSAGES/stellarium.mo
+share/locale/en/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/en/LC_MESSAGES/stellarium.mo
+share/locale/en_AU/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/en_AU/LC_MESSAGES/stellarium.mo
+share/locale/en_CA/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/en_CA/LC_MESSAGES/stellarium.mo
+share/locale/en_GB/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/en_GB/LC_MESSAGES/stellarium.mo
+share/locale/en_US/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/en_US/LC_MESSAGES/stellarium.mo
+share/locale/eo/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/eo/LC_MESSAGES/stellarium.mo
+share/locale/es/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/es/LC_MESSAGES/stellarium.mo
+share/locale/et/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/et/LC_MESSAGES/stellarium.mo
+share/locale/eu/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/eu/LC_MESSAGES/stellarium.mo
+share/locale/fa/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/fa/LC_MESSAGES/stellarium.mo
+share/locale/fi/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/fi/LC_MESSAGES/stellarium.mo
+share/locale/fil/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/fil/LC_MESSAGES/stellarium.mo
+share/locale/fj/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/fj/LC_MESSAGES/stellarium.mo
+share/locale/fr/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/fr/LC_MESSAGES/stellarium.mo
+share/locale/fy/LC_MESSAGES/stellarium.mo
+share/locale/ga/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/ga/LC_MESSAGES/stellarium.mo
+share/locale/gd/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/gd/LC_MESSAGES/stellarium.mo
+share/locale/gl/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/gl/LC_MESSAGES/stellarium.mo
+share/locale/gn/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/gn/LC_MESSAGES/stellarium.mo
+share/locale/gu/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/gu/LC_MESSAGES/stellarium.mo
+share/locale/gv/LC_MESSAGES/stellarium.mo
+share/locale/haw/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/haw/LC_MESSAGES/stellarium.mo
+share/locale/he/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/he/LC_MESSAGES/stellarium.mo
+share/locale/hi/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/hi/LC_MESSAGES/stellarium.mo
+share/locale/hr/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/hr/LC_MESSAGES/stellarium.mo
+share/locale/hrx/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/hrx/LC_MESSAGES/stellarium.mo
+share/locale/ht/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/ht/LC_MESSAGES/stellarium.mo
+share/locale/hu/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/hu/LC_MESSAGES/stellarium.mo
+share/locale/hy/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/hy/LC_MESSAGES/stellarium.mo
+share/locale/ia/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/ia/LC_MESSAGES/stellarium.mo
+share/locale/id/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/id/LC_MESSAGES/stellarium.mo
+share/locale/is/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/is/LC_MESSAGES/stellarium.mo
+share/locale/it/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/it/LC_MESSAGES/stellarium.mo
+share/locale/ja/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/ja/LC_MESSAGES/stellarium.mo
+share/locale/ka/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/ka/LC_MESSAGES/stellarium.mo
+share/locale/kg/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/kg/LC_MESSAGES/stellarium.mo
+share/locale/kk/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/kk/LC_MESSAGES/stellarium.mo
+share/locale/kn/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/kn/LC_MESSAGES/stellarium.mo
+share/locale/ko/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/ko/LC_MESSAGES/stellarium.mo
+share/locale/ky/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/ky/LC_MESSAGES/stellarium.mo
+share/locale/la/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/la/LC_MESSAGES/stellarium.mo
+share/locale/lb/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/lb/LC_MESSAGES/stellarium.mo
+share/locale/lo/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/lo/LC_MESSAGES/stellarium.mo
+share/locale/lt/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/lt/LC_MESSAGES/stellarium.mo
+share/locale/lv/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/lv/LC_MESSAGES/stellarium.mo
+share/locale/mi/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/mi/LC_MESSAGES/stellarium.mo
+share/locale/mk/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/mk/LC_MESSAGES/stellarium.mo
+share/locale/ml/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/ml/LC_MESSAGES/stellarium.mo
+share/locale/mn/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/mn/LC_MESSAGES/stellarium.mo
+share/locale/mo/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/mo/LC_MESSAGES/stellarium.mo
+share/locale/mr/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/mr/LC_MESSAGES/stellarium.mo
+share/locale/ms/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/ms/LC_MESSAGES/stellarium.mo
+share/locale/mt/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/mt/LC_MESSAGES/stellarium.mo
+share/locale/nan/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/nan/LC_MESSAGES/stellarium.mo
+share/locale/nb/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/nb/LC_MESSAGES/stellarium.mo
+share/locale/nl/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/nl/LC_MESSAGES/stellarium.mo
+share/locale/nn/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/nn/LC_MESSAGES/stellarium.mo
+share/locale/oc/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/oc/LC_MESSAGES/stellarium.mo
+share/locale/os/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/os/LC_MESSAGES/stellarium.mo
+share/locale/pa/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/pa/LC_MESSAGES/stellarium.mo
+share/locale/pl/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/pl/LC_MESSAGES/stellarium.mo
+share/locale/pt/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/pt/LC_MESSAGES/stellarium.mo
+share/locale/pt_BR/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/pt_BR/LC_MESSAGES/stellarium.mo
+share/locale/ro/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/ro/LC_MESSAGES/stellarium.mo
+share/locale/ru/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/ru/LC_MESSAGES/stellarium.mo
+share/locale/sah/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/sah/LC_MESSAGES/stellarium.mo
+share/locale/sco/LC_MESSAGES/stellarium.mo
+share/locale/se/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/se/LC_MESSAGES/stellarium.mo
+share/locale/si/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/si/LC_MESSAGES/stellarium.mo
+share/locale/sk/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/sk/LC_MESSAGES/stellarium.mo
+share/locale/sl/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/sl/LC_MESSAGES/stellarium.mo
+share/locale/sm/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/sm/LC_MESSAGES/stellarium.mo
+share/locale/sq/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/sq/LC_MESSAGES/stellarium.mo
+share/locale/sr/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/sr/LC_MESSAGES/stellarium.mo
+share/locale/su/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/su/LC_MESSAGES/stellarium.mo
+share/locale/sv/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/sv/LC_MESSAGES/stellarium.mo
+share/locale/sw/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/sw/LC_MESSAGES/stellarium.mo
+share/locale/ta/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/ta/LC_MESSAGES/stellarium.mo
+share/locale/te/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/te/LC_MESSAGES/stellarium.mo
+share/locale/tg/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/tg/LC_MESSAGES/stellarium.mo
+share/locale/th/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/th/LC_MESSAGES/stellarium.mo
+share/locale/tl/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/tl/LC_MESSAGES/stellarium.mo
+share/locale/tr/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/tr/LC_MESSAGES/stellarium.mo
+share/locale/tt/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/tt/LC_MESSAGES/stellarium.mo
+share/locale/uk/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/uk/LC_MESSAGES/stellarium.mo
+share/locale/uz/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/uz/LC_MESSAGES/stellarium.mo
+share/locale/vi/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/vi/LC_MESSAGES/stellarium.mo
+share/locale/zh_CN/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/zh_CN/LC_MESSAGES/stellarium.mo
+share/locale/zh_HK/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/zh_HK/LC_MESSAGES/stellarium.mo
+share/locale/zh_TW/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/zh_TW/LC_MESSAGES/stellarium.mo
+share/locale/zu/LC_MESSAGES/stellarium-skycultures.mo
+share/locale/zu/LC_MESSAGES/stellarium.mo
+share/pixmaps/stellarium.xpm
+@dirrmtry share/locale/zu/LC_MESSAGES
+@dirrmtry share/locale/zu
+@dirrmtry share/locale/zh_HK/LC_MESSAGES
+@dirrmtry share/locale/zh_HK
+@dirrmtry share/locale/tl/LC_MESSAGES
+@dirrmtry share/locale/tl
+@dirrmtry share/locale/te/LC_MESSAGES
+@dirrmtry share/locale/te
+@dirrmtry share/locale/sw/LC_MESSAGES
+@dirrmtry share/locale/sw
+@dirrmtry share/locale/su/LC_MESSAGES
+@dirrmtry share/locale/su
+@dirrmtry share/locale/sm/LC_MESSAGES
+@dirrmtry share/locale/sm
+@dirrmtry share/locale/si/LC_MESSAGES
+@dirrmtry share/locale/si
+@dirrmtry share/locale/se/LC_MESSAGES
+@dirrmtry share/locale/se
+@dirrmtry share/locale/sco/LC_MESSAGES
+@dirrmtry share/locale/sco
+@dirrmtry share/locale/sah/LC_MESSAGES
+@dirrmtry share/locale/sah
+@dirrmtry share/locale/os/LC_MESSAGES
+@dirrmtry share/locale/os
+@dirrmtry share/locale/nan/LC_MESSAGES
+@dirrmtry share/locale/nan
+@dirrmtry share/locale/mr/LC_MESSAGES
+@dirrmtry share/locale/mr
+@dirrmtry share/locale/mo/LC_MESSAGES
+@dirrmtry share/locale/mo
+@dirrmtry share/locale/mi/LC_MESSAGES
+@dirrmtry share/locale/mi
+@dirrmtry share/locale/lo/LC_MESSAGES
+@dirrmtry share/locale/lo
+@dirrmtry share/locale/lb/LC_MESSAGES
+@dirrmtry share/locale/lb
+@dirrmtry share/locale/la/LC_MESSAGES
+@dirrmtry share/locale/la
+@dirrmtry share/locale/ky/LC_MESSAGES
+@dirrmtry share/locale/ky
+@dirrmtry share/locale/kg/LC_MESSAGES
+@dirrmtry share/locale/kg
+@dirrmtry share/locale/ia/LC_MESSAGES
+@dirrmtry share/locale/ia
+@dirrmtry share/locale/hy/LC_MESSAGES
+@dirrmtry share/locale/hy
+@dirrmtry share/locale/ht/LC_MESSAGES
+@dirrmtry share/locale/ht
+@dirrmtry share/locale/hrx/LC_MESSAGES
+@dirrmtry share/locale/hrx
+@dirrmtry share/locale/haw/LC_MESSAGES
+@dirrmtry share/locale/haw
+@dirrmtry share/locale/gv/LC_MESSAGES
+@dirrmtry share/locale/gv
+@dirrmtry share/locale/gn/LC_MESSAGES
+@dirrmtry share/locale/gn
+@dirrmtry share/locale/gd/LC_MESSAGES
+@dirrmtry share/locale/gd
+@dirrmtry share/locale/fy/LC_MESSAGES
+@dirrmtry share/locale/fy
+@dirrmtry share/locale/fj/LC_MESSAGES
+@dirrmtry share/locale/fj
+@dirrmtry share/locale/fil/LC_MESSAGES
+@dirrmtry share/locale/fil
+@dirrmtry share/locale/en_US/LC_MESSAGES
+@dirrmtry share/locale/en_US
+@dirrmtry share/locale/dv/LC_MESSAGES
+@dirrmtry share/locale/dv
+@dirrmtry share/locale/cv/LC_MESSAGES
+@dirrmtry share/locale/cv
+@dirrmtry share/locale/ckb/LC_MESSAGES
+@dirrmtry share/locale/ckb
+@dirrmtry share/locale/ce/LC_MESSAGES
+@dirrmtry share/locale/ce
+@dirrmtry share/locale/bo/LC_MESSAGES
+@dirrmtry share/locale/bo
+@dirrmtry share/locale/bi/LC_MESSAGES
+@dirrmtry share/locale/bi
+@dirrmtry share/locale/bh/LC_MESSAGES
+@dirrmtry share/locale/bh
+@dirrmtry share/locale/ba/LC_MESSAGES
+@dirrmtry share/locale/ba
+@dirrmtry share/locale/av/LC_MESSAGES
+@dirrmtry share/locale/av
+@dirrmtry share/locale/an/LC_MESSAGES
+@dirrmtry share/locale/an
+@dirrmtry share/locale/ak/LC_MESSAGES
+@dirrmtry share/locale/ak
+@dirrmtry share/locale/ae/LC_MESSAGES
+@dirrmtry share/locale/ae
+@dirrmtry share/locale/ab/LC_MESSAGES
+@dirrmtry share/locale/ab
+@dirrmtry share/locale/aa/LC_MESSAGES
+@dirrmtry share/locale/aa
+@dirrmtry share/icons/hicolor/512x512/apps
+@dirrmtry share/icons/hicolor/512x512
diff --git a/astro/stellarium/Makefile b/astro/stellarium/Makefile
index 54a3a7559e67..2f3bc9b87a59 100644
--- a/astro/stellarium/Makefile
+++ b/astro/stellarium/Makefile
@@ -2,8 +2,7 @@
# $FreeBSD$
PORTNAME= stellarium
-PORTVERSION= 0.12.4
-PORTREVISION= 1
+PORTVERSION= 0.13.0
CATEGORIES= astro
MASTER_SITES= SF/${PORTNAME}/Stellarium-sources/${PORTVERSION}
DISTFILES= ${DISTNAME}${EXTRACT_SUFX}
@@ -15,9 +14,8 @@ COMMENT= 3D photo-realistic sky renderer (planetarium)
LICENSE= GPLv2
USES= cmake gettext iconv
-USE_GL= glu
-USE_QT4= moc_build rcc_build uic_build qmake_build \
- corelib gui network opengl script
+USE_GL= gl
+USE_QT5= qmake_build buildtools core concurrent declarative linguist
INSTALLS_ICONS= yes
PORTDOCS= AUTHORS ChangeLog README
@@ -25,7 +23,7 @@ PORTDOCS= AUTHORS ChangeLog README
OPTIONS_DEFINE= MORE_STARS MULTIMEDIA DOCS
OPTIONS_DEFAULT= MULTIMEDIA
MORE_STARS_DESC= Install extra star catalogs (1.2GB)
-MULTIMEDIA_DESC= Sound and video support (via Phonon)
+MULTIMEDIA_DESC= Sound and video support
.include <bsd.port.options.mk>
@@ -42,18 +40,13 @@ PLIST_SUB+= MORE_STARS="@comment "
.endif
.if ${PORT_OPTIONS:MMULTIMEDIA}
-USE_QT4+= phonon
+USE_QT5+= multimedia
.else
CMAKE_ARGS+= -DENABLE_SOUND:BOOL=OFF
.endif
-post-patch: .SILENT
- ${REINPLACE_CMD} -e '/QTTEST/d' ${WRKSRC}/CMakeLists.txt
-# Avoid picking up the wrong `fixx11h.h' (`x11/kdelibs3' port installs one
-# that does not handle FontChange)
- ${GREP} -Rl --null fixx11h\\.h ${WRKSRC}/src ${WRKSRC}/plugins | \
- ${XARGS} -0 ${REINPLACE_CMD} -e 's/fixx11h\.h/fixx11qt4h.h/'
- cd ${WRKSRC}/src/core/external && ${MV} fixx11h.h fixx11qt4h.h
+post-patch:
+ @${REINPLACE_CMD} -e '/ -Wno-unused-result/d' ${WRKSRC}/CMakeLists.txt
post-install:
.if ${PORT_OPTIONS:MMORE_STARS}
diff --git a/astro/stellarium/distinfo b/astro/stellarium/distinfo
index 07fdc6ee7d53..9b2fbe6c9f67 100644
--- a/astro/stellarium/distinfo
+++ b/astro/stellarium/distinfo
@@ -1,5 +1,5 @@
-SHA256 (stellarium-0.12.4.tar.gz) = 0fae1b6e2231ccfaba8fd00abf816a88bd89b5dc61387ac84edf479b363c6684
-SIZE (stellarium-0.12.4.tar.gz) = 79343617
+SHA256 (stellarium-0.13.0.tar.gz) = 3458e3fbe1b8df8aba30049b796f048f5408847f270327d987776bd49fee7dd7
+SIZE (stellarium-0.13.0.tar.gz) = 94928628
SHA256 (stars_4_1v0_0.cat) = e0373d869d08ffac2ba78e7fbe29add6511073cd74a52b9918d8b77fb05827e7
SIZE (stars_4_1v0_0.cat) = 17275482
SHA256 (stars_5_2v0_0.cat) = d093e25e8cb8350ef74706d7bf05455d224acb076da87bf1b784b5cf0e0d9931
diff --git a/astro/stellarium/pkg-plist b/astro/stellarium/pkg-plist
index fad62a36bbe4..b456b9dc6497 100644
--- a/astro/stellarium/pkg-plist
+++ b/astro/stellarium/pkg-plist
@@ -1,15 +1,26 @@
bin/stellarium
man/man1/stellarium.1.gz
+share/appdata/stellarium.appdata.xml
+share/applications/stellarium.desktop
+share/icons/hicolor/128x128/apps/stellarium.png
+share/icons/hicolor/16x16/apps/stellarium.png
+share/icons/hicolor/256x256/apps/stellarium.png
+share/icons/hicolor/32x32/apps/stellarium.png
+share/icons/hicolor/48x48/apps/stellarium.png
+share/icons/hicolor/512x512/apps/stellarium.png
+share/icons/hicolor/64x64/apps/stellarium.png
+share/pixmaps/stellarium.xpm
%%DATADIR%%/data/DejaVuSans.ttf
%%DATADIR%%/data/DejaVuSansMono.ttf
%%DATADIR%%/data/base_locations.bin.gz
+%%DATADIR%%/data/constellations_boundaries.dat
%%DATADIR%%/data/countryCodes.dat
%%DATADIR%%/data/default_config.ini
-%%DATADIR%%/data/default_shortcuts.json
%%DATADIR%%/data/iso3166-1-alpha-2.utf8
%%DATADIR%%/data/iso639-1.utf8
%%DATADIR%%/data/ssystem.ini
%%DATADIR%%/data/stellarium.ico
+%%DATADIR%%/data/updates.json
%%DATADIR%%/landscapes/garching/description.ar.utf8
%%DATADIR%%/landscapes/garching/description.be.utf8
%%DATADIR%%/landscapes/garching/description.bg.utf8
@@ -20,12 +31,30 @@ man/man1/stellarium.1.gz
%%DATADIR%%/landscapes/garching/description.pt_BR.utf8
%%DATADIR%%/landscapes/garching/description.ru.utf8
%%DATADIR%%/landscapes/garching/description.uk.utf8
+%%DATADIR%%/landscapes/garching/fogridge.png
%%DATADIR%%/landscapes/garching/garching-gl1.png
%%DATADIR%%/landscapes/garching/garching-gl2.png
%%DATADIR%%/landscapes/garching/garching-gl3.png
%%DATADIR%%/landscapes/garching/garching-gl4.png
%%DATADIR%%/landscapes/garching/garching-ground3.png
%%DATADIR%%/landscapes/garching/landscape.ini
+%%DATADIR%%/landscapes/geneva/CMakeLists.txt
+%%DATADIR%%/landscapes/geneva/description.de.utf8
+%%DATADIR%%/landscapes/geneva/description.en.utf8
+%%DATADIR%%/landscapes/geneva/description.fr.utf8
+%%DATADIR%%/landscapes/geneva/description.pt_BR.utf8
+%%DATADIR%%/landscapes/geneva/description.ru.utf8
+%%DATADIR%%/landscapes/geneva/horizon_Geneve.txt
+%%DATADIR%%/landscapes/geneva/landscape.ini
+%%DATADIR%%/landscapes/grossmugl/description.de.utf8
+%%DATADIR%%/landscapes/grossmugl/description.en.utf8
+%%DATADIR%%/landscapes/grossmugl/description.fr.utf8
+%%DATADIR%%/landscapes/grossmugl/description.pt_BR.utf8
+%%DATADIR%%/landscapes/grossmugl/description.ru.utf8
+%%DATADIR%%/landscapes/grossmugl/grossmugl_leeberg_crop11.25_2048.png
+%%DATADIR%%/landscapes/grossmugl/grossmugl_leeberg_fog_crop22.5_w512.png
+%%DATADIR%%/landscapes/grossmugl/grossmugl_leeberg_illum_crop0_2048.png
+%%DATADIR%%/landscapes/grossmugl/landscape.ini
%%DATADIR%%/landscapes/guereins/description.ar.utf8
%%DATADIR%%/landscapes/guereins/description.be.utf8
%%DATADIR%%/landscapes/guereins/description.bg.utf8
@@ -36,6 +65,7 @@ man/man1/stellarium.1.gz
%%DATADIR%%/landscapes/guereins/description.pt_BR.utf8
%%DATADIR%%/landscapes/guereins/description.ru.utf8
%%DATADIR%%/landscapes/guereins/description.uk.utf8
+%%DATADIR%%/landscapes/guereins/fog.png
%%DATADIR%%/landscapes/guereins/guereins1.png
%%DATADIR%%/landscapes/guereins/guereins2.png
%%DATADIR%%/landscapes/guereins/guereins3.png
@@ -56,6 +86,7 @@ man/man1/stellarium.1.gz
%%DATADIR%%/landscapes/hurricane/description.pt_BR.utf8
%%DATADIR%%/landscapes/hurricane/description.ru.utf8
%%DATADIR%%/landscapes/hurricane/description.uk.utf8
+%%DATADIR%%/landscapes/hurricane/fogridge.png
%%DATADIR%%/landscapes/hurricane/hurricane1.png
%%DATADIR%%/landscapes/hurricane/hurricane2.png
%%DATADIR%%/landscapes/hurricane/hurricane3.png
@@ -66,6 +97,7 @@ man/man1/stellarium.1.gz
%%DATADIR%%/landscapes/hurricane/hurricane8.png
%%DATADIR%%/landscapes/hurricane/hurricaneb.png
%%DATADIR%%/landscapes/hurricane/landscape.ini
+%%DATADIR%%/landscapes/jupiter/description.be.utf8
%%DATADIR%%/landscapes/jupiter/description.en.utf8
%%DATADIR%%/landscapes/jupiter/description.fr.utf8
%%DATADIR%%/landscapes/jupiter/description.pt_BR.utf8
@@ -96,6 +128,7 @@ man/man1/stellarium.1.gz
%%DATADIR%%/landscapes/moon/description.ru.utf8
%%DATADIR%%/landscapes/moon/description.uk.utf8
%%DATADIR%%/landscapes/moon/landscape.ini
+%%DATADIR%%/landscapes/neptune/description.be.utf8
%%DATADIR%%/landscapes/neptune/description.en.utf8
%%DATADIR%%/landscapes/neptune/description.fr.utf8
%%DATADIR%%/landscapes/neptune/description.pt_BR.utf8
@@ -112,6 +145,7 @@ man/man1/stellarium.1.gz
%%DATADIR%%/landscapes/ocean/description.pt_BR.utf8
%%DATADIR%%/landscapes/ocean/description.ru.utf8
%%DATADIR%%/landscapes/ocean/description.uk.utf8
+%%DATADIR%%/landscapes/ocean/fog.png
%%DATADIR%%/landscapes/ocean/landscape.ini
%%DATADIR%%/landscapes/ocean/ocean1.png
%%DATADIR%%/landscapes/ocean/ocean2.png
@@ -146,6 +180,9 @@ man/man1/stellarium.1.gz
%%DATADIR%%/landscapes/trees/description.uk.utf8
%%DATADIR%%/landscapes/trees/landscape.ini
%%DATADIR%%/landscapes/trees/trees_512.png
+%%DATADIR%%/landscapes/trees/trees_fog_512.png
+%%DATADIR%%/landscapes/trees/trees_illum_512.png
+%%DATADIR%%/landscapes/uranus/description.be.utf8
%%DATADIR%%/landscapes/uranus/description.en.utf8
%%DATADIR%%/landscapes/uranus/description.fr.utf8
%%DATADIR%%/landscapes/uranus/description.pt_BR.utf8
@@ -168,11 +205,11 @@ man/man1/stellarium.1.gz
%%DATADIR%%/nebulae/default/lmc_moshdr-4.png
%%DATADIR%%/nebulae/default/m10.png
%%DATADIR%%/nebulae/default/m100.png
-%%DATADIR%%/nebulae/default/m101.png
+%%DATADIR%%/nebulae/default/m101-vasey.png
%%DATADIR%%/nebulae/default/m102.png
%%DATADIR%%/nebulae/default/m103.png
%%DATADIR%%/nebulae/default/m104.png
-%%DATADIR%%/nebulae/default/m105.png
+%%DATADIR%%/nebulae/default/m105-vasey.png
%%DATADIR%%/nebulae/default/m106.png
%%DATADIR%%/nebulae/default/m107.png
%%DATADIR%%/nebulae/default/m108.png
@@ -180,7 +217,7 @@ man/man1/stellarium.1.gz
%%DATADIR%%/nebulae/default/m11.png
%%DATADIR%%/nebulae/default/m110.png
%%DATADIR%%/nebulae/default/m12.png
-%%DATADIR%%/nebulae/default/m13.png
+%%DATADIR%%/nebulae/default/m13-vasey.png
%%DATADIR%%/nebulae/default/m14.png
%%DATADIR%%/nebulae/default/m15dumont.png
%%DATADIR%%/nebulae/default/m16dumont.png
@@ -199,7 +236,7 @@ man/man1/stellarium.1.gz
%%DATADIR%%/nebulae/default/m27dumont.png
%%DATADIR%%/nebulae/default/m28.png
%%DATADIR%%/nebulae/default/m29.png
-%%DATADIR%%/nebulae/default/m3.png
+%%DATADIR%%/nebulae/default/m3-vasey.png
%%DATADIR%%/nebulae/default/m30.png
%%DATADIR%%/nebulae/default/m31.png
%%DATADIR%%/nebulae/default/m33bousquet.png
@@ -219,7 +256,7 @@ man/man1/stellarium.1.gz
%%DATADIR%%/nebulae/default/m49.png
%%DATADIR%%/nebulae/default/m5.png
%%DATADIR%%/nebulae/default/m50.png
-%%DATADIR%%/nebulae/default/m51.png
+%%DATADIR%%/nebulae/default/m51-vasey.png
%%DATADIR%%/nebulae/default/m52.png
%%DATADIR%%/nebulae/default/m53.png
%%DATADIR%%/nebulae/default/m54.png
@@ -232,8 +269,8 @@ man/man1/stellarium.1.gz
%%DATADIR%%/nebulae/default/m60.png
%%DATADIR%%/nebulae/default/m61.png
%%DATADIR%%/nebulae/default/m62.png
-%%DATADIR%%/nebulae/default/m63.png
-%%DATADIR%%/nebulae/default/m64.png
+%%DATADIR%%/nebulae/default/m63-vasey.png
+%%DATADIR%%/nebulae/default/m64-vasey.png
%%DATADIR%%/nebulae/default/m65.png
%%DATADIR%%/nebulae/default/m66.png
%%DATADIR%%/nebulae/default/m67.png
@@ -248,11 +285,11 @@ man/man1/stellarium.1.gz
%%DATADIR%%/nebulae/default/m75.png
%%DATADIR%%/nebulae/default/m76.png
%%DATADIR%%/nebulae/default/m77-dss.png
-%%DATADIR%%/nebulae/default/m78.png
+%%DATADIR%%/nebulae/default/m78-vasey.png
%%DATADIR%%/nebulae/default/m79.png
%%DATADIR%%/nebulae/default/m80.png
-%%DATADIR%%/nebulae/default/m81.png
-%%DATADIR%%/nebulae/default/m82.png
+%%DATADIR%%/nebulae/default/m81-vasey.png
+%%DATADIR%%/nebulae/default/m82-vasey.png
%%DATADIR%%/nebulae/default/m83.png
%%DATADIR%%/nebulae/default/m84.png
%%DATADIR%%/nebulae/default/m85.png
@@ -278,6 +315,7 @@ man/man1/stellarium.1.gz
%%DATADIR%%/nebulae/default/n1499bousquet.png
%%DATADIR%%/nebulae/default/n1532-darkskies.png
%%DATADIR%%/nebulae/default/n2244bousquet.png
+%%DATADIR%%/nebulae/default/n2467-trev.png
%%DATADIR%%/nebulae/default/n253bousquet.png
%%DATADIR%%/nebulae/default/n281kepler.png
%%DATADIR%%/nebulae/default/n2903oleg.png
@@ -302,8 +340,8 @@ man/man1/stellarium.1.gz
%%DATADIR%%/nebulae/default/n7023kepler.png
%%DATADIR%%/nebulae/default/n7129oleg.png
%%DATADIR%%/nebulae/default/n7293.png
-%%DATADIR%%/nebulae/default/n7318kepler.png
-%%DATADIR%%/nebulae/default/n7331kepler.png
+%%DATADIR%%/nebulae/default/n7318-vasey.png
+%%DATADIR%%/nebulae/default/n7331-vasey.png
%%DATADIR%%/nebulae/default/n869-884spano.png
%%DATADIR%%/nebulae/default/n891oleg.png
%%DATADIR%%/nebulae/default/nebula_textures.fab
@@ -480,7 +518,9 @@ man/man1/stellarium.1.gz
%%DATADIR%%/skycultures/indian/constellationsart.fab
%%DATADIR%%/skycultures/indian/constellationship.fab
%%DATADIR%%/skycultures/indian/description.ar.utf8
+%%DATADIR%%/skycultures/indian/description.be.utf8
%%DATADIR%%/skycultures/indian/description.bs.utf8
+%%DATADIR%%/skycultures/indian/description.de.utf8
%%DATADIR%%/skycultures/indian/description.en.utf8
%%DATADIR%%/skycultures/indian/description.fr.utf8
%%DATADIR%%/skycultures/indian/description.pt_BR.utf8
@@ -609,6 +649,57 @@ man/man1/stellarium.1.gz
%%DATADIR%%/skycultures/polynesian/description.uk.utf8
%%DATADIR%%/skycultures/polynesian/info.ini
%%DATADIR%%/skycultures/polynesian/star_names.fab
+%%DATADIR%%/skycultures/romanian/CapraCuTreiIezi.png
+%%DATADIR%%/skycultures/romanian/CarulMare.png
+%%DATADIR%%/skycultures/romanian/CiobanulCuOile.png
+%%DATADIR%%/skycultures/romanian/CloscaCuPui.png
+%%DATADIR%%/skycultures/romanian/Coasa.png
+%%DATADIR%%/skycultures/romanian/FataCuColibita.png
+%%DATADIR%%/skycultures/romanian/Hora.png
+%%DATADIR%%/skycultures/romanian/JgheabulSiPutul.png
+%%DATADIR%%/skycultures/romanian/Tronul.png
+%%DATADIR%%/skycultures/romanian/arcasul.png
+%%DATADIR%%/skycultures/romanian/balaurul.png
+%%DATADIR%%/skycultures/romanian/barda.png
+%%DATADIR%%/skycultures/romanian/berbecul.png
+%%DATADIR%%/skycultures/romanian/calul.png
+%%DATADIR%%/skycultures/romanian/cantarul.png
+%%DATADIR%%/skycultures/romanian/carul-mic.png
+%%DATADIR%%/skycultures/romanian/catelul.png
+%%DATADIR%%/skycultures/romanian/chitul.png
+%%DATADIR%%/skycultures/romanian/constellation_names.eng.fab
+%%DATADIR%%/skycultures/romanian/constellation_names.ro.fab
+%%DATADIR%%/skycultures/romanian/constellations_boundaries.dat
+%%DATADIR%%/skycultures/romanian/constellationsart.fab
+%%DATADIR%%/skycultures/romanian/constellationship.fab
+%%DATADIR%%/skycultures/romanian/corbul.png
+%%DATADIR%%/skycultures/romanian/crapii.png
+%%DATADIR%%/skycultures/romanian/crucea-mare.png
+%%DATADIR%%/skycultures/romanian/crucea-mica.png
+%%DATADIR%%/skycultures/romanian/description.en.utf8
+%%DATADIR%%/skycultures/romanian/description.pt_BR.utf8
+%%DATADIR%%/skycultures/romanian/description.ro.utf8
+%%DATADIR%%/skycultures/romanian/description.ru.utf8
+%%DATADIR%%/skycultures/romanian/dulaul.png
+%%DATADIR%%/skycultures/romanian/fecioara.png
+%%DATADIR%%/skycultures/romanian/gemenii.png
+%%DATADIR%%/skycultures/romanian/info.ini
+%%DATADIR%%/skycultures/romanian/omul.png
+%%DATADIR%%/skycultures/romanian/porumbita.png
+%%DATADIR%%/skycultures/romanian/racul.png
+%%DATADIR%%/skycultures/romanian/rarita.png
+%%DATADIR%%/skycultures/romanian/sagetatorul.png
+%%DATADIR%%/skycultures/romanian/sarpele.png
+%%DATADIR%%/skycultures/romanian/scorpia.png
+%%DATADIR%%/skycultures/romanian/secera.png
+%%DATADIR%%/skycultures/romanian/sfredelul.png
+%%DATADIR%%/skycultures/romanian/star_names.fab
+%%DATADIR%%/skycultures/romanian/tapul.png
+%%DATADIR%%/skycultures/romanian/taurul.png
+%%DATADIR%%/skycultures/romanian/trisfetitele.png
+%%DATADIR%%/skycultures/romanian/vacarul.png
+%%DATADIR%%/skycultures/romanian/varsatorul.png
+%%DATADIR%%/skycultures/romanian/vierii.png
%%DATADIR%%/skycultures/sami/constellation_names.eng.fab
%%DATADIR%%/skycultures/sami/constellations_boundaries.dat
%%DATADIR%%/skycultures/sami/constellationship.fab
@@ -627,6 +718,7 @@ man/man1/stellarium.1.gz
%%DATADIR%%/skycultures/tongan/constellationsart.fab
%%DATADIR%%/skycultures/tongan/constellationship.fab
%%DATADIR%%/skycultures/tongan/description.ar.utf8
+%%DATADIR%%/skycultures/tongan/description.be.utf8
%%DATADIR%%/skycultures/tongan/description.en.utf8
%%DATADIR%%/skycultures/tongan/description.fr.utf8
%%DATADIR%%/skycultures/tongan/description.pt_BR.utf8
@@ -752,21 +844,20 @@ man/man1/stellarium.1.gz
%%DATADIR%%/stars/default/defaultStarsConfig.json
%%DATADIR%%/stars/default/gcvs_hip_part.dat
%%DATADIR%%/stars/default/name.fab
-%%DATADIR%%/stars/default/stars_0_0v0_3.cat
-%%DATADIR%%/stars/default/stars_1_0v0_3.cat
-%%DATADIR%%/stars/default/stars_2_0v0_3.cat
-%%DATADIR%%/stars/default/stars_3_1v0_2.cat
-%%MORE_STARS%%%%DATADIR%%/stars/default/stars_4_1v0_0.cat
-%%MORE_STARS%%%%DATADIR%%/stars/default/stars_5_2v0_0.cat
-%%MORE_STARS%%%%DATADIR%%/stars/default/stars_6_2v0_0.cat
-%%MORE_STARS%%%%DATADIR%%/stars/default/stars_7_2v0_0.cat
-%%MORE_STARS%%%%DATADIR%%/stars/default/stars_8_2v0_0.cat
+%%DATADIR%%/stars/default/stars_0_0v0_5.cat
+%%DATADIR%%/stars/default/stars_1_0v0_5.cat
+%%DATADIR%%/stars/default/stars_2_0v0_5.cat
+%%DATADIR%%/stars/default/stars_3_1v0_3.cat
%%DATADIR%%/stars/default/stars_hip_cids_0v0_0.cat
%%DATADIR%%/stars/default/stars_hip_sp_0v0_0.cat
%%DATADIR%%/textures/amalthea.png
%%DATADIR%%/textures/ariel.png
+%%DATADIR%%/textures/bianca.png
%%DATADIR%%/textures/callisto.png
%%DATADIR%%/textures/charon.png
+%%DATADIR%%/textures/comet.png
+%%DATADIR%%/textures/cometComa.png
+%%DATADIR%%/textures/cometTail.png
%%DATADIR%%/textures/corona.png
%%DATADIR%%/textures/deimos.png
%%DATADIR%%/textures/dione.png
@@ -775,17 +866,21 @@ man/man1/stellarium.1.gz
%%DATADIR%%/textures/earth_cmap.png
%%DATADIR%%/textures/earthmap.png
%%DATADIR%%/textures/enceladus.png
+%%DATADIR%%/textures/epimetheus.png
+%%DATADIR%%/textures/eros.png
%%DATADIR%%/textures/europa.png
%%DATADIR%%/textures/fog.png
%%DATADIR%%/textures/fogridge.png
%%DATADIR%%/textures/ganymede.png
+%%DATADIR%%/textures/gaspra.png
%%DATADIR%%/textures/halo.png
%%DATADIR%%/textures/haloLune.png
%%DATADIR%%/textures/hyperion.png
%%DATADIR%%/textures/iapetus.png
+%%DATADIR%%/textures/ida.png
%%DATADIR%%/textures/io.png
+%%DATADIR%%/textures/janus.png
%%DATADIR%%/textures/jupiter.png
-%%DATADIR%%/textures/logo24bits.png
%%DATADIR%%/textures/lune.png
%%DATADIR%%/textures/mars.png
%%DATADIR%%/textures/mercury.png
@@ -793,6 +888,7 @@ man/man1/stellarium.1.gz
%%DATADIR%%/textures/mimas.png
%%DATADIR%%/textures/miranda.png
%%DATADIR%%/textures/moon.png
+%%DATADIR%%/textures/moon_normals.png
%%DATADIR%%/textures/neb.png
%%DATADIR%%/textures/neb_dif.png
%%DATADIR%%/textures/neb_gal.png
@@ -805,17 +901,20 @@ man/man1/stellarium.1.gz
%%DATADIR%%/textures/nomap.png
%%DATADIR%%/textures/oberon.png
%%DATADIR%%/textures/phobos.png
+%%DATADIR%%/textures/phoebe.png
%%DATADIR%%/textures/planet-indicator.png
%%DATADIR%%/textures/pluto.png
%%DATADIR%%/textures/pointeur2.png
%%DATADIR%%/textures/pointeur4.png
%%DATADIR%%/textures/pointeur5.png
+%%DATADIR%%/textures/prometheus.png
%%DATADIR%%/textures/proteus.png
%%DATADIR%%/textures/rhea.png
%%DATADIR%%/textures/saturn.png
%%DATADIR%%/textures/saturn_rings_radial.png
%%DATADIR%%/textures/star16x16.png
%%DATADIR%%/textures/sun.png
+%%DATADIR%%/textures/telescope.png
%%DATADIR%%/textures/tethys.png
%%DATADIR%%/textures/titan.png
%%DATADIR%%/textures/titania.png
@@ -824,6 +923,272 @@ man/man1/stellarium.1.gz
%%DATADIR%%/textures/uranus.png
%%DATADIR%%/textures/uranus_rings.png
%%DATADIR%%/textures/venus.png
+%%DATADIR%%/textures/vesta.png
+%%DATADIR%%/textures/zenith.png
+%%DATADIR%%/translations/stellarium-skycultures/aa.qm
+%%DATADIR%%/translations/stellarium-skycultures/ab.qm
+%%DATADIR%%/translations/stellarium-skycultures/ae.qm
+%%DATADIR%%/translations/stellarium-skycultures/af.qm
+%%DATADIR%%/translations/stellarium-skycultures/ak.qm
+%%DATADIR%%/translations/stellarium-skycultures/am.qm
+%%DATADIR%%/translations/stellarium-skycultures/an.qm
+%%DATADIR%%/translations/stellarium-skycultures/ar.qm
+%%DATADIR%%/translations/stellarium-skycultures/as.qm
+%%DATADIR%%/translations/stellarium-skycultures/ast.qm
+%%DATADIR%%/translations/stellarium-skycultures/av.qm
+%%DATADIR%%/translations/stellarium-skycultures/az.qm
+%%DATADIR%%/translations/stellarium-skycultures/ba.qm
+%%DATADIR%%/translations/stellarium-skycultures/be.qm
+%%DATADIR%%/translations/stellarium-skycultures/bg.qm
+%%DATADIR%%/translations/stellarium-skycultures/bh.qm
+%%DATADIR%%/translations/stellarium-skycultures/bi.qm
+%%DATADIR%%/translations/stellarium-skycultures/bn.qm
+%%DATADIR%%/translations/stellarium-skycultures/bo.qm
+%%DATADIR%%/translations/stellarium-skycultures/br.qm
+%%DATADIR%%/translations/stellarium-skycultures/bs.qm
+%%DATADIR%%/translations/stellarium-skycultures/ca.qm
+%%DATADIR%%/translations/stellarium-skycultures/ce.qm
+%%DATADIR%%/translations/stellarium-skycultures/ckb.qm
+%%DATADIR%%/translations/stellarium-skycultures/cs.qm
+%%DATADIR%%/translations/stellarium-skycultures/csb.qm
+%%DATADIR%%/translations/stellarium-skycultures/cv.qm
+%%DATADIR%%/translations/stellarium-skycultures/cy.qm
+%%DATADIR%%/translations/stellarium-skycultures/da.qm
+%%DATADIR%%/translations/stellarium-skycultures/de.qm
+%%DATADIR%%/translations/stellarium-skycultures/dv.qm
+%%DATADIR%%/translations/stellarium-skycultures/el.qm
+%%DATADIR%%/translations/stellarium-skycultures/en.qm
+%%DATADIR%%/translations/stellarium-skycultures/en_AU.qm
+%%DATADIR%%/translations/stellarium-skycultures/en_CA.qm
+%%DATADIR%%/translations/stellarium-skycultures/en_GB.qm
+%%DATADIR%%/translations/stellarium-skycultures/en_US.qm
+%%DATADIR%%/translations/stellarium-skycultures/eo.qm
+%%DATADIR%%/translations/stellarium-skycultures/es.qm
+%%DATADIR%%/translations/stellarium-skycultures/et.qm
+%%DATADIR%%/translations/stellarium-skycultures/eu.qm
+%%DATADIR%%/translations/stellarium-skycultures/fa.qm
+%%DATADIR%%/translations/stellarium-skycultures/fi.qm
+%%DATADIR%%/translations/stellarium-skycultures/fil.qm
+%%DATADIR%%/translations/stellarium-skycultures/fj.qm
+%%DATADIR%%/translations/stellarium-skycultures/fr.qm
+%%DATADIR%%/translations/stellarium-skycultures/fy.qm
+%%DATADIR%%/translations/stellarium-skycultures/ga.qm
+%%DATADIR%%/translations/stellarium-skycultures/gd.qm
+%%DATADIR%%/translations/stellarium-skycultures/gl.qm
+%%DATADIR%%/translations/stellarium-skycultures/gn.qm
+%%DATADIR%%/translations/stellarium-skycultures/gu.qm
+%%DATADIR%%/translations/stellarium-skycultures/haw.qm
+%%DATADIR%%/translations/stellarium-skycultures/he.qm
+%%DATADIR%%/translations/stellarium-skycultures/hi.qm
+%%DATADIR%%/translations/stellarium-skycultures/hne.qm
+%%DATADIR%%/translations/stellarium-skycultures/hr.qm
+%%DATADIR%%/translations/stellarium-skycultures/hrx.qm
+%%DATADIR%%/translations/stellarium-skycultures/ht.qm
+%%DATADIR%%/translations/stellarium-skycultures/hu.qm
+%%DATADIR%%/translations/stellarium-skycultures/hy.qm
+%%DATADIR%%/translations/stellarium-skycultures/ia.qm
+%%DATADIR%%/translations/stellarium-skycultures/id.qm
+%%DATADIR%%/translations/stellarium-skycultures/is.qm
+%%DATADIR%%/translations/stellarium-skycultures/it.qm
+%%DATADIR%%/translations/stellarium-skycultures/ja.qm
+%%DATADIR%%/translations/stellarium-skycultures/ka.qm
+%%DATADIR%%/translations/stellarium-skycultures/kg.qm
+%%DATADIR%%/translations/stellarium-skycultures/kk.qm
+%%DATADIR%%/translations/stellarium-skycultures/km.qm
+%%DATADIR%%/translations/stellarium-skycultures/kn.qm
+%%DATADIR%%/translations/stellarium-skycultures/ko.qm
+%%DATADIR%%/translations/stellarium-skycultures/ky.qm
+%%DATADIR%%/translations/stellarium-skycultures/la.qm
+%%DATADIR%%/translations/stellarium-skycultures/lb.qm
+%%DATADIR%%/translations/stellarium-skycultures/lo.qm
+%%DATADIR%%/translations/stellarium-skycultures/lt.qm
+%%DATADIR%%/translations/stellarium-skycultures/lv.qm
+%%DATADIR%%/translations/stellarium-skycultures/mai.qm
+%%DATADIR%%/translations/stellarium-skycultures/mi.qm
+%%DATADIR%%/translations/stellarium-skycultures/mk.qm
+%%DATADIR%%/translations/stellarium-skycultures/ml.qm
+%%DATADIR%%/translations/stellarium-skycultures/mn.qm
+%%DATADIR%%/translations/stellarium-skycultures/mo.qm
+%%DATADIR%%/translations/stellarium-skycultures/mr.qm
+%%DATADIR%%/translations/stellarium-skycultures/ms.qm
+%%DATADIR%%/translations/stellarium-skycultures/mt.qm
+%%DATADIR%%/translations/stellarium-skycultures/nan.qm
+%%DATADIR%%/translations/stellarium-skycultures/nb.qm
+%%DATADIR%%/translations/stellarium-skycultures/nds.qm
+%%DATADIR%%/translations/stellarium-skycultures/ne.qm
+%%DATADIR%%/translations/stellarium-skycultures/nl.qm
+%%DATADIR%%/translations/stellarium-skycultures/nn.qm
+%%DATADIR%%/translations/stellarium-skycultures/oc.qm
+%%DATADIR%%/translations/stellarium-skycultures/os.qm
+%%DATADIR%%/translations/stellarium-skycultures/pa.qm
+%%DATADIR%%/translations/stellarium-skycultures/pl.qm
+%%DATADIR%%/translations/stellarium-skycultures/pt.qm
+%%DATADIR%%/translations/stellarium-skycultures/pt_BR.qm
+%%DATADIR%%/translations/stellarium-skycultures/ro.qm
+%%DATADIR%%/translations/stellarium-skycultures/ru.qm
+%%DATADIR%%/translations/stellarium-skycultures/sah.qm
+%%DATADIR%%/translations/stellarium-skycultures/sco.qm
+%%DATADIR%%/translations/stellarium-skycultures/se.qm
+%%DATADIR%%/translations/stellarium-skycultures/si.qm
+%%DATADIR%%/translations/stellarium-skycultures/sk.qm
+%%DATADIR%%/translations/stellarium-skycultures/sl.qm
+%%DATADIR%%/translations/stellarium-skycultures/sm.qm
+%%DATADIR%%/translations/stellarium-skycultures/sq.qm
+%%DATADIR%%/translations/stellarium-skycultures/sr.qm
+%%DATADIR%%/translations/stellarium-skycultures/su.qm
+%%DATADIR%%/translations/stellarium-skycultures/sv.qm
+%%DATADIR%%/translations/stellarium-skycultures/sw.qm
+%%DATADIR%%/translations/stellarium-skycultures/ta.qm
+%%DATADIR%%/translations/stellarium-skycultures/te.qm
+%%DATADIR%%/translations/stellarium-skycultures/tg.qm
+%%DATADIR%%/translations/stellarium-skycultures/th.qm
+%%DATADIR%%/translations/stellarium-skycultures/tl.qm
+%%DATADIR%%/translations/stellarium-skycultures/tr.qm
+%%DATADIR%%/translations/stellarium-skycultures/tt.qm
+%%DATADIR%%/translations/stellarium-skycultures/ug.qm
+%%DATADIR%%/translations/stellarium-skycultures/uk.qm
+%%DATADIR%%/translations/stellarium-skycultures/uz.qm
+%%DATADIR%%/translations/stellarium-skycultures/vi.qm
+%%DATADIR%%/translations/stellarium-skycultures/wa.qm
+%%DATADIR%%/translations/stellarium-skycultures/xh.qm
+%%DATADIR%%/translations/stellarium-skycultures/zh_CN.qm
+%%DATADIR%%/translations/stellarium-skycultures/zh_HK.qm
+%%DATADIR%%/translations/stellarium-skycultures/zh_TW.qm
+%%DATADIR%%/translations/stellarium-skycultures/zu.qm
+%%DATADIR%%/translations/stellarium/aa.qm
+%%DATADIR%%/translations/stellarium/ab.qm
+%%DATADIR%%/translations/stellarium/ae.qm
+%%DATADIR%%/translations/stellarium/af.qm
+%%DATADIR%%/translations/stellarium/ak.qm
+%%DATADIR%%/translations/stellarium/am.qm
+%%DATADIR%%/translations/stellarium/an.qm
+%%DATADIR%%/translations/stellarium/ar.qm
+%%DATADIR%%/translations/stellarium/as.qm
+%%DATADIR%%/translations/stellarium/ast.qm
+%%DATADIR%%/translations/stellarium/av.qm
+%%DATADIR%%/translations/stellarium/az.qm
+%%DATADIR%%/translations/stellarium/ba.qm
+%%DATADIR%%/translations/stellarium/be.qm
+%%DATADIR%%/translations/stellarium/bg.qm
+%%DATADIR%%/translations/stellarium/bh.qm
+%%DATADIR%%/translations/stellarium/bi.qm
+%%DATADIR%%/translations/stellarium/bn.qm
+%%DATADIR%%/translations/stellarium/bo.qm
+%%DATADIR%%/translations/stellarium/br.qm
+%%DATADIR%%/translations/stellarium/bs.qm
+%%DATADIR%%/translations/stellarium/ca.qm
+%%DATADIR%%/translations/stellarium/ce.qm
+%%DATADIR%%/translations/stellarium/ckb.qm
+%%DATADIR%%/translations/stellarium/cs.qm
+%%DATADIR%%/translations/stellarium/csb.qm
+%%DATADIR%%/translations/stellarium/cv.qm
+%%DATADIR%%/translations/stellarium/cy.qm
+%%DATADIR%%/translations/stellarium/da.qm
+%%DATADIR%%/translations/stellarium/de.qm
+%%DATADIR%%/translations/stellarium/dv.qm
+%%DATADIR%%/translations/stellarium/el.qm
+%%DATADIR%%/translations/stellarium/en.qm
+%%DATADIR%%/translations/stellarium/en_AU.qm
+%%DATADIR%%/translations/stellarium/en_CA.qm
+%%DATADIR%%/translations/stellarium/en_GB.qm
+%%DATADIR%%/translations/stellarium/en_US.qm
+%%DATADIR%%/translations/stellarium/eo.qm
+%%DATADIR%%/translations/stellarium/es.qm
+%%DATADIR%%/translations/stellarium/et.qm
+%%DATADIR%%/translations/stellarium/eu.qm
+%%DATADIR%%/translations/stellarium/fa.qm
+%%DATADIR%%/translations/stellarium/fi.qm
+%%DATADIR%%/translations/stellarium/fil.qm
+%%DATADIR%%/translations/stellarium/fj.qm
+%%DATADIR%%/translations/stellarium/fr.qm
+%%DATADIR%%/translations/stellarium/fy.qm
+%%DATADIR%%/translations/stellarium/ga.qm
+%%DATADIR%%/translations/stellarium/gd.qm
+%%DATADIR%%/translations/stellarium/gl.qm
+%%DATADIR%%/translations/stellarium/gn.qm
+%%DATADIR%%/translations/stellarium/gu.qm
+%%DATADIR%%/translations/stellarium/gv.qm
+%%DATADIR%%/translations/stellarium/haw.qm
+%%DATADIR%%/translations/stellarium/he.qm
+%%DATADIR%%/translations/stellarium/hi.qm
+%%DATADIR%%/translations/stellarium/hne.qm
+%%DATADIR%%/translations/stellarium/hr.qm
+%%DATADIR%%/translations/stellarium/hrx.qm
+%%DATADIR%%/translations/stellarium/ht.qm
+%%DATADIR%%/translations/stellarium/hu.qm
+%%DATADIR%%/translations/stellarium/hy.qm
+%%DATADIR%%/translations/stellarium/ia.qm
+%%DATADIR%%/translations/stellarium/id.qm
+%%DATADIR%%/translations/stellarium/is.qm
+%%DATADIR%%/translations/stellarium/it.qm
+%%DATADIR%%/translations/stellarium/ja.qm
+%%DATADIR%%/translations/stellarium/ka.qm
+%%DATADIR%%/translations/stellarium/kg.qm
+%%DATADIR%%/translations/stellarium/kk.qm
+%%DATADIR%%/translations/stellarium/km.qm
+%%DATADIR%%/translations/stellarium/kn.qm
+%%DATADIR%%/translations/stellarium/ko.qm
+%%DATADIR%%/translations/stellarium/ky.qm
+%%DATADIR%%/translations/stellarium/la.qm
+%%DATADIR%%/translations/stellarium/lb.qm
+%%DATADIR%%/translations/stellarium/lo.qm
+%%DATADIR%%/translations/stellarium/lt.qm
+%%DATADIR%%/translations/stellarium/lv.qm
+%%DATADIR%%/translations/stellarium/mai.qm
+%%DATADIR%%/translations/stellarium/mi.qm
+%%DATADIR%%/translations/stellarium/mk.qm
+%%DATADIR%%/translations/stellarium/ml.qm
+%%DATADIR%%/translations/stellarium/mn.qm
+%%DATADIR%%/translations/stellarium/mo.qm
+%%DATADIR%%/translations/stellarium/mr.qm
+%%DATADIR%%/translations/stellarium/ms.qm
+%%DATADIR%%/translations/stellarium/mt.qm
+%%DATADIR%%/translations/stellarium/nan.qm
+%%DATADIR%%/translations/stellarium/nb.qm
+%%DATADIR%%/translations/stellarium/nds.qm
+%%DATADIR%%/translations/stellarium/ne.qm
+%%DATADIR%%/translations/stellarium/nl.qm
+%%DATADIR%%/translations/stellarium/nn.qm
+%%DATADIR%%/translations/stellarium/oc.qm
+%%DATADIR%%/translations/stellarium/os.qm
+%%DATADIR%%/translations/stellarium/pa.qm
+%%DATADIR%%/translations/stellarium/pl.qm
+%%DATADIR%%/translations/stellarium/pt.qm
+%%DATADIR%%/translations/stellarium/pt_BR.qm
+%%DATADIR%%/translations/stellarium/ro.qm
+%%DATADIR%%/translations/stellarium/ru.qm
+%%DATADIR%%/translations/stellarium/sah.qm
+%%DATADIR%%/translations/stellarium/sco.qm
+%%DATADIR%%/translations/stellarium/se.qm
+%%DATADIR%%/translations/stellarium/si.qm
+%%DATADIR%%/translations/stellarium/sk.qm
+%%DATADIR%%/translations/stellarium/sl.qm
+%%DATADIR%%/translations/stellarium/sm.qm
+%%DATADIR%%/translations/stellarium/sq.qm
+%%DATADIR%%/translations/stellarium/sr.qm
+%%DATADIR%%/translations/stellarium/su.qm
+%%DATADIR%%/translations/stellarium/sv.qm
+%%DATADIR%%/translations/stellarium/sw.qm
+%%DATADIR%%/translations/stellarium/ta.qm
+%%DATADIR%%/translations/stellarium/te.qm
+%%DATADIR%%/translations/stellarium/tg.qm
+%%DATADIR%%/translations/stellarium/th.qm
+%%DATADIR%%/translations/stellarium/tl.qm
+%%DATADIR%%/translations/stellarium/tr.qm
+%%DATADIR%%/translations/stellarium/tt.qm
+%%DATADIR%%/translations/stellarium/ug.qm
+%%DATADIR%%/translations/stellarium/uk.qm
+%%DATADIR%%/translations/stellarium/uz.qm
+%%DATADIR%%/translations/stellarium/vi.qm
+%%DATADIR%%/translations/stellarium/wa.qm
+%%DATADIR%%/translations/stellarium/xh.qm
+%%DATADIR%%/translations/stellarium/zh_CN.qm
+%%DATADIR%%/translations/stellarium/zh_HK.qm
+%%DATADIR%%/translations/stellarium/zh_TW.qm
+%%DATADIR%%/translations/stellarium/zu.qm
+@dirrm %%DATADIR%%/translations/stellarium
+@dirrm %%DATADIR%%/translations/stellarium-skycultures
+@dirrm %%DATADIR%%/translations
@dirrm %%DATADIR%%/textures
@dirrm %%DATADIR%%/stars/default
@dirrm %%DATADIR%%/stars
@@ -831,6 +1196,7 @@ man/man1/stellarium.1.gz
@dirrm %%DATADIR%%/skycultures/tupi
@dirrm %%DATADIR%%/skycultures/tongan
@dirrm %%DATADIR%%/skycultures/sami
+@dirrm %%DATADIR%%/skycultures/romanian
@dirrm %%DATADIR%%/skycultures/polynesian
@dirrm %%DATADIR%%/skycultures/norse
@dirrm %%DATADIR%%/skycultures/navajo
@@ -857,353 +1223,12 @@ man/man1/stellarium.1.gz
@dirrm %%DATADIR%%/landscapes/jupiter
@dirrm %%DATADIR%%/landscapes/hurricane
@dirrm %%DATADIR%%/landscapes/guereins
+@dirrm %%DATADIR%%/landscapes/grossmugl
+@dirrm %%DATADIR%%/landscapes/geneva
@dirrm %%DATADIR%%/landscapes/garching
@dirrm %%DATADIR%%/landscapes
@dirrm %%DATADIR%%/data
@dirrm %%DATADIR%%
-share/applications/stellarium.desktop
-share/icons/hicolor/16x16/apps/stellarium.png
-share/icons/hicolor/32x32/apps/stellarium.png
-share/icons/hicolor/48x48/apps/stellarium.png
-share/icons/hicolor/64x64/apps/stellarium.png
-share/icons/hicolor/128x128/apps/stellarium.png
-share/icons/hicolor/256x256/apps/stellarium.png
-share/icons/hicolor/512x512/apps/stellarium.png
-share/locale/aa/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/aa/LC_MESSAGES/stellarium.mo
-share/locale/ab/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/ab/LC_MESSAGES/stellarium.mo
-share/locale/ae/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/ae/LC_MESSAGES/stellarium.mo
-share/locale/af/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/af/LC_MESSAGES/stellarium.mo
-share/locale/ak/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/ak/LC_MESSAGES/stellarium.mo
-share/locale/am/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/am/LC_MESSAGES/stellarium.mo
-share/locale/an/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/an/LC_MESSAGES/stellarium.mo
-share/locale/ar/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/ar/LC_MESSAGES/stellarium.mo
-share/locale/as/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/as/LC_MESSAGES/stellarium.mo
-share/locale/ast/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/ast/LC_MESSAGES/stellarium.mo
-share/locale/av/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/av/LC_MESSAGES/stellarium.mo
-share/locale/az/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/az/LC_MESSAGES/stellarium.mo
-share/locale/ba/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/ba/LC_MESSAGES/stellarium.mo
-share/locale/be/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/be/LC_MESSAGES/stellarium.mo
-share/locale/bg/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/bg/LC_MESSAGES/stellarium.mo
-share/locale/bh/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/bh/LC_MESSAGES/stellarium.mo
-share/locale/bi/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/bi/LC_MESSAGES/stellarium.mo
-share/locale/bn/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/bn/LC_MESSAGES/stellarium.mo
-share/locale/bo/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/bo/LC_MESSAGES/stellarium.mo
-share/locale/br/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/br/LC_MESSAGES/stellarium.mo
-share/locale/bs/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/bs/LC_MESSAGES/stellarium.mo
-share/locale/ca/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/ca/LC_MESSAGES/stellarium.mo
-share/locale/ce/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/ce/LC_MESSAGES/stellarium.mo
-share/locale/ckb/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/ckb/LC_MESSAGES/stellarium.mo
-share/locale/cs/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/cs/LC_MESSAGES/stellarium.mo
-share/locale/cv/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/cv/LC_MESSAGES/stellarium.mo
-share/locale/cy/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/cy/LC_MESSAGES/stellarium.mo
-share/locale/da/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/da/LC_MESSAGES/stellarium.mo
-share/locale/de/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/de/LC_MESSAGES/stellarium.mo
-share/locale/dv/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/dv/LC_MESSAGES/stellarium.mo
-share/locale/el/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/el/LC_MESSAGES/stellarium.mo
-share/locale/en/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/en/LC_MESSAGES/stellarium.mo
-share/locale/en_AU/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/en_AU/LC_MESSAGES/stellarium.mo
-share/locale/en_CA/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/en_CA/LC_MESSAGES/stellarium.mo
-share/locale/en_GB/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/en_GB/LC_MESSAGES/stellarium.mo
-share/locale/en_US/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/en_US/LC_MESSAGES/stellarium.mo
-share/locale/eo/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/eo/LC_MESSAGES/stellarium.mo
-share/locale/es/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/es/LC_MESSAGES/stellarium.mo
-share/locale/et/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/et/LC_MESSAGES/stellarium.mo
-share/locale/eu/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/eu/LC_MESSAGES/stellarium.mo
-share/locale/fa/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/fa/LC_MESSAGES/stellarium.mo
-share/locale/fi/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/fi/LC_MESSAGES/stellarium.mo
-share/locale/fil/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/fil/LC_MESSAGES/stellarium.mo
-share/locale/fj/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/fj/LC_MESSAGES/stellarium.mo
-share/locale/fr/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/fr/LC_MESSAGES/stellarium.mo
-share/locale/fy/LC_MESSAGES/stellarium.mo
-share/locale/ga/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/ga/LC_MESSAGES/stellarium.mo
-share/locale/gd/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/gd/LC_MESSAGES/stellarium.mo
-share/locale/gl/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/gl/LC_MESSAGES/stellarium.mo
-share/locale/gn/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/gn/LC_MESSAGES/stellarium.mo
-share/locale/gu/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/gu/LC_MESSAGES/stellarium.mo
-share/locale/gv/LC_MESSAGES/stellarium.mo
-share/locale/haw/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/haw/LC_MESSAGES/stellarium.mo
-share/locale/he/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/he/LC_MESSAGES/stellarium.mo
-share/locale/hi/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/hi/LC_MESSAGES/stellarium.mo
-share/locale/hr/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/hr/LC_MESSAGES/stellarium.mo
-share/locale/hrx/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/hrx/LC_MESSAGES/stellarium.mo
-share/locale/ht/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/ht/LC_MESSAGES/stellarium.mo
-share/locale/hu/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/hu/LC_MESSAGES/stellarium.mo
-share/locale/hy/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/hy/LC_MESSAGES/stellarium.mo
-share/locale/ia/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/ia/LC_MESSAGES/stellarium.mo
-share/locale/id/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/id/LC_MESSAGES/stellarium.mo
-share/locale/is/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/is/LC_MESSAGES/stellarium.mo
-share/locale/it/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/it/LC_MESSAGES/stellarium.mo
-share/locale/ja/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/ja/LC_MESSAGES/stellarium.mo
-share/locale/ka/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/ka/LC_MESSAGES/stellarium.mo
-share/locale/kg/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/kg/LC_MESSAGES/stellarium.mo
-share/locale/kk/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/kk/LC_MESSAGES/stellarium.mo
-share/locale/kn/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/kn/LC_MESSAGES/stellarium.mo
-share/locale/ko/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/ko/LC_MESSAGES/stellarium.mo
-share/locale/ky/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/ky/LC_MESSAGES/stellarium.mo
-share/locale/la/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/la/LC_MESSAGES/stellarium.mo
-share/locale/lb/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/lb/LC_MESSAGES/stellarium.mo
-share/locale/lo/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/lo/LC_MESSAGES/stellarium.mo
-share/locale/lt/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/lt/LC_MESSAGES/stellarium.mo
-share/locale/lv/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/lv/LC_MESSAGES/stellarium.mo
-share/locale/mi/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/mi/LC_MESSAGES/stellarium.mo
-share/locale/mk/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/mk/LC_MESSAGES/stellarium.mo
-share/locale/ml/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/ml/LC_MESSAGES/stellarium.mo
-share/locale/mn/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/mn/LC_MESSAGES/stellarium.mo
-share/locale/mo/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/mo/LC_MESSAGES/stellarium.mo
-share/locale/mr/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/mr/LC_MESSAGES/stellarium.mo
-share/locale/ms/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/ms/LC_MESSAGES/stellarium.mo
-share/locale/mt/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/mt/LC_MESSAGES/stellarium.mo
-share/locale/nan/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/nan/LC_MESSAGES/stellarium.mo
-share/locale/nb/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/nb/LC_MESSAGES/stellarium.mo
-share/locale/nl/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/nl/LC_MESSAGES/stellarium.mo
-share/locale/nn/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/nn/LC_MESSAGES/stellarium.mo
-share/locale/oc/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/oc/LC_MESSAGES/stellarium.mo
-share/locale/os/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/os/LC_MESSAGES/stellarium.mo
-share/locale/pa/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/pa/LC_MESSAGES/stellarium.mo
-share/locale/pl/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/pl/LC_MESSAGES/stellarium.mo
-share/locale/pt/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/pt/LC_MESSAGES/stellarium.mo
-share/locale/pt_BR/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/pt_BR/LC_MESSAGES/stellarium.mo
-share/locale/ro/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/ro/LC_MESSAGES/stellarium.mo
-share/locale/ru/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/ru/LC_MESSAGES/stellarium.mo
-share/locale/sah/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/sah/LC_MESSAGES/stellarium.mo
-share/locale/sco/LC_MESSAGES/stellarium.mo
-share/locale/se/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/se/LC_MESSAGES/stellarium.mo
-share/locale/si/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/si/LC_MESSAGES/stellarium.mo
-share/locale/sk/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/sk/LC_MESSAGES/stellarium.mo
-share/locale/sl/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/sl/LC_MESSAGES/stellarium.mo
-share/locale/sm/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/sm/LC_MESSAGES/stellarium.mo
-share/locale/sq/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/sq/LC_MESSAGES/stellarium.mo
-share/locale/sr/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/sr/LC_MESSAGES/stellarium.mo
-share/locale/su/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/su/LC_MESSAGES/stellarium.mo
-share/locale/sv/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/sv/LC_MESSAGES/stellarium.mo
-share/locale/sw/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/sw/LC_MESSAGES/stellarium.mo
-share/locale/ta/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/ta/LC_MESSAGES/stellarium.mo
-share/locale/te/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/te/LC_MESSAGES/stellarium.mo
-share/locale/tg/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/tg/LC_MESSAGES/stellarium.mo
-share/locale/th/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/th/LC_MESSAGES/stellarium.mo
-share/locale/tl/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/tl/LC_MESSAGES/stellarium.mo
-share/locale/tr/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/tr/LC_MESSAGES/stellarium.mo
-share/locale/tt/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/tt/LC_MESSAGES/stellarium.mo
-share/locale/uk/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/uk/LC_MESSAGES/stellarium.mo
-share/locale/uz/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/uz/LC_MESSAGES/stellarium.mo
-share/locale/vi/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/vi/LC_MESSAGES/stellarium.mo
-share/locale/zh_CN/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/zh_CN/LC_MESSAGES/stellarium.mo
-share/locale/zh_HK/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/zh_HK/LC_MESSAGES/stellarium.mo
-share/locale/zh_TW/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/zh_TW/LC_MESSAGES/stellarium.mo
-share/locale/zu/LC_MESSAGES/stellarium-skycultures.mo
-share/locale/zu/LC_MESSAGES/stellarium.mo
-share/pixmaps/stellarium.xpm
-@dirrmtry share/locale/zu/LC_MESSAGES
-@dirrmtry share/locale/zu
-@dirrmtry share/locale/zh_HK/LC_MESSAGES
-@dirrmtry share/locale/zh_HK
-@dirrmtry share/locale/tl/LC_MESSAGES
-@dirrmtry share/locale/tl
-@dirrmtry share/locale/te/LC_MESSAGES
-@dirrmtry share/locale/te
-@dirrmtry share/locale/sw/LC_MESSAGES
-@dirrmtry share/locale/sw
-@dirrmtry share/locale/su/LC_MESSAGES
-@dirrmtry share/locale/su
-@dirrmtry share/locale/sm/LC_MESSAGES
-@dirrmtry share/locale/sm
-@dirrmtry share/locale/si/LC_MESSAGES
-@dirrmtry share/locale/si
-@dirrmtry share/locale/se/LC_MESSAGES
-@dirrmtry share/locale/se
-@dirrmtry share/locale/sco/LC_MESSAGES
-@dirrmtry share/locale/sco
-@dirrmtry share/locale/sah/LC_MESSAGES
-@dirrmtry share/locale/sah
-@dirrmtry share/locale/os/LC_MESSAGES
-@dirrmtry share/locale/os
-@dirrmtry share/locale/nan/LC_MESSAGES
-@dirrmtry share/locale/nan
-@dirrmtry share/locale/mr/LC_MESSAGES
-@dirrmtry share/locale/mr
-@dirrmtry share/locale/mo/LC_MESSAGES
-@dirrmtry share/locale/mo
-@dirrmtry share/locale/mi/LC_MESSAGES
-@dirrmtry share/locale/mi
-@dirrmtry share/locale/lo/LC_MESSAGES
-@dirrmtry share/locale/lo
-@dirrmtry share/locale/lb/LC_MESSAGES
-@dirrmtry share/locale/lb
-@dirrmtry share/locale/la/LC_MESSAGES
-@dirrmtry share/locale/la
-@dirrmtry share/locale/ky/LC_MESSAGES
-@dirrmtry share/locale/ky
-@dirrmtry share/locale/kg/LC_MESSAGES
-@dirrmtry share/locale/kg
-@dirrmtry share/locale/ia/LC_MESSAGES
-@dirrmtry share/locale/ia
-@dirrmtry share/locale/hy/LC_MESSAGES
-@dirrmtry share/locale/hy
-@dirrmtry share/locale/ht/LC_MESSAGES
-@dirrmtry share/locale/ht
-@dirrmtry share/locale/hrx/LC_MESSAGES
-@dirrmtry share/locale/hrx
-@dirrmtry share/locale/haw/LC_MESSAGES
-@dirrmtry share/locale/haw
-@dirrmtry share/locale/gv/LC_MESSAGES
-@dirrmtry share/locale/gv
-@dirrmtry share/locale/gn/LC_MESSAGES
-@dirrmtry share/locale/gn
-@dirrmtry share/locale/gd/LC_MESSAGES
-@dirrmtry share/locale/gd
-@dirrmtry share/locale/fy/LC_MESSAGES
-@dirrmtry share/locale/fy
-@dirrmtry share/locale/fj/LC_MESSAGES
-@dirrmtry share/locale/fj
-@dirrmtry share/locale/fil/LC_MESSAGES
-@dirrmtry share/locale/fil
-@dirrmtry share/locale/en_US/LC_MESSAGES
-@dirrmtry share/locale/en_US
-@dirrmtry share/locale/dv/LC_MESSAGES
-@dirrmtry share/locale/dv
-@dirrmtry share/locale/cv/LC_MESSAGES
-@dirrmtry share/locale/cv
-@dirrmtry share/locale/ckb/LC_MESSAGES
-@dirrmtry share/locale/ckb
-@dirrmtry share/locale/ce/LC_MESSAGES
-@dirrmtry share/locale/ce
-@dirrmtry share/locale/bo/LC_MESSAGES
-@dirrmtry share/locale/bo
-@dirrmtry share/locale/bi/LC_MESSAGES
-@dirrmtry share/locale/bi
-@dirrmtry share/locale/bh/LC_MESSAGES
-@dirrmtry share/locale/bh
-@dirrmtry share/locale/ba/LC_MESSAGES
-@dirrmtry share/locale/ba
-@dirrmtry share/locale/av/LC_MESSAGES
-@dirrmtry share/locale/av
-@dirrmtry share/locale/an/LC_MESSAGES
-@dirrmtry share/locale/an
-@dirrmtry share/locale/ak/LC_MESSAGES
-@dirrmtry share/locale/ak
-@dirrmtry share/locale/ae/LC_MESSAGES
-@dirrmtry share/locale/ae
-@dirrmtry share/locale/ab/LC_MESSAGES
-@dirrmtry share/locale/ab
-@dirrmtry share/locale/aa/LC_MESSAGES
-@dirrmtry share/locale/aa
@dirrmtry share/icons/hicolor/512x512/apps
@dirrmtry share/icons/hicolor/512x512
+@dirrmtry share/appdata