ports/archivers/bzip/files/patch-Makefile
John Marino e576cffda4 Resurrect archivers/bzip and assign maintainer
This port was removed due not having a publically available distfile.
That has been fixed per the PR with maintainership assigned to submitter.

Additionally:

  * The patch-aa was renamed
  * The patch-ab and patch-ac touched the same file; they were combined
    and renamed
  * DragonFly support was added (hence the portrevision bump)
  * GPLv2 license was annotated
  * 80-column formatting was respected
  * PLIST sorted

PR:		188939
Submitted by:	Chris Hutchinson
Tweaks:		marino
2014-06-11 09:49:14 +00:00

44 lines
1.1 KiB
Plaintext

--- Makefile.orig Sat Aug 31 09:50:33 1996
+++ Makefile Fri Sep 27 13:57:55 1996
@@ -1,29 +1,17 @@
-
-CC = gcc
-SH = /bin/sh
-
-CFLAGS = -O3 -fomit-frame-pointer -funroll-loops -Wall -Winline -Wshadow -W
-
-
+CFLAGS+= -fomit-frame-pointer
all:
- cat words0
$(CC) $(CFLAGS) -o bzip bzip.c
- rm -f bunzip
- ln -s ./bzip ./bunzip
- cat words1
- ./bzip -Q -1 < sample1.ref > sample1.rbz
- ./bzip -Q -2 < sample2.ref > sample2.rbz
- ./bunzip -Q < sample1.bz > sample1.tst
- ./bunzip -Q < sample2.bz > sample2.tst
- cat words2
- cmp sample1.bz sample1.rbz
- cmp sample2.bz sample2.rbz
- cmp sample1.tst sample1.ref
- cmp sample2.tst sample2.ref
- cat words3
-
+ @ln -fs ./bzip ./bunzip
+ @echo "*** testing bzip and bunzip ***"
+ ./bzip -Q -1 < sample1.ref > sample1.rbz || exit 1
+ ./bzip -Q -2 < sample2.ref > sample2.rbz || exit 1
+ ./bunzip -Q < sample1.bz > sample1.tst || exit 1
+ ./bunzip -Q < sample2.bz > sample2.tst || exit 1
+ cmp sample1.bz sample1.rbz || exit 1
+ cmp sample2.bz sample2.rbz || exit 1
+ cmp sample1.tst sample1.ref || exit 1
+ cmp sample2.tst sample2.ref || exit 1
clean:
rm -f bzip bunzip sample*.tst sample*.rbz
-