ports/77573: Update port: astro/celestia to 1.3.2
Jean-Yves Lefort
jylefort at brutele.be
Tue Feb 15 21:10:08 UTC 2005
>Number: 77573
>Category: ports
>Synopsis: Update port: astro/celestia to 1.3.2
>Confidential: no
>Severity: non-critical
>Priority: medium
>Responsible: freebsd-ports-bugs
>State: open
>Quarter:
>Keywords:
>Date-Required:
>Class: update
>Submitter-Id: current-users
>Arrival-Date: Tue Feb 15 21:10:06 GMT 2005
>Closed-Date:
>Last-Modified:
>Originator: Jean-Yves Lefort
>Release: FreeBSD 5.3-RELEASE-p5 i386
>Organization:
>Environment:
System: FreeBSD jsite.lefort.net 5.3-RELEASE-p5 FreeBSD 5.3-RELEASE-p5 #0: Mon Feb 14 18:06:40 CET 2005 jylefort at jsite.lefort.net:/usr/obj/usr/src/sys/JSITE i386
>Description:
* Fix build
* Update to 1.3.2
* Add GLUT, GTK and GNOME options
* Fix options testing (must be done after including bsd.port.pre.mk)
* Remove useless bash dependency
* Only pull in libglut when required
* Install interesting documentation
* Cleanups
>How-To-Repeat:
>Fix:
diff -ruN /usr/ports/astro/celestia/Makefile celestia/Makefile
--- /usr/ports/astro/celestia/Makefile Thu Dec 30 04:10:41 2004
+++ celestia/Makefile Tue Feb 15 21:42:02 2005
@@ -6,123 +6,112 @@
#
PORTNAME= celestia
-PORTVERSION= 1.3.1
+PORTVERSION= 1.3.2
CATEGORIES= astro
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= celestia
-MAINTAINER= trevor at FreeBSD.org
-COMMENT= Scriptable space flight simulator for X
+MAINTAINER= trevor at FreeBSD.org
+COMMENT= Scriptable space flight simulator for X
-BUILD_DEPENDS= bash:${PORTSDIR}/shells/bash2
-LIB_DEPENDS= jpeg.9:${PORTSDIR}/graphics/jpeg \
- png.5:${PORTSDIR}/graphics/png \
- glut.3:${PORTSDIR}/graphics/libglut
-
-GNU_CONFIGURE= yes
-CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
-OPTIONS= KDE "KDE support" off
-OPTIONS+= LUA "Lua support" off
-PLIST= ${WRKDIR}/pkg-plist
-USE_REINPLACE= yes
-USE_GMAKE= yes
-USE_GL= yes
-USE_X_PREFIX= yes
+LIB_DEPENDS= jpeg.9:${PORTSDIR}/graphics/jpeg \
+ png.5:${PORTSDIR}/graphics/png
-# GTK+ support is deprecated and broken
-CONFIGURE_ARGS= --without-gtk
+GNU_CONFIGURE= yes
+USE_REINPLACE= yes
+USE_GMAKE= yes
+USE_GL= yes
+USE_X_PREFIX= yes
+USE_GNOME=
+CONFIGURE_ARGS= --program-prefix=""
CONFIGURE_ENV= \
LDFLAGS="-L${X11BASE}/lib -L${LOCALBASE}/lib -lm ${PTHREAD_LIBS}" \
CPPFLAGS="-I${X11BASE}/include -I${LOCALBASE}/include ${PTHREAD_CFLAGS}"
-.if defined(WITH_KDE)
-USE_KDELIBS_VER= 3
-CONFIGURE_ARGS+= --with-kde
-.else
-CONFIGURE_ARGS+= --without-kde
-.endif
+OPTIONS= LUA "Lua support" off \
+ GLUT "Glut user interface" off \
+ GTK "GTK+ user interface" off \
+ GNOME "GNOME user interface" off \
+ KDE "KDE user interface" off
+
+.include <bsd.port.pre.mk>
.if defined(WITH_LUA)
LIB_DEPENDS+= lua.5:${PORTSDIR}/lang/lua
CONFIGURE_ARGS+= --with-lua
+.endif
+
+.if defined(WITH_GNOME)
+WITH_GTK= yes # GNOME requires GTK+
+USE_GNOME+= libgnomeui
+CONFIGURE_ARGS+= --with-gnome
+GCONF_SCHEMAS= celestia.schemas
+.endif
+
+.if defined(WITH_GTK)
+USE_GNOME+= gnomehack gnomeprefix gtk20
+LIB_DEPENDS+= gtkglext-x11-1.0:${PORTSDIR}/x11-toolkits/gtkglext
+CONFIGURE_ARGS+= --with-gtk
+PLIST_SUB+= GTK="" DATADIR="share/gnome/celestia"
.else
-CONFIGURE_ARGS+= --without-lua
+PLIST_SUB+= GTK="@comment " DATADIR="share/celestia"
.endif
-.include <bsd.port.pre.mk>
+.if defined(WITH_KDE)
+USE_KDELIBS_VER= 3
+CONFIGURE_ARGS+= --with-kde
+# KDE_LIBS_VER is defined after including bsd.port.pre.mk, so we need
+# to include bsd.kde.mk manually.
+.include "${PORTSDIR}/Mk/bsd.kde.mk"
+.endif
+
+.if !defined(WITH_KDE) && !defined(WITH_GTK) && !defined(WITH_GNOME)
+WITH_GLUT= yes # an UI is required, fallback to Glut
+.endif
-.if ${OSVERSION} >= 502126
-BROKEN= "Does not compile on FreeBSD >= 5.x"
+.if defined(WITH_GLUT)
+CONFIGURE_ARGS+= --with-glut
.endif
-.if ${ARCH} != "i386" && ${ARCH} != "amd64"
-BROKEN= "Does not compile on !i386 and !amd64"
+.if defined(WITH_GTK) || defined(WITH_GLUT)
+# libglut is only required for Glut and GTK+ interfaces
+LIB_DEPENDS+= glut:${PORTSDIR}/graphics/libglut
.endif
pre-patch:
@${REINPLACE_CMD} -e \
-'s:-O2::g; s:-Wall::g; s:-ffast-math::g; s:-fexpensive-optimizations::g; s:! /bin/sh:! ${LOCALBASE}/bin/bash:g' \
- ${WRKSRC}/configure
+ 's|-O2||g; \
+ s|-Wall||g; \
+ s|-ffast-math||g; \
+ s|-fexpensive-optimizations||g; \
+ s|"x" = "y"|"x" = "x"|' \
+ ${WRKSRC}/configure
+ @${REINPLACE_CMD} -e 's|COPYING||g' ${WRKSRC}/Makefile.in
+.if !defined(WITH_GNOME)
+ @${REINPLACE_CMD} -e \
+ 's|\(install-pkgdataDATA\) install-schemasDATA|\1|; \
+ s|\$$(DESTDIR)\$$(schemasdir)||' \
+ ${WRKSRC}/src/celestia/gtk/data/Makefile.in
+.endif
-pre-install:
- @${ECHO_CMD} bin/celestia > ${PLIST}
- @${FIND} ${WRKSRC}/data/ -name '*.???' | \
- ${SED} -e "s:^${WRKSRC}/:share/celestia/:g" >> ${PLIST}
- @${FIND} ${WRKSRC}/extras/ -name '*.ssc' | \
- ${SED} -e "s:^${WRKSRC}/:share/celestia/:g" >> ${PLIST}
- @${FIND} ${WRKSRC}/fonts/ -name '*.txf' | \
- ${SED} -e "s:^${WRKSRC}/:share/celestia/:g" >> ${PLIST}
-.for ii in celestia.cfg demo.cel guide.cel start.cel
- @${ECHO_CMD} share/celestia/${ii} >> ${PLIST}
-.endfor
-.if !defined(NOPORTDOCS)
-.for ii in AUTHORS ChangeLog README TODO controls.txt
- @${ECHO_CMD} share/doc/celestia/${ii} >> ${PLIST}
-.endfor
- @${FIND} ${WRKSRC}/manual/ -name '*.???*' | \
- ${SED} -e "s:^${WRKSRC}/:share/doc/celestia/:g" >> ${PLIST}
-.for ii in celestia/manual celestia
- @${ECHO_CMD} @dirrm share/doc/${ii} >> ${PLIST}
-.endfor
-.endif
- @${FIND} ${WRKSRC}/models/ -name '*.???' | \
- ${SED} -e "s:^${WRKSRC}/:share/celestia/:g" >> ${PLIST}
- @${FIND} ${WRKSRC}/shaders/ -name '*.vp' | \
- ${SED} -e "s:^${WRKSRC}/:share/celestia/:g" >> ${PLIST}
- @${FIND} ${WRKSRC}/textures/ -name '*.jpg' -o -name '*.png'| \
- ${SED} -e "s:^${WRKSRC}/:share/celestia/:g" >> ${PLIST}
-.for ii in /data /extras /textures/lores /textures/medres /textures /models \
- /shaders /fonts /
- @${ECHO_CMD} @dirrm share/celestia${ii} >> ${PLIST}
-.endfor
-
-do-install:
- ${INSTALL_PROGRAM} ${WRKSRC}/src/celestia/celestia ${PREFIX}/bin/
-.for ii in /data /extras /textures/lores /textures/medres /models /shaders \
- /fonts
- ${MKDIR} ${DATADIR}${ii}
-.endfor
- ${INSTALL_DATA} ${WRKSRC}/data/*.??? ${DATADIR}/data/
- ${INSTALL_DATA} ${WRKSRC}/extras/*.ssc ${DATADIR}/extras/
- ${INSTALL_DATA} ${WRKSRC}/fonts/*.txf ${DATADIR}/fonts/
-.for ii in celestia.cfg demo.cel guide.cel start.cel
- ${INSTALL_DATA} ${WRKSRC}/${ii} ${DATADIR}/
-.endfor
+post-install:
.if !defined(NOPORTDOCS)
- ${MKDIR} ${DOCSDIR}/manual
-.for ii in AUTHORS ChangeLog README TODO controls.txt
- ${INSTALL_DATA} ${WRKSRC}/${ii} ${DOCSDIR}/
-.endfor
- ${INSTALL_DATA} ${WRKSRC}/manual/*.???* ${DOCSDIR}/manual/
-.endif
- ${INSTALL_DATA} ${WRKSRC}/models/*.??? ${DATADIR}/models/
- ${INSTALL_DATA} ${WRKSRC}/shaders/*.vp ${DATADIR}/shaders/
- ${INSTALL_DATA} ${WRKSRC}/textures/*.jpg \
- ${WRKSRC}/textures/*.png ${DATADIR}/textures/
- ${INSTALL_DATA} ${WRKSRC}/textures/lores/*.??? \
- ${DATADIR}/textures/lores/
- ${INSTALL_DATA} ${WRKSRC}/textures/medres/*.??? \
- ${DATADIR}/textures/medres/
+ ${MKDIR} ${DOCSDIR}
+ ${INSTALL_DATA} \
+ ${WRKSRC}/AUTHORS \
+ ${WRKSRC}/CelestiaKeyAssignments.txt \
+ ${WRKSRC}/ChangeLog \
+ ${WRKSRC}/KbdMouseJoyControls.txt \
+ ${WRKSRC}/README \
+ ${WRKSRC}/TODO \
+ ${WRKSRC}/TRANSLATORS \
+ ${WRKSRC}/coding-standards.html \
+ ${WRKSRC}/devguide.txt \
+ ${DOCSDIR}
+.endif
+.if defined(WITH_GNOME)
+ @${CAT} ${PKGMESSAGE}
+.endif
.include <bsd.port.post.mk>
diff -ruN /usr/ports/astro/celestia/distinfo celestia/distinfo
--- /usr/ports/astro/celestia/distinfo Thu Dec 23 11:02:12 2004
+++ celestia/distinfo Tue Feb 15 18:32:57 2005
@@ -1,2 +1,2 @@
-MD5 (celestia-1.3.1.tar.gz) = fcb73c43f5899f8f7e6d0c619a818a8b
-SIZE (celestia-1.3.1.tar.gz) = 13291363
+MD5 (celestia-1.3.2.tar.gz) = 0aaf86592a8989a0576e34c1f4cb3c2a
+SIZE (celestia-1.3.2.tar.gz) = 18091458
diff -ruN /usr/ports/astro/celestia/files/patch-src::celestia::gtkmain.cpp celestia/files/patch-src::celestia::gtkmain.cpp
--- /usr/ports/astro/celestia/files/patch-src::celestia::gtkmain.cpp Thu Jan 1 01:00:00 1970
+++ celestia/files/patch-src::celestia::gtkmain.cpp Tue Feb 15 19:17:40 2005
@@ -0,0 +1,68 @@
+--- src/celestia/gtkmain.cpp.orig Tue Feb 15 19:00:43 2005
++++ src/celestia/gtkmain.cpp Tue Feb 15 19:16:55 2005
+@@ -54,6 +54,10 @@
+
+ using namespace std;
+
++// linux compatibility
++static int daylight = 0;
++static long linux_timezone = 0;
++
+ char AppName[] = "Celestia";
+
+ static CelestiaCore* appCore = NULL;
+@@ -274,7 +278,7 @@
+ {
+ if (appCore->getTimeZoneBias() == 0)
+ {
+- appCore->setTimeZoneBias(-timezone + 3600 * daylight);
++ appCore->setTimeZoneBias(-linux_timezone + 3600 * daylight);
+ appCore->setTimeZoneName(tzname[daylight]);
+ prefs->showLocalTime = TRUE;
+ }
+@@ -3391,7 +3395,7 @@
+ appCore->start((double) curtime / 86400.0 + (double) astro::Date(1970, 1, 1));
+ localtime(&curtime); /* Only doing this to set timezone as a side
+ effect*/
+- appCore->setTimeZoneBias(-timezone + 3600 * daylight);
++ appCore->setTimeZoneBias(-linux_timezone + 3600 * daylight);
+ appCore->setTimeZoneName(tzname[daylight]);
+ timeOptions[1]=tzname[daylight];
+
+@@ -3967,7 +3971,7 @@
+ appCore->getRenderer()->setStarStyle(p->starStyle);
+ appCore->setHudDetail(p->hudDetail);
+ if (p->showLocalTime) {
+- appCore->setTimeZoneBias(-timezone + 3600 * daylight);
++ appCore->setTimeZoneBias(-linux_timezone + 3600 * daylight);
+ appCore->setTimeZoneName(tzname[daylight]);
+ }
+ else {
+@@ -4067,7 +4071,7 @@
+ void confShowLocalTime(GConfClient* c, guint, GConfEntry* e, gpointer) {
+ prefs->showLocalTime = gconf_client_get_bool(c, gconf_entry_get_key(e), NULL);
+ if (prefs->showLocalTime) {
+- appCore->setTimeZoneBias(-timezone + 3600 * daylight);
++ appCore->setTimeZoneBias(-linux_timezone + 3600 * daylight);
+ appCore->setTimeZoneName(tzname[daylight]);
+ }
+ else {
+@@ -4126,6 +4130,18 @@
+ // MAIN
+ int main(int argc, char* argv[])
+ {
++ time_t now;
++ struct tm *tm;
++
++ // provide linux's daylight and timezone
++ now = time(NULL);
++ if (now >= 0)
++ {
++ tm = localtime(&now);
++ daylight = tm->tm_isdst;
++ linux_timezone = tm->tm_gmtoff;
++ }
++
+ // Say we're not ready to render yet.
+ bReady = false;
+
diff -ruN /usr/ports/astro/celestia/files/patch-src::celutil::resmanager.h celestia/files/patch-src::celutil::resmanager.h
--- /usr/ports/astro/celestia/files/patch-src::celutil::resmanager.h Thu Jan 1 01:00:00 1970
+++ celestia/files/patch-src::celutil::resmanager.h Tue Feb 15 18:57:52 2005
@@ -0,0 +1,20 @@
+--- src/celutil/resmanager.h.orig Tue Feb 15 18:52:35 2005
++++ src/celutil/resmanager.h Tue Feb 15 18:57:38 2005
+@@ -72,7 +72,7 @@
+ {
+ ResourceHandle h = handles.size();
+ resources.insert(resources.end(), info);
+- handles.insert(ResourceHandleMap::value_type(info, h));
++ handles.insert(typename ResourceHandleMap::value_type(info, h));
+ return h;
+ }
+ }
+@@ -105,7 +105,7 @@
+ else
+ {
+ resources[h].state = ResourceLoaded;
+- loadedResources.insert(NameMap::value_type(resources[h].resolvedName, resources[h].resource));
++ loadedResources.insert(typename NameMap::value_type(resources[h].resolvedName, resources[h].resource));
+ }
+ }
+ }
diff -ruN /usr/ports/astro/celestia/pkg-message celestia/pkg-message
--- /usr/ports/astro/celestia/pkg-message Thu Jan 1 01:00:00 1970
+++ celestia/pkg-message Tue Feb 15 20:13:26 2005
@@ -0,0 +1,6 @@
+===============================================================================
+IMPORTANT: the GConf daemon must be restarted after installing this
+port, by typing:
+
+ gconftool-2 --shutdown && gconftool-2 --spawn
+===============================================================================
diff -ruN /usr/ports/astro/celestia/pkg-plist celestia/pkg-plist
--- /usr/ports/astro/celestia/pkg-plist Thu Jan 1 01:00:00 1970
+++ celestia/pkg-plist Tue Feb 15 20:11:18 2005
@@ -0,0 +1,332 @@
+bin/celestia
+%%DATADIR%%/celestia.cfg
+%%DATADIR%%/celestia.png
+%%DATADIR%%/controls.txt
+%%DATADIR%%/data/asterisms.dat
+%%DATADIR%%/data/asteroids.ssc
+%%DATADIR%%/data/boundaries.dat
+%%DATADIR%%/data/cassini.xyz
+%%DATADIR%%/data/comets.ssc
+%%DATADIR%%/data/deepsky.dsc
+%%DATADIR%%/data/extrasolar.ssc
+%%DATADIR%%/data/galileo.xyz
+%%DATADIR%%/data/huygens.xyz
+%%DATADIR%%/data/outersys.ssc
+%%DATADIR%%/data/solarsys.ssc
+%%DATADIR%%/data/solsys_locs.ssc
+%%DATADIR%%/data/spacecraft.ssc
+%%DATADIR%%/data/starnames.dat
+%%DATADIR%%/data/stars.dat
+%%DATADIR%%/data/world-capitals.ssc
+%%DATADIR%%/demo.cel
+%%DATADIR%%/extras/apollo.ssc
+%%DATADIR%%/extras/comets.ssc
+%%DATADIR%%/extras/eros_locs2.ssc
+%%DATADIR%%/extras/gaspra_locs2.ssc
+%%DATADIR%%/extras/ida_locs2.ssc
+%%DATADIR%%/extras/jupmoons2.ssc
+%%DATADIR%%/extras/mars_locs2.ssc
+%%DATADIR%%/extras/marsmoons2.ssc
+%%DATADIR%%/extras/merc_locs2.ssc
+%%DATADIR%%/extras/minormoons.ssc
+%%DATADIR%%/extras/moon_locs2.ssc
+%%DATADIR%%/extras/nepmoons2.ssc
+%%DATADIR%%/extras/numberedmoons.ssc
+%%DATADIR%%/extras/ring_locs.ssc
+%%DATADIR%%/extras/satmoons2.ssc
+%%DATADIR%%/extras/shroxclassic.ssc
+%%DATADIR%%/extras/shroxmars.ssc
+%%DATADIR%%/extras/skylab.ssc
+%%DATADIR%%/extras/uranmoons.ssc
+%%DATADIR%%/extras/venus_locs2.ssc
+%%DATADIR%%/fonts/clean12.txf
+%%DATADIR%%/fonts/clean16.txf
+%%DATADIR%%/fonts/cleanbold12.txf
+%%DATADIR%%/fonts/cleanbold16.txf
+%%DATADIR%%/fonts/default.txf
+%%DATADIR%%/fonts/helv10.txf
+%%DATADIR%%/fonts/helv12.txf
+%%DATADIR%%/fonts/helv18.txf
+%%DATADIR%%/fonts/helv24.txf
+%%DATADIR%%/fonts/helvbold12.txf
+%%DATADIR%%/fonts/helvbold18.txf
+%%DATADIR%%/fonts/helvbold24.txf
+%%DATADIR%%/fonts/sans10.txf
+%%DATADIR%%/fonts/sans12.txf
+%%DATADIR%%/fonts/sans14.txf
+%%DATADIR%%/fonts/sans20.txf
+%%DATADIR%%/fonts/sansbold10.txf
+%%DATADIR%%/fonts/sansbold12.txf
+%%DATADIR%%/fonts/sansbold14.txf
+%%DATADIR%%/fonts/sansbold20.txf
+%%DATADIR%%/guide.cel
+%%DATADIR%%/manual/celestia.html
+%%DATADIR%%/manual/manual.css
+%%DATADIR%%/manual/movement.html
+%%DATADIR%%/manual/starting.html
+%%DATADIR%%/models/amalthea.3ds
+%%DATADIR%%/models/amalthea.cmod
+%%DATADIR%%/models/apollo.3ds
+%%DATADIR%%/models/asteroid.cms
+%%DATADIR%%/models/bacchus.3ds
+%%DATADIR%%/models/bacchus.cmod
+%%DATADIR%%/models/borrelly.cms
+%%DATADIR%%/models/cassini.3ds
+%%DATADIR%%/models/castalia.3ds
+%%DATADIR%%/models/castalia.cmod
+%%DATADIR%%/models/deimos.3ds
+%%DATADIR%%/models/deimos.cmod
+%%DATADIR%%/models/epimetheus.3ds
+%%DATADIR%%/models/epimetheus.cmod
+%%DATADIR%%/models/eros.3ds
+%%DATADIR%%/models/eros.cmod
+%%DATADIR%%/models/eros.cms
+%%DATADIR%%/models/galileo.3ds
+%%DATADIR%%/models/gaspra.3ds
+%%DATADIR%%/models/gaspra.cmod
+%%DATADIR%%/models/gemini.3ds
+%%DATADIR%%/models/geographos.3ds
+%%DATADIR%%/models/geographos.cmod
+%%DATADIR%%/models/golevka.3ds
+%%DATADIR%%/models/golevka.cmod
+%%DATADIR%%/models/halley.3ds
+%%DATADIR%%/models/halley.cmod
+%%DATADIR%%/models/hubble.3ds
+%%DATADIR%%/models/huygens.3ds
+%%DATADIR%%/models/hyperion.3ds
+%%DATADIR%%/models/hyperion.cmod
+%%DATADIR%%/models/hyperion.cms
+%%DATADIR%%/models/ida.3ds
+%%DATADIR%%/models/ida.cmod
+%%DATADIR%%/models/iss.3ds
+%%DATADIR%%/models/janus.3ds
+%%DATADIR%%/models/janus.cmod
+%%DATADIR%%/models/kleopatra.3ds
+%%DATADIR%%/models/kleopatra.cmod
+%%DATADIR%%/models/ky26.3ds
+%%DATADIR%%/models/ky26.cmod
+%%DATADIR%%/models/larissa.3ds
+%%DATADIR%%/models/larissa.cmod
+%%DATADIR%%/models/marsglobalsurvr.3ds
+%%DATADIR%%/models/marsodyssey.3ds
+%%DATADIR%%/models/mercury7.3ds
+%%DATADIR%%/models/mir.3ds
+%%DATADIR%%/models/pandora.3ds
+%%DATADIR%%/models/pandora.cmod
+%%DATADIR%%/models/phobos.3ds
+%%DATADIR%%/models/phobos.cmod
+%%DATADIR%%/models/prometheus.3ds
+%%DATADIR%%/models/prometheus.cmod
+%%DATADIR%%/models/proteus.3ds
+%%DATADIR%%/models/proteus.cmod
+%%DATADIR%%/models/proteus.cms
+%%DATADIR%%/models/roughsphere.cms
+%%DATADIR%%/models/skylab.3ds
+%%DATADIR%%/models/toutatis.3ds
+%%DATADIR%%/models/toutatis.cmod
+%%DATADIR%%/models/vesta.3ds
+%%DATADIR%%/models/vesta.cmod
+%%DATADIR%%/shaders/bumpdiffuse.vp
+%%DATADIR%%/shaders/bumpdiffuse_arb.vp
+%%DATADIR%%/shaders/bumpdiffuse_nv.fp
+%%DATADIR%%/shaders/bumphaze.vp
+%%DATADIR%%/shaders/bumphaze_arb.vp
+%%DATADIR%%/shaders/diffuse.vp
+%%DATADIR%%/shaders/diffuse_arb.vp
+%%DATADIR%%/shaders/diffuse_nv.fp
+%%DATADIR%%/shaders/diffuse_texoff.vp
+%%DATADIR%%/shaders/diffuse_texoff_arb.vp
+%%DATADIR%%/shaders/eclipse1_nv.fp
+%%DATADIR%%/shaders/eclipse2_nv.fp
+%%DATADIR%%/shaders/glossmap_arb.vp
+%%DATADIR%%/shaders/haze.vp
+%%DATADIR%%/shaders/haze_arb.vp
+%%DATADIR%%/shaders/multishadow_arb.vp
+%%DATADIR%%/shaders/night.vp
+%%DATADIR%%/shaders/night_arb.vp
+%%DATADIR%%/shaders/rings.vp
+%%DATADIR%%/shaders/rings_arb.vp
+%%DATADIR%%/shaders/ringshadow.vp
+%%DATADIR%%/shaders/ringshadow_arb.vp
+%%DATADIR%%/shaders/sample_nv.fp
+%%DATADIR%%/shaders/shadow_on_rings_nv.fp
+%%DATADIR%%/shaders/shadowtex.vp
+%%DATADIR%%/shaders/shadowtex_arb.vp
+%%DATADIR%%/shaders/simple.vp
+%%DATADIR%%/shaders/simple_arb.vp
+%%DATADIR%%/shaders/specular.vp
+%%DATADIR%%/shaders/specular_arb.vp
+%%DATADIR%%/shaders/texphong_alpha_arb.vp
+%%DATADIR%%/shaders/texphong_alpha_nv.fp
+%%DATADIR%%/shaders/texphong_arb.vp
+%%DATADIR%%/shaders/texphong_nv.fp
+%%DATADIR%%/start.cel
+%%DATADIR%%/textures/flare.jpg
+%%DATADIR%%/textures/logo.png
+%%DATADIR%%/textures/lores/amalthea.jpg
+%%DATADIR%%/textures/lores/ariel-lok-mask.png
+%%DATADIR%%/textures/lores/ariel.jpg
+%%DATADIR%%/textures/lores/astar.jpg
+%%DATADIR%%/textures/lores/asteroid.jpg
+%%DATADIR%%/textures/lores/browndwarf.jpg
+%%DATADIR%%/textures/lores/bstar.jpg
+%%DATADIR%%/textures/lores/callisto-lok-mask.png
+%%DATADIR%%/textures/lores/callisto.jpg
+%%DATADIR%%/textures/lores/charon-lok-spec.jpg
+%%DATADIR%%/textures/lores/charon-lok.jpg
+%%DATADIR%%/textures/lores/deimos.jpg
+%%DATADIR%%/textures/lores/dione.jpg
+%%DATADIR%%/textures/lores/earth-clouds.png
+%%DATADIR%%/textures/lores/earth-spec.png
+%%DATADIR%%/textures/lores/earth.jpg
+%%DATADIR%%/textures/lores/earth.png
+%%DATADIR%%/textures/lores/earthnight.jpg
+%%DATADIR%%/textures/lores/enceladus.jpg
+%%DATADIR%%/textures/lores/epimetheus-lok.jpg
+%%DATADIR%%/textures/lores/epimetheus.jpg
+%%DATADIR%%/textures/lores/eros.jpg
+%%DATADIR%%/textures/lores/europa-lok-mask.png
+%%DATADIR%%/textures/lores/europa.jpg
+%%DATADIR%%/textures/lores/extrasolar-lok.jpg
+%%DATADIR%%/textures/lores/ganymede-lok-mask.png
+%%DATADIR%%/textures/lores/ganymede.jpg
+%%DATADIR%%/textures/lores/gasgiant.jpg
+%%DATADIR%%/textures/lores/gasgiantnight.jpg
+%%DATADIR%%/textures/lores/gaspramosaic.jpg
+%%DATADIR%%/textures/lores/gstar.jpg
+%%DATADIR%%/textures/lores/hyperion-lok.jpg
+%%DATADIR%%/textures/lores/hyperion.jpg
+%%DATADIR%%/textures/lores/iapetus.jpg
+%%DATADIR%%/textures/lores/idamosaic.jpg
+%%DATADIR%%/textures/lores/io-lok-mask.png
+%%DATADIR%%/textures/lores/io.jpg
+%%DATADIR%%/textures/lores/janus.jpg
+%%DATADIR%%/textures/lores/jupiter.jpg
+%%DATADIR%%/textures/lores/jupiterlike.jpg
+%%DATADIR%%/textures/lores/mars.jpg
+%%DATADIR%%/textures/lores/marsbump.jpg
+%%DATADIR%%/textures/lores/mercury-lok-mask.png
+%%DATADIR%%/textures/lores/mercury.jpg
+%%DATADIR%%/textures/lores/mercurybump.jpg
+%%DATADIR%%/textures/lores/mimas-lok-mask.png
+%%DATADIR%%/textures/lores/mimas.jpg
+%%DATADIR%%/textures/lores/miranda-lok-mask.png
+%%DATADIR%%/textures/lores/miranda.jpg
+%%DATADIR%%/textures/lores/moon.jpg
+%%DATADIR%%/textures/lores/moonbump.jpg
+%%DATADIR%%/textures/lores/mstar.jpg
+%%DATADIR%%/textures/lores/neptune-rings.png
+%%DATADIR%%/textures/lores/neptune.jpg
+%%DATADIR%%/textures/lores/oberon-lok-mask.png
+%%DATADIR%%/textures/lores/oberon.jpg
+%%DATADIR%%/textures/lores/phobos.jpg
+%%DATADIR%%/textures/lores/pluto-lok-spec.jpg
+%%DATADIR%%/textures/lores/pluto-lok.jpg
+%%DATADIR%%/textures/lores/prometheus.jpg
+%%DATADIR%%/textures/lores/proteus.jpg
+%%DATADIR%%/textures/lores/rhea.jpg
+%%DATADIR%%/textures/lores/saturn-rings.png
+%%DATADIR%%/textures/lores/saturn.jpg
+%%DATADIR%%/textures/lores/tethys.jpg
+%%DATADIR%%/textures/lores/titan-clouds.jpg
+%%DATADIR%%/textures/lores/titan.jpg
+%%DATADIR%%/textures/lores/titania-lok-mask.png
+%%DATADIR%%/textures/lores/titania.jpg
+%%DATADIR%%/textures/lores/triton-lok-mask.png
+%%DATADIR%%/textures/lores/triton.jpg
+%%DATADIR%%/textures/lores/umbriel-lok-mask.png
+%%DATADIR%%/textures/lores/umbriel.jpg
+%%DATADIR%%/textures/lores/uranus-rings.png
+%%DATADIR%%/textures/lores/uranus.jpg
+%%DATADIR%%/textures/lores/venus.jpg
+%%DATADIR%%/textures/lores/venuslike.jpg
+%%DATADIR%%/textures/lores/venussurface.jpg
+%%DATADIR%%/textures/medres/amalthea.jpg
+%%DATADIR%%/textures/medres/ariel.jpg
+%%DATADIR%%/textures/medres/astar.jpg
+%%DATADIR%%/textures/medres/asteroid.jpg
+%%DATADIR%%/textures/medres/browndwarf.jpg
+%%DATADIR%%/textures/medres/bstar.jpg
+%%DATADIR%%/textures/medres/callisto.jpg
+%%DATADIR%%/textures/medres/charon-lok-spec.jpg
+%%DATADIR%%/textures/medres/charon-lok.jpg
+%%DATADIR%%/textures/medres/deimos.jpg
+%%DATADIR%%/textures/medres/dione.jpg
+%%DATADIR%%/textures/medres/earth-clouds.png
+%%DATADIR%%/textures/medres/earth-spec.png
+%%DATADIR%%/textures/medres/earth.jpg
+%%DATADIR%%/textures/medres/earth.png
+%%DATADIR%%/textures/medres/earthnight.jpg
+%%DATADIR%%/textures/medres/enceladus.jpg
+%%DATADIR%%/textures/medres/epimetheus-lok.jpg
+%%DATADIR%%/textures/medres/epimetheus.jpg
+%%DATADIR%%/textures/medres/eros.jpg
+%%DATADIR%%/textures/medres/europa.jpg
+%%DATADIR%%/textures/medres/ganymede.jpg
+%%DATADIR%%/textures/medres/gasgiant.jpg
+%%DATADIR%%/textures/medres/gasgiantnight.jpg
+%%DATADIR%%/textures/medres/gaspramosaic.jpg
+%%DATADIR%%/textures/medres/gstar.jpg
+%%DATADIR%%/textures/medres/hyperion-lok.jpg
+%%DATADIR%%/textures/medres/hyperion.jpg
+%%DATADIR%%/textures/medres/iapetus.jpg
+%%DATADIR%%/textures/medres/idamosaic.jpg
+%%DATADIR%%/textures/medres/io.jpg
+%%DATADIR%%/textures/medres/iss-cap1.jpg
+%%DATADIR%%/textures/medres/iss-mc1.jpg
+%%DATADIR%%/textures/medres/iss-mc31.jpg
+%%DATADIR%%/textures/medres/iss-sol1.jpg
+%%DATADIR%%/textures/medres/janus.jpg
+%%DATADIR%%/textures/medres/jupiter.jpg
+%%DATADIR%%/textures/medres/jupiterlike.jpg
+%%DATADIR%%/textures/medres/mars.jpg
+%%DATADIR%%/textures/medres/marsbump.jpg
+%%DATADIR%%/textures/medres/mercury.jpg
+%%DATADIR%%/textures/medres/mercurybump.jpg
+%%DATADIR%%/textures/medres/mimas.jpg
+%%DATADIR%%/textures/medres/miranda.jpg
+%%DATADIR%%/textures/medres/moon.jpg
+%%DATADIR%%/textures/medres/moonbump.jpg
+%%DATADIR%%/textures/medres/mstar.jpg
+%%DATADIR%%/textures/medres/neptune.jpg
+%%DATADIR%%/textures/medres/oberon.jpg
+%%DATADIR%%/textures/medres/phobos.jpg
+%%DATADIR%%/textures/medres/pluto-lok-spec.jpg
+%%DATADIR%%/textures/medres/pluto-lok.jpg
+%%DATADIR%%/textures/medres/prometheus.jpg
+%%DATADIR%%/textures/medres/proteus.jpg
+%%DATADIR%%/textures/medres/renova.jpg
+%%DATADIR%%/textures/medres/rhea.jpg
+%%DATADIR%%/textures/medres/saturn.jpg
+%%DATADIR%%/textures/medres/tethys.jpg
+%%DATADIR%%/textures/medres/titan-clouds.jpg
+%%DATADIR%%/textures/medres/titan.jpg
+%%DATADIR%%/textures/medres/titania.jpg
+%%DATADIR%%/textures/medres/triton.jpg
+%%DATADIR%%/textures/medres/umbriel.jpg
+%%DATADIR%%/textures/medres/venus.jpg
+%%DATADIR%%/textures/medres/venuslike.jpg
+%%DATADIR%%/textures/medres/venussurface.jpg
+%%PORTDOCS%%%%DOCSDIR%%/AUTHORS
+%%PORTDOCS%%%%DOCSDIR%%/CelestiaKeyAssignments.txt
+%%PORTDOCS%%%%DOCSDIR%%/ChangeLog
+%%PORTDOCS%%%%DOCSDIR%%/KbdMouseJoyControls.txt
+%%PORTDOCS%%%%DOCSDIR%%/README
+%%PORTDOCS%%%%DOCSDIR%%/TODO
+%%PORTDOCS%%%%DOCSDIR%%/TRANSLATORS
+%%PORTDOCS%%%%DOCSDIR%%/coding-standards.html
+%%PORTDOCS%%%%DOCSDIR%%/devguide.txt
+%%GTK%%share/gnome/applications/celestia.desktop
+%%GTK%%share/gnome/pixmaps/celestia.png
+ at dirrm %%DATADIR%%/data
+ at dirrm %%DATADIR%%/extras
+ at dirrm %%DATADIR%%/fonts
+ at dirrm %%DATADIR%%/manual
+ at dirrm %%DATADIR%%/models
+ at dirrm %%DATADIR%%/shaders
+ at dirrm %%DATADIR%%/textures/lores
+ at dirrm %%DATADIR%%/textures/medres
+ at dirrm %%DATADIR%%/textures/hires
+ at dirrm %%DATADIR%%/textures
+ at dirrm %%DATADIR%%
+%%PORTDOCS%%@dirrm %%DOCSDIR%%
>Release-Note:
>Audit-Trail:
>Unformatted:
More information about the freebsd-ports-bugs
mailing list