Bug 5023 - fftpack port Makefile looks for .Z files; the files are actually gzip'd.
Summary: fftpack port Makefile looks for .Z files; the files are actually gzip'd.
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: freebsd-ports (Nobody)
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 1997-11-13 00:20 UTC by cmf
Modified: 1997-11-13 13:01 UTC (History)
0 users

See Also:


Attachments
file.diff (206 bytes, patch)
1997-11-13 00:20 UTC, cmf
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description cmf 1997-11-13 00:20:01 UTC
The fftpack Makefile is written under the
assumption that the archive contains
compress(1) files, ending in .Z.  In fact, they
are gzip(1) files, ending in .gz.

Fix: post-extract:
!       gunzip $(WRKSRC)/*.f.gz

  pre-build:
        ${RM} $(WRKSRC)/.depend
--- 19,25 ----
  EXTRACT_BEFORE_ARGS=  -xvf

  post-extract:
!       uncompress $(WRKSRC)/*.f.Z

  pre-build:
        ${RM} $(WRKSRC)/.depend
***************


--- 28,34 ----
  post-install:
  .if !defined(NOPORTDOCS)
        ${MKDIR} $(PREFIX)/share/doc/fftlib
!       ${CP} $(WRKSRC)/doc.Z $(PREFIX)/share/doc/fftlib/
  .endif
        ${LDCONFIG} -m ${PREFIX}/lib--2xWN4o2OVw0cbt0kGHnxwnDZJF24NWEF2VuWsyAXB9YzpShH
Content-Type: text/plain; name="file.diff"
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="file.diff"

*** Makefile    Wed Nov 12 18:04:52 1997
--- Makefile.old        Fri Jul 18 21:59:42 1997
***************
*** 19,25 ****
  EXTRACT_BEFORE_ARGS=  -xvf
How-To-Repeat: cd /usr/ports/math/fftpack; make
Comment 1 Thomas Gellekum 1997-11-13 10:10:05 UTC
cmf@netins.net writes:

> The fftpack Makefile is written under the
> assumption that the archive contains
> compress(1) files, ending in .Z.  In fact, they
> are gzip(1) files, ending in .gz.

Currently the directory in ftp://netlib.bell-labs.com/netlib/ is
empty, the one on ftp.netlib.org contains only uncompressed files
(*.f). Does anyone know what's going on here?

tg
Comment 2 Thomas Gellekum freebsd_committer freebsd_triage 1997-11-13 13:00:51 UTC
State Changed
From-To: open->closed

Committed, thanks.