aboutsummaryrefslogtreecommitdiff
path: root/archivers/libdeflate
diff options
context:
space:
mode:
authorAlexey Dokuchaev <danfe@FreeBSD.org>2019-01-17 10:21:06 +0000
committerAlexey Dokuchaev <danfe@FreeBSD.org>2019-01-17 10:21:06 +0000
commitc1518f865cdc3529f2914956635aea611bcbdf89 (patch)
treee9267c65308b7ae7cdbd73c6db3f7250eb0ce391 /archivers/libdeflate
parentc511d9d3efa5c7bd6e517e3fea7384eb745941ed (diff)
downloadports-c1518f865cdc3529f2914956635aea611bcbdf89.tar.gz
ports-c1518f865cdc3529f2914956635aea611bcbdf89.zip
Update `archivers/libdeflate' to version 1.2.
Reported by: portscout
Notes
Notes: svn path=/head/; revision=490540
Diffstat (limited to 'archivers/libdeflate')
-rw-r--r--archivers/libdeflate/Makefile3
-rw-r--r--archivers/libdeflate/distinfo6
-rw-r--r--archivers/libdeflate/files/patch-Makefile27
3 files changed, 16 insertions, 20 deletions
diff --git a/archivers/libdeflate/Makefile b/archivers/libdeflate/Makefile
index 33d0c8a8b23d..333e4244dc13 100644
--- a/archivers/libdeflate/Makefile
+++ b/archivers/libdeflate/Makefile
@@ -2,9 +2,8 @@
# $FreeBSD$
PORTNAME= libdeflate
-PORTVERSION= 1.1
+PORTVERSION= 1.2
DISTVERSIONPREFIX= v
-PORTREVISION= 1
CATEGORIES= archivers
MAINTAINER= danfe@FreeBSD.org
diff --git a/archivers/libdeflate/distinfo b/archivers/libdeflate/distinfo
index 22956ece18d3..19075c16bdbd 100644
--- a/archivers/libdeflate/distinfo
+++ b/archivers/libdeflate/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1545592408
-SHA256 (ebiggers-libdeflate-v1.1_GH0.tar.gz) = f580f28f1bf6270fdf381cc7571a56eb83269daa0e1808b86a0477ef9dd8f8b8
-SIZE (ebiggers-libdeflate-v1.1_GH0.tar.gz) = 128729
+TIMESTAMP = 1547530668
+SHA256 (ebiggers-libdeflate-v1.2_GH0.tar.gz) = d30203c3a2fae6cee70d52a59cc668740f806a4bb9eb6668930fb7de99464d90
+SIZE (ebiggers-libdeflate-v1.2_GH0.tar.gz) = 133494
diff --git a/archivers/libdeflate/files/patch-Makefile b/archivers/libdeflate/files/patch-Makefile
index 4b160170ded7..782d449bfe53 100644
--- a/archivers/libdeflate/files/patch-Makefile
+++ b/archivers/libdeflate/files/patch-Makefile
@@ -1,4 +1,4 @@
---- Makefile.orig 2018-12-23 19:13:28 UTC
+--- Makefile.orig 2019-01-15 05:37:48 UTC
+++ Makefile
@@ -21,7 +21,7 @@ cc-option = $(shell if $(CC) $(1) -c -x c /dev/null -o
1>&2 2>/dev/null; then echo $(1); fi)
@@ -9,22 +9,19 @@
-Wall -Wundef \
$(call cc-option,-Wpedantic) \
$(call cc-option,-Wdeclaration-after-statement) \
-@@ -227,12 +227,12 @@ DEFAULT_TARGETS += gunzip$(PROG_SUFFIX)
+@@ -240,11 +240,11 @@ DEFAULT_TARGETS += gunzip$(PROG_SUFFIX)
all:$(DEFAULT_TARGETS)
install:all
-- install -Dm644 -t $(DESTDIR)/usr/lib $(STATIC_LIB)
-- install -Dm755 -t $(DESTDIR)/usr/lib $(SHARED_LIB)
-- ln -sf $(SHARED_LIB) $(DESTDIR)/usr/lib/libdeflate.so
-- install -Dm644 -t $(DESTDIR)/usr/include libdeflate.h
-- install -Dm755 gzip $(DESTDIR)/usr/bin/libdeflate-gzip
-- ln -f $(DESTDIR)/usr/bin/libdeflate-gzip $(DESTDIR)/usr/bin/libdeflate-gunzip
-+ install -Dm644 $(STATIC_LIB) $(DESTDIR)$(PREFIX)/lib
-+ install -s -Dm755 $(SHARED_LIB) $(DESTDIR)$(PREFIX)/lib
-+ ln -sf $(SHARED_LIB) $(DESTDIR)$(PREFIX)/lib/libdeflate.so
-+ install -Dm644 libdeflate.h $(DESTDIR)$(PREFIX)/include
-+ install -s -Dm755 gzip $(DESTDIR)$(PREFIX)/bin/libdeflate-gzip
-+ ln -f $(DESTDIR)$(PREFIX)/bin/libdeflate-gzip $(DESTDIR)$(PREFIX)/bin/libdeflate-gunzip
+- install -Dm644 -t $(DESTDIR)$(PREFIX)/lib $(STATIC_LIB)
+- install -Dm755 -t $(DESTDIR)$(PREFIX)/lib $(SHARED_LIB)
++ install -m644 $(STATIC_LIB) $(DESTDIR)$(PREFIX)/lib
++ install -s -m755 $(SHARED_LIB) $(DESTDIR)$(PREFIX)/lib
+ ln -sf $(SHARED_LIB) $(DESTDIR)$(PREFIX)/lib/libdeflate.so
+- install -Dm644 -t $(DESTDIR)$(PREFIX)/include libdeflate.h
+- install -Dm755 gzip $(DESTDIR)$(PREFIX)/bin/libdeflate-gzip
++ install -m644 libdeflate.h $(DESTDIR)$(PREFIX)/include
++ install -s -m755 gzip $(DESTDIR)$(PREFIX)/bin/libdeflate-gzip
+ ln -f $(DESTDIR)$(PREFIX)/bin/libdeflate-gzip $(DESTDIR)$(PREFIX)/bin/libdeflate-gunzip
uninstall:
- rm -f $(DESTDIR)/usr/lib/$(STATIC_LIB) \