mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
49b60d09e2
PR: ports/10951 Submitted by: Michael Haro <mharo@area51.fremont.ca.us>
80 lines
2.3 KiB
Makefile
80 lines
2.3 KiB
Makefile
# New ports collection makefile for: xephem
|
|
# Version required: 3.1
|
|
# Date created: Thu Aug 1 09:10:22 CDT 1996
|
|
# Whom: erich@FreeBSD.org
|
|
#
|
|
# $Id: Makefile,v 1.11 1998/09/26 23:40:12 steve Exp $
|
|
#
|
|
|
|
DISTNAME= xephem-3.2.2
|
|
CATEGORIES= astro
|
|
MASTER_SITES= ftp://iraf.noao.edu/contrib/xephem/xephem-3.2/ \
|
|
ftp://gastro23.physics.uiowa.edu/pub/xephem/ \
|
|
ftp://iphcip1.physik.uni-mainz.de/pub/xephem/ \
|
|
ftp://wolf.ifj.edu.pl/mirror/xephem/
|
|
|
|
MAINTAINER= erich@FreeBSD.org
|
|
|
|
LIB_DEPENDS= Xpm.4:${PORTSDIR}/graphics/xpm
|
|
|
|
REQUIRES_MOTIF= yes
|
|
USE_IMAKE= yes
|
|
MANCOMPRESSED= no
|
|
WRKSRC= ${WRKDIR}/${DISTNAME}/GUI/xephem
|
|
|
|
LIBSRC= ${WRKDIR}/${DISTNAME}/libastro
|
|
|
|
MAN1= xephem.1
|
|
|
|
AUXIL= README jupiter.9910 logo.gif mars.9910 mars_db marsmap.fts \
|
|
moon.fts moon_db saturne.9910 uranus.9910 xephem.hlp \
|
|
xephem_sites
|
|
|
|
CATALOGS= ISS.edb Messier.edb NGC.edb README SAC.edb YBS.edb comets.edb \
|
|
minorpl.edb
|
|
|
|
TOOLS= README extract.awk jost2edb.awk mpcorb2edb.pl tle2edb.pl
|
|
|
|
GSC= Makefile README gscload.c support.c
|
|
|
|
XEPHEMDBD= INSTALL Makefile README cgi-lib.pl db.c fsfetch.c request.c \
|
|
stubs.c xephemdbd.c xephemdbd.html xephemdbd.pl
|
|
|
|
pre-configure:
|
|
@(cd ${LIBSRC} && ${XMKMF})
|
|
|
|
pre-build:
|
|
@(cd ${LIBSRC}; ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${ALL_TARGET})
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/xephem ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/xephem.man ${PREFIX}/man/man1/xephem.1
|
|
${MKDIR} ${PREFIX}/lib/X11/xephem
|
|
|
|
${MKDIR} ${PREFIX}/lib/X11/xephem/auxil
|
|
.for file in ${AUXIL}
|
|
${INSTALL_DATA} ${WRKSRC}/auxil/${file} ${PREFIX}/lib/X11/xephem/auxil/${file}
|
|
.endfor
|
|
|
|
${MKDIR} ${PREFIX}/lib/X11/xephem/catalogs
|
|
.for file in ${CATALOGS}
|
|
${INSTALL_DATA} ${WRKSRC}/catalogs/${file} ${PREFIX}/lib/X11/xephem/catalogs/${file}
|
|
.endfor
|
|
|
|
${MKDIR} ${PREFIX}/lib/X11/xephem/tools
|
|
.for file in ${TOOLS}
|
|
${INSTALL_DATA} ${WRKSRC}/tools/${file} ${PREFIX}/lib/X11/xephem/tools/${file}
|
|
.endfor
|
|
|
|
${MKDIR} ${PREFIX}/lib/X11/xephem/tools/gsc
|
|
.for file in ${GSC}
|
|
${INSTALL_DATA} ${WRKSRC}/tools/gsc/${file} ${PREFIX}/lib/X11/xephem/tools/gsc/${file}
|
|
.endfor
|
|
|
|
${MKDIR} ${PREFIX}/lib/X11/xephem/tools/xephemdbd
|
|
.for file in ${XEPHEMDBD}
|
|
${INSTALL_DATA} ${WRKSRC}/tools/xephemdbd/${file} ${PREFIX}/lib/X11/xephem/tools/xephemdbd/${file}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|