ec892645ac
- added -outfile command line switch - added -rot command line switch by Andrew Sumner: - implemented cloud map rendering (-cloudmapfile and -cloudfilter switches) (see README.maps for details) For NetBSD 1.4.x, (s)rand() was replaced by (s)random() to get a better image of stars. Thanks a lot to Marcello Balduccini <marcy@cs.utep.edu> for the hint!
39 lines
1.3 KiB
Makefile
39 lines
1.3 KiB
Makefile
# $NetBSD: Makefile,v 1.10 2000/04/03 03:24:47 hubertf Exp $
|
|
#
|
|
|
|
DISTNAME= xglobe-0.5
|
|
CATEGORIES= x11
|
|
#
|
|
# The original MASTER_SITE for the program responds "200 OK"
|
|
# and produces a page explaining how the user "uddn" no longer
|
|
# has web pages on their system.
|
|
#
|
|
MASTER_SITES= http://www.uni-karlsruhe.de/~uddn/xglobe/ \
|
|
http://livingearth.com/LE/images/ \
|
|
http://www.ngdc.noaa.gov/mgg/image/
|
|
DISTFILES+= ${MAPS} ${DISTNAME}${EXTRACT_SUFX}
|
|
|
|
MAINTAINER= hubertf@netbsd.org
|
|
HOMEPAGE= http://www.uni-karlsruhe.de/~uddn/xglobe/
|
|
|
|
DEPENDS+= qt1-1.44:../../x11/qt1
|
|
|
|
DIST_SUBDIR= xglobe
|
|
MAPS= LE.400.gif Brill.400.gif mggd.gif
|
|
EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX}
|
|
|
|
USE_X11BASE= YES
|
|
USE_GMAKE= YES
|
|
MAKE_ENV+= QTDIR=${X11BASE}/qt1
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${X11BASE}/lib/xglobe
|
|
${INSTALL_DATA} ${DISTDIR}/${DIST_SUBDIR}/mggd.gif ${X11BASE}/lib/xglobe/mggd.gif
|
|
${INSTALL_DATA} ${DISTDIR}/${DIST_SUBDIR}/LE.400.gif ${X11BASE}/lib/xglobe/daymap.gif
|
|
${INSTALL_DATA} ${DISTDIR}/${DIST_SUBDIR}/Brill.400.gif ${X11BASE}/lib/xglobe/nightmap.gif
|
|
${INSTALL_DATA_DIR} ${X11BASE}/share/doc/xglobe
|
|
${INSTALL_DATA} ${WRKSRC}/README ${X11BASE}/share/doc/xglobe
|
|
${INSTALL_DATA} ${WRKSRC}/README.maps ${X11BASE}/share/doc/xglobe
|
|
${INSTALL_DATA} ${WRKSRC}/getcloudmap.sh ${X11BASE}/bin/xglobe-getcloudmap.sh
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|