diff options
author | Jean-Yves Lefort <jylefort@FreeBSD.org> | 2006-10-31 10:39:10 +0000 |
---|---|---|
committer | Jean-Yves Lefort <jylefort@FreeBSD.org> | 2006-10-31 10:39:10 +0000 |
commit | 60de9854a08f9def1ad208d82b3386236ca0921b (patch) | |
tree | eadc08824288af106906943d5db608a09dd980b3 /astro/celestia/Makefile | |
parent | 818860b02a9912a031f24f9046579a872d74383d (diff) |
Install missing 3D models
Submitted by: Juergen Lock <nox@jelal.kn-bremen.de>
Notes
Notes:
svn path=/head/; revision=175781
Diffstat (limited to 'astro/celestia/Makefile')
-rw-r--r-- | astro/celestia/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/astro/celestia/Makefile b/astro/celestia/Makefile index c66cb682bedd..4f7fff977184 100644 --- a/astro/celestia/Makefile +++ b/astro/celestia/Makefile @@ -7,7 +7,7 @@ PORTNAME= celestia PORTVERSION= 1.4.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= astro MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= celestia @@ -93,6 +93,11 @@ post-install: ${MKDIR} ${PREFIX}/share/pixmaps ${INSTALL_DATA} ${WRKSRC}/src/celestia/gtk/data/celestia.png \ ${PREFIX}/share/pixmaps +.for m in apollo cassini galileo gemini hubble iss marsglobalsurvr \ + marsodyssey mercury7 mir skylab + ${INSTALL_DATA} ${WRKSRC}/models/${m}.3ds \ + ${PREFIX}/share/celestia/models +.endfor .if !defined(NOPORTDOCS) ${MKDIR} ${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR} |