mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-04 22:33:27 +00:00
0bdef5a38f
for backwards compatibilty. Also move it down to "misc. bsd.port.mk variables" section. While I'm here, add "/sbin/" to ldconfig.
36 lines
801 B
Makefile
36 lines
801 B
Makefile
# New ports collection makefile for: fftpack
|
|
# Version required: ?
|
|
# Date created: 31 October 1996
|
|
# Whom: pgs
|
|
#
|
|
# $Id: Makefile,v 1.1.1.1 1997/02/14 08:53:05 tg Exp $
|
|
#
|
|
|
|
DISTNAME= fftpack
|
|
PKGNAME= fftpack-1.0
|
|
CATEGORIES= math
|
|
MASTER_SITES= ftp://netlib.bell-labs.com/netlib/
|
|
EXTRACT_SUFX= .tar
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
|
|
# ${DISTFILES} is automatically created from the directory contents
|
|
IGNOREFILES= ${DISTFILES}
|
|
EXTRACT_BEFORE_ARGS= -xvf
|
|
|
|
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
|
|
/sbin/ldconfig -m ${PREFIX}/lib
|
|
|
|
.include <bsd.port.mk>
|