diff options
author | wiz <wiz@pkgsrc.org> | 2020-03-12 17:21:20 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2020-03-12 17:21:20 +0000 |
commit | 6c52abef03599e84d2ca3541491b25bf95ad4e8f (patch) | |
tree | 531ee4c8714fc54a1065c9be58f6823ffaf12dbd /multimedia | |
parent | 228322b1b03beb6fb6ead0f59337d2f4eb0c6a9a (diff) | |
download | pkgsrc-6c52abef03599e84d2ca3541491b25bf95ad4e8f.tar.gz |
gstreamer1: fix unportable test(1) operator
Diffstat (limited to 'multimedia')
-rw-r--r-- | multimedia/gstreamer1/distinfo | 3 | ||||
-rw-r--r-- | multimedia/gstreamer1/patches/patch-Makefile.in | 15 |
2 files changed, 17 insertions, 1 deletions
diff --git a/multimedia/gstreamer1/distinfo b/multimedia/gstreamer1/distinfo index 68f9d96da2e..68684201460 100644 --- a/multimedia/gstreamer1/distinfo +++ b/multimedia/gstreamer1/distinfo @@ -1,8 +1,9 @@ -$NetBSD: distinfo,v 1.38 2020/01/10 12:47:07 wiz Exp $ +$NetBSD: distinfo,v 1.39 2020/03/12 17:21:20 wiz Exp $ SHA1 (gstreamer-1.16.2.tar.xz) = 4841671beffc64521ba48f79a852ff0149047199 RMD160 (gstreamer-1.16.2.tar.xz) = 9964bdddc98008a967b165e84011267bfce0252d SHA512 (gstreamer-1.16.2.tar.xz) = a8dcdb452a88f411676e54016fcf83149068b2f0b60422bebdbc81220078c61c415512006010ba0299df81ffb59853695c3ce00580f8fc46a079f6aaaa42609f Size (gstreamer-1.16.2.tar.xz) = 3328600 bytes +SHA1 (patch-Makefile.in) = 0b20408779ae96c42e9b30bac54760f93fb18dc4 SHA1 (patch-libs_gst_helpers_Makefile.in) = abd2d08c3350ec714c2b986a76e1dc7000b1ea01 SHA1 (patch-plugins_tracers_gstrusage.c) = 36ab41bc208cd9146bed3208f56eb332f2535591 diff --git a/multimedia/gstreamer1/patches/patch-Makefile.in b/multimedia/gstreamer1/patches/patch-Makefile.in new file mode 100644 index 00000000000..e33cbee27f1 --- /dev/null +++ b/multimedia/gstreamer1/patches/patch-Makefile.in @@ -0,0 +1,15 @@ +$NetBSD: patch-Makefile.in,v 1.1 2020/03/12 17:21:20 wiz Exp $ + +Fix unportable test(1) operator. + +--- Makefile.in.orig 2020-03-12 17:20:13.784630037 +0000 ++++ Makefile.in +@@ -1213,7 +1213,7 @@ download-po: $(top_srcdir)/common/downlo + for f in po/*.po; do \ + num_changed=`git diff $$f | grep -e '^[+-][^+-]' | wc -l`; \ + num_date=`git diff $$f | grep -e '^[+-][^+-]' | grep POT-Creation-Date | wc -l`; \ +- if [ $num_date == $num_changed ]; then \ ++ if [ $num_date = $num_changed ]; then \ + git checkout $$f; \ + fi; \ + done |