1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-24 00:45:52 +00:00
freebsd-ports/science/at/Makefile
Edwin Groothuis 246609f6fe New port: science/at Acoustic ToolBox
The Acoustic ToolBox includes four acoustic models:

	   BELLHOP: A beam/ray trace code
	   KRAKEN:  A normal mode code
	   SCOOTER: A finite element FFP code
	   SPARC:   A time domain FFP code

	A common input structure has been used throughout so that
	only minor modifications are needed to switch from one
	program to another.

	All the models produce shade files which can be processed
	using a common set of plotting routines to plot transmission
	loss vs. range or vs. range and depth.  These plotting
	routines are contained in the GLOBAL directory.

PR:		ports/42378
Submitted by:	Heiner Strauss <heiner@bilch.com>
2003-09-08 12:45:59 +00:00

36 lines
936 B
Makefile

# Ports collection makefile for: at
# Date created: Jun 30, 2003
# Whom: Heiner Strauss <heiner@bilch.com>
#
# $FreeBSD$
PORTNAME= at
PORTVERSION= 1.0
CATEGORIES= science
MASTER_SITES= http://oalib.saic.com/Modes/AcousticsToolbox/
DISTNAME= at_Unix
EXTRACT_SUFX= .tar.Z
MAINTAINER= heiner@bilch.com
COMMENT= The Acoustic ToolBox includes four acoustic models
WRKSRC= ${WRKDIR}/at
do-build:
cd ${WRKSRC}; ${MAKE} install
do-install:
${MKDIR} ${PREFIX}/bin
${INSTALL_SCRIPT} ${WRKSRC}/scripts/* ${PREFIX}/bin
${MKDIR} ${PREFIX}/libexec/at
${INSTALL_PROGRAM} `find ${WRKSRC} -name \*.out -print` ${PREFIX}/libexec/at
${MKDIR} ${PREFIX}/share/examples/at
${CP} -rp ${WRKSRC}/tests/* ${PREFIX}/share/examples/at
${INSTALL_SCRIPT} ${WRKSRC}/at_init ${PREFIX}/share/examples/at
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/doc/* ${DOCSDIR}
.endif
.include <bsd.port.mk>