ed3f6f344f
Bug fixes, plus: Changes from 3.7 to 3.7.1 Released November 19, 2005 New Features: * Add tool to align two or more FITS images and create motion movies. * Add Control-m keyboard shortcut to add any view to the Movie loop. * Upgrade to higher resolution Earth image. * Put user annotations in a scrolled list to accommodate lengthy collections. * Add Moonrise and Moonset to collection of Step size controls. * Image gallery lookups now search against all names of data base objects. Changes from 3.6.4 to 3.7 Released August 1, 2005 New Features: * Data o Includes Hubble GSC 2.2.0.1 catalog, 450 million stars complete to M18.5. o New and updated catalogs: Messier, IC, NGC, COVBS, SKY2000, HYPERLEDA, Supernova, WDSC, Open clusters, Henry-Draper, Pleiades and asteroids. o YBS replaced with Sky 2000 to magnitude 6.5. o Can now display Gallery image directly from Data Index. * Earth View o Display satellite orbits in space. o Zoom in to see better geography, or out to see high orbits. o Quick-set button to set equator rotation. o Display of surface footprint is now optional. o Expanded range mouse panning allows continuous rotation. * Sky View o Save and restore sets of eyepiece definitions. o Save and restore sets of eyepiece Sky positions. o Constellation figure definitions now stored in editable files. o WCS solver invoked automatically if header has seed but no solution. o Shortcut button to set display aspect ratio to match image. o FITS file blinking via new Movie frame function. * User Annotation o Anchor locations are now based on the view's world coordinates. o Sets of annotations may be saved and loaded from files. * Other o Collect any number of View, NAAG or Plot frames into a movie, save as set of PNG files. o Many tweaks for improved INDI support, including display FITS BLOBs.
40 lines
1.3 KiB
Makefile
40 lines
1.3 KiB
Makefile
# $NetBSD: Makefile,v 1.38 2006/05/10 16:45:35 gdt Exp $
|
|
|
|
DISTNAME= xephem-3.7.1
|
|
CATEGORIES= x11
|
|
MASTER_SITES= http://www.clearskyinstitute.com/xephem/ \
|
|
ftp://iphcip1.physik.uni-mainz.de/pub/xephem/
|
|
|
|
MAINTAINER= gdt@NetBSD.org
|
|
HOMEPAGE= http://www.clearskyinstitute.com/xephem/
|
|
COMMENT= Interactive astronomical ephemeris program
|
|
|
|
LICENSE= xephem-license
|
|
RESTRICTED= No permission to distribute distfile or binary package.
|
|
NO_SRC_ON_FTP= ${RESTRICTED}
|
|
NO_SRC_ON_CDROM= ${RESTRICTED}
|
|
NO_BIN_ON_FTP= ${RESTRICTED}
|
|
NO_BIN_ON_CDROM= ${RESTRICTED}
|
|
|
|
WRKSRC= ${WRKDIR}/${DISTNAME}/GUI/xephem
|
|
USE_TOOLS+= gmake perl:run
|
|
|
|
BUILD_ENV+= X11_LDFLAGS=${X11_LDFLAGS:Q}
|
|
|
|
.if ${MACHINE_ARCH} == "arm" || ${MACHINE_ARCH} == "arm32"
|
|
GCC_REQD+= 2.95.3
|
|
.endif
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/xephem ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/xephem.man ${PREFIX}/${PKGMANDIR}/man1/xephem.1
|
|
${SED} s,@PREFIX@,${PREFIX}, ${FILESDIR}/XEphem.ad > ${WRKDIR}/XEphem
|
|
${INSTALL_DATA} ${WRKDIR}/XEphem ${PREFIX}/lib/X11/app-defaults
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/xephem/tools
|
|
cd ${WRKSRC}; ${CP} -R auxil catalogs fifos fits gallery help lo \
|
|
${PREFIX}/share/xephem
|
|
${CHOWN} -R ${SHAREOWN} ${PREFIX}/share/xephem
|
|
|
|
.include "../../mk/motif.buildlink3.mk"
|
|
.include "../../mk/x11.buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|