mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +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.
52 lines
1.5 KiB
Makefile
52 lines
1.5 KiB
Makefile
# New ports collection makefile for: eispack
|
|
# Version required: ?
|
|
# Date created: 31 October 1994
|
|
# Whom: ljo
|
|
#
|
|
# $Id: Makefile,v 1.19 1998/12/01 09:30:25 asami Exp $
|
|
#
|
|
|
|
DISTNAME= eispack
|
|
PKGNAME= eispack-1.0
|
|
CATEGORIES= math
|
|
MASTER_SITES= ftp://netlib.bell-labs.com/netlib/eispack/ \
|
|
ftp://www.hensa.ac.uk/mirrors/netlib/eispack/ \
|
|
ftp://elib.zib-berlin.de/pub/netlib/eispack/
|
|
|
|
DIST_SUBDIR= ${DISTNAME}
|
|
|
|
LIB_DEPENDS= blas.1:${PORTSDIR}/math/blas
|
|
|
|
EXTRACT_CMD= ${SH} ${SCRIPTDIR}/uncomp
|
|
EXTRACT_SUFX= .gz
|
|
EXTRACT_BEFORE_ARGS= ${WRKDIR}
|
|
EXTRACT_AFTER_ARGS= # empty
|
|
|
|
NO_WRKSUBDIR= yes
|
|
|
|
SRCS = csroot.f epslon.f pythag.f bakvec.f balanc.f balbak.f bandr.f \
|
|
bandv.f bisect.f bqr.f cbabk2.f cbal.f cg.f ch.f cinvit.f combak.f \
|
|
comhes.f comlr.f comlr2.f comqr.f comqr2.f cortb.f corth.f elmbak.f \
|
|
elmhes.f eltran.f figi.f figi2.f hqr.f hqr2.f htrib3.f htribk.f \
|
|
htrid3.f htridi.f imtql1.f imtql2.f imtqlv.f invit.f minfit.f \
|
|
ortbak.f orthes.f ortran.f otqlrat.f qzhes.f qzit.f qzval.f qzvec.f \
|
|
ratqr.f rebak.f rebakb.f reduc.f reduc2.f rg.f rgg.f rs.f rsb.f \
|
|
rsg.f rsgab.f rsgba.f rsm.f rsp.f rst.f rt.f svd.f tinvit.f tql1.f \
|
|
tql2.f tqlrat.f trbak1.f trbak3.f tred1.f tred2.f tred3.f tridib.f \
|
|
tsturm.f cdiv.f
|
|
|
|
DISTFILES= ${SRCS:.f=.f.gz}
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
pre-build:
|
|
cp Makefile.lib ${WRKDIR}/Makefile
|
|
|
|
post-install:
|
|
${LDCONFIG} -m ${PREFIX}/lib
|
|
.if ${PORTOBJFORMAT} == "aout"
|
|
${LN} -sf libeispack.so.1.0 ${PREFIX}/lib/libeispack.so
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|