diff options
author | Michael Haro <mharo@FreeBSD.org> | 2000-03-23 21:09:28 +0000 |
---|---|---|
committer | Michael Haro <mharo@FreeBSD.org> | 2000-03-23 21:09:28 +0000 |
commit | 3ecdcf9f7340198bf374ec6b5951e94dfeed9f9a (patch) | |
tree | 8fadc1d0e02ffcafc5765946d935da0996d23526 /math/linpack/Makefile | |
parent | 31e683143f6c4c25c64990b37068e95cb6df5a51 (diff) | |
download | ports-3ecdcf9f7340198bf374ec6b5951e94dfeed9f9a.tar.gz ports-3ecdcf9f7340198bf374ec6b5951e94dfeed9f9a.zip |
remove aout support
Notes
Notes:
svn path=/head/; revision=26990
Diffstat (limited to 'math/linpack/Makefile')
-rw-r--r-- | math/linpack/Makefile | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/math/linpack/Makefile b/math/linpack/Makefile index 7868a614c55c..ef32ea4d92a6 100644 --- a/math/linpack/Makefile +++ b/math/linpack/Makefile @@ -12,6 +12,7 @@ CATEGORIES= math MASTER_SITES= ftp://ftp.netlib.org/linpack/ \ ftp://netlib.bell-labs.com/netlib/linpack/ \ ftp://www.hensa.ac.uk/mirrors/netlib/linpack/ +DISTFILES= ${SRCS:.f=.f.gz} MAINTAINER= ports@FreeBSD.org @@ -44,10 +45,6 @@ SRCS = cchdc.f cchdd.f cchex.f cchud.f cgbco.f cgbdi.f cgbfa.f cgbsl.f \ zsico.f zsidi.f zsifa.f zsisl.f zspco.f zspdi.f zspfa.f zspsl.f \ zsvdc.f ztrco.f ztrdi.f ztrsl.f -DISTFILES= ${SRCS:.f=.f.gz} - -.include <bsd.port.pre.mk> - do-extract: @${MKDIR} ${WRKDIR} .for file in ${SRCS} @@ -58,9 +55,6 @@ pre-build: ${CP} ${FILESDIR}/Makefile.lib ${WRKSRC}/Makefile post-install: - ${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m ${PREFIX}/lib -.if ${PORTOBJFORMAT} == "aout" - ${LN} -sf liblinpack.so.1.0 ${PREFIX}/lib/liblinpack.so -.endif + ${LDCONFIG} -m ${PREFIX}/lib -.include <bsd.port.post.mk> +.include <bsd.port.mk> |