fa10afd290
changes: -Support UCAC catalog version 3 -Sky view shows PA in live report -Favorites may now be edited in-place -Earth view displays great circle distance and bearing -Change Earth view cylindrical projection from cos to linear -Earth Object table reports range rate for solar system objects -Eyepiece rotation depends on Alt/Az or RA/Dec placement context pkgsrc change: don't hardwire dependency on libXp but rely on the framework (the Motif implemtation's bl3 file and the MOTIFLIB environment variable) to pull it in if necessary
67 lines
2.3 KiB
Makefile
67 lines
2.3 KiB
Makefile
# $NetBSD: Makefile,v 1.54 2011/12/07 16:19:33 drochner Exp $
|
|
|
|
DISTNAME= xephem-3.7.5
|
|
CATEGORIES= x11
|
|
MASTER_SITES= http://www.clearskyinstitute.com/xephem/ \
|
|
http://97.74.56.125/free/
|
|
|
|
MAINTAINER= gdt@NetBSD.org
|
|
HOMEPAGE= http://www.clearskyinstitute.com/xephem/
|
|
COMMENT= Interactive astronomical ephemeris program
|
|
LICENSE= xephem-license
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
# Pending adjustment of license wording to clarify the copyright
|
|
# holder's intent, permission has been granted to distribute the
|
|
# distfile and binary packages without functional changes.
|
|
#
|
|
# From: "Elwood C. Downey" <ecdowney@clearskyinstitute.com>
|
|
# Subject: Re: license terms, tarball mirroring, binary packages
|
|
# To: "Greg Troxel" <gdt@ir.bbn.com>
|
|
# Date: Wed, 10 May 2006 18:41:01 -0600 (MDT)
|
|
# [rest omitted]
|
|
# In the mean time, please consider this email to grant permissions for
|
|
# the NetBSD distros to make available both through online download and
|
|
# physical media both the original XEphem tarball and a binary built
|
|
# from the original tarball (including possible changes for porting but
|
|
# not changes in functionality).
|
|
|
|
# uses built libpng without synchronization
|
|
MAKE_JOBS_SAFE= no
|
|
|
|
WRKSRC= ${WRKDIR}/${DISTNAME}/GUI/xephem
|
|
USE_TOOLS+= gmake perl:run
|
|
REPLACE_PERL+= auxil/*.pl
|
|
|
|
LIBS.SunOS+= -lnsl -lsocket
|
|
X11_LDFLAGS+= ${LIBS}
|
|
MAKE_ENV+= X11_LDFLAGS=${X11_LDFLAGS:Q}
|
|
|
|
REPLACE_INTERPRETER+= perl
|
|
REPLACE.perl.old= .*/bin/perl
|
|
REPLACE.perl.new= ${PREFIX}/bin/perl
|
|
REPLACE_FILES.perl= auxil/astorb2edb.pl auxil/mpcorb2edb.pl
|
|
|
|
.if ${MACHINE_ARCH} == "arm" || ${MACHINE_ARCH} == "arm32"
|
|
GCC_REQD+= 2.95.3
|
|
.endif
|
|
|
|
INSTALLATION_DIRS= bin lib/X11/app-defaults share/xephem/tools \
|
|
${PKGMANDIR}/man1
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/xephem ${DESTDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/xephem.man ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/xephem.1
|
|
${SED} s,@PREFIX@,${PREFIX}, ${FILESDIR}/XEphem.ad > ${WRKDIR}/XEphem
|
|
${INSTALL_DATA} ${WRKDIR}/XEphem ${DESTDIR}${PREFIX}/lib/X11/app-defaults
|
|
cd ${WRKSRC}; ${CP} -R auxil catalogs fifos fits gallery help lo \
|
|
${DESTDIR}${PREFIX}/share/xephem
|
|
${CHOWN} -R ${SHAREOWN} ${DESTDIR}${PREFIX}/share/xephem
|
|
|
|
.include "../../x11/libX11/buildlink3.mk"
|
|
.include "../../x11/libXext/buildlink3.mk"
|
|
.include "../../x11/libXmu/buildlink3.mk"
|
|
.include "../../x11/libXt/buildlink3.mk"
|
|
.include "../../mk/motif.buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|