aboutsummaryrefslogtreecommitdiff
path: root/archivers/libdeflate
diff options
context:
space:
mode:
authorAlexey Dokuchaev <danfe@FreeBSD.org>2020-11-11 04:50:01 +0000
committerAlexey Dokuchaev <danfe@FreeBSD.org>2020-11-11 04:50:01 +0000
commitc84f67d450b7751c943f2c16543ac84e32e5d41f (patch)
tree1bbcfed29e624fd40a3be09731ecf2959630e20c /archivers/libdeflate
parenta22af556389ef7e6dcde10a087e9a5ff95445748 (diff)
downloadports-c84f67d450b7751c943f2c16543ac84e32e5d41f.tar.gz
ports-c84f67d450b7751c943f2c16543ac84e32e5d41f.zip
Update to version 1.7.
Found out via: repology.org
Notes
Notes: svn path=/head/; revision=554870
Diffstat (limited to 'archivers/libdeflate')
-rw-r--r--archivers/libdeflate/Makefile2
-rw-r--r--archivers/libdeflate/distinfo6
-rw-r--r--archivers/libdeflate/files/patch-Makefile23
3 files changed, 15 insertions, 16 deletions
diff --git a/archivers/libdeflate/Makefile b/archivers/libdeflate/Makefile
index 938a081e77f8..3b67d913b2fa 100644
--- a/archivers/libdeflate/Makefile
+++ b/archivers/libdeflate/Makefile
@@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= libdeflate
-PORTVERSION= 1.6
+PORTVERSION= 1.7
DISTVERSIONPREFIX= v
CATEGORIES= archivers
diff --git a/archivers/libdeflate/distinfo b/archivers/libdeflate/distinfo
index 377001e9fa9b..7f0b53a8099b 100644
--- a/archivers/libdeflate/distinfo
+++ b/archivers/libdeflate/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1589337724
-SHA256 (ebiggers-libdeflate-v1.6_GH0.tar.gz) = 60748f3f7b22dae846bc489b22a4f1b75eab052bf403dd8e16c8279f16f5171e
-SIZE (ebiggers-libdeflate-v1.6_GH0.tar.gz) = 139031
+TIMESTAMP = 1604978990
+SHA256 (ebiggers-libdeflate-v1.7_GH0.tar.gz) = a5e6a0a9ab69f40f0f59332106532ca76918977a974e7004977a9498e3f11350
+SIZE (ebiggers-libdeflate-v1.7_GH0.tar.gz) = 144143
diff --git a/archivers/libdeflate/files/patch-Makefile b/archivers/libdeflate/files/patch-Makefile
index 6aa5266a2f35..6d26ef749b73 100644
--- a/archivers/libdeflate/files/patch-Makefile
+++ b/archivers/libdeflate/files/patch-Makefile
@@ -1,24 +1,23 @@
---- Makefile.orig 2019-08-12 00:36:38 UTC
+--- Makefile.orig 2020-11-10 03:29:50 UTC
+++ Makefile
-@@ -41,7 +41,7 @@ cc-option = $(shell if $(CC) $(1) -c -x c /dev/null -o
+@@ -48,7 +48,7 @@ cc-option = $(shell if $(CC) $(1) -c -x c /dev/null -o
1>&2 2>/dev/null; then echo $(1); fi)
override CFLAGS := \
-- -O2 -fomit-frame-pointer $(CFLAGS) -std=c99 -I. \
-+ $(CFLAGS) -std=c99 -I. \
- -Wall -Wundef \
+- -O2 -fomit-frame-pointer -std=c99 -I. -Wall -Wundef \
++ -std=c99 -I. -Wall -Wundef \
$(call cc-option,-Wpedantic) \
$(call cc-option,-Wdeclaration-after-statement) \
-@@ -267,10 +267,10 @@ all:$(DEFAULT_TARGETS)
+ $(call cc-option,-Wmissing-prototypes) \
+@@ -305,9 +305,9 @@ all:$(DEFAULT_TARGETS)
install:all
install -d $(DESTDIR)$(LIBDIR) $(DESTDIR)$(INCDIR) $(DESTDIR)$(BINDIR)
install -m644 $(STATIC_LIB) $(DESTDIR)$(LIBDIR)
- install -m755 $(SHARED_LIB) $(DESTDIR)$(LIBDIR)
+ install -s -m755 $(SHARED_LIB) $(DESTDIR)$(LIBDIR)
- ln -sf $(SHARED_LIB) $(DESTDIR)$(LIBDIR)/libdeflate.so
install -m644 libdeflate.h $(DESTDIR)$(INCDIR)
-- install -m755 gzip $(DESTDIR)$(BINDIR)/libdeflate-gzip
-+ install -s -m755 gzip $(DESTDIR)$(BINDIR)/libdeflate-gzip
- ln -f $(DESTDIR)$(BINDIR)/libdeflate-gzip $(DESTDIR)$(BINDIR)/libdeflate-gunzip
-
- uninstall:
+- install -m755 gzip$(PROG_SUFFIX) \
++ install -s -m755 gzip$(PROG_SUFFIX) \
+ $(DESTDIR)$(BINDIR)/libdeflate-gzip$(PROG_SUFFIX)
+ ln -f $(DESTDIR)$(BINDIR)/libdeflate-gzip$(PROG_SUFFIX) \
+ $(DESTDIR)$(BINDIR)/libdeflate-gunzip$(PROG_SUFFIX)