mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
5114e2637e
bsd.port.mk rev. 1.304 for details on the change. The fix here is one of the following. (1) Define USE_BZIP2 instead of BUILD_DEPENDS on bzip2 and redefining EXTRACT_* commands. (2) Change ${EXTRACT_CMD} to ${TAR} when the command is obviously calling the "tar" command (i.e., arguments like "-xzf" are spelled out). (3) If ${EXTRACT_CMD} is called directly with ${EXTRACT_BEFORE_ARGS}, add ${EXTRACT_AFTER_ARGS} to the command line as well. (4) If any of EXTRACT_CMD, EXTRACT_BEFORE_ARGS or EXTRACT_AFTER_ARGS is set, define the other two too.
44 lines
1.0 KiB
Makefile
44 lines
1.0 KiB
Makefile
# New ports collection makefile for: fftpack
|
|
# Version required: ?
|
|
# Date created: 31 October 1996
|
|
# Whom: Pedro Giffuni S.
|
|
#
|
|
# $Id: Makefile,v 1.8 1998/11/14 09:43:22 asami Exp $
|
|
#
|
|
|
|
DISTNAME= bihar
|
|
PKGNAME= fftpack-1.0
|
|
CATEGORIES= math
|
|
MASTER_SITES= ftp://netlib.bell-labs.com/netlib/
|
|
EXTRACT_SUFX= .tar
|
|
|
|
MAINTAINER= giffunip@asme.org
|
|
|
|
# ${DISTFILES} is automatically created from the directory contents
|
|
IGNOREFILES= ${DISTFILES}
|
|
EXTRACT_CMD= ${TAR}
|
|
EXTRACT_BEFORE_ARGS= -xf
|
|
EXTRACT_AFTER_ARGS= # empty
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
post-extract:
|
|
gunzip $(WRKSRC)/*.f.gz
|
|
|
|
pre-build:
|
|
${RM} $(WRKSRC)/.depend
|
|
${CP} ${FILESDIR}/makefile.lib ${WRKSRC}/Makefile
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} $(PREFIX)/share/doc/fftpack
|
|
-${GZIP_CMD} ${GZIP} ${WRKSRC}/fft.doc
|
|
${CP} $(WRKSRC)/fft.doc.gz $(PREFIX)/share/doc/fftpack/
|
|
.endif
|
|
.if ${PORTOBJFORMAT} == "aout"
|
|
${LN} -sf libbihar.so.1 ${PREFIX}/lib/libbihar.so
|
|
.endif
|
|
${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m ${PREFIX}/lib
|
|
|
|
.include <bsd.port.post.mk>
|