9b7bcc6702
Closes PR #2574. Submitted by: Pedro Giffuni S.
35 lines
740 B
Makefile
35 lines
740 B
Makefile
# New ports collection makefile for: fftpack
|
|
# Version required: ?
|
|
# Date created: 31 October 1996
|
|
# Whom: pgs
|
|
#
|
|
# $Id$
|
|
#
|
|
|
|
DISTNAME= fftpack
|
|
PKGNAME= fftpack-1.0
|
|
CATEGORIES= math
|
|
MASTER_SITES= ftp://netlib.bell-labs.com/netlib/
|
|
EXTRACT_SUFX= .tar
|
|
EXTRACT_ARGS= -xvf
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
|
|
# ${DISTFILES} is automatically created from the directory contents
|
|
IGNOREFILES= ${DISTFILES}
|
|
|
|
post-extract:
|
|
uncompress $(WRKSRC)/*.f.Z
|
|
|
|
pre-build:
|
|
${RM} $(WRKSRC)/.depend
|
|
${CP} ${FILESDIR}/makefile.lib ${WRKSRC}/Makefile
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} $(PREFIX)/share/doc/fftlib
|
|
${CP} $(WRKSRC)/doc.Z $(PREFIX)/share/doc/fftlib/
|
|
.endif
|
|
ldconfig -m ${PREFIX}/lib
|
|
|
|
.include <bsd.port.mk>
|