diff options
author | obache <obache@pkgsrc.org> | 2014-03-28 05:51:13 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2014-03-28 05:51:13 +0000 |
commit | f9b2ac782a58ee1283f651ff27b144b111e29b7f (patch) | |
tree | 03a435bbe7ab2cf34611e518a7b6f638565521a9 | |
parent | 2f753cf4d76691e9a17f1c49eda37e5b1057c47b (diff) | |
download | pkgsrc-f9b2ac782a58ee1283f651ff27b144b111e29b7f.tar.gz |
add a workaround for install(1) from GNU coreutils, PR pkg/48685.
-rw-r--r-- | net/libupnp/distinfo | 3 | ||||
-rw-r--r-- | net/libupnp/patches/patch-upnp_sample_Makefile.in | 16 |
2 files changed, 18 insertions, 1 deletions
diff --git a/net/libupnp/distinfo b/net/libupnp/distinfo index 18d8bc813d3..44ec7afdebf 100644 --- a/net/libupnp/distinfo +++ b/net/libupnp/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.20 2013/11/21 08:07:55 obache Exp $ +$NetBSD: distinfo,v 1.21 2014/03/28 05:51:13 obache Exp $ SHA1 (libupnp-1.6.19.tar.bz2) = ee9e16ff42808521b62b7fc664fc9cba479ede88 RMD160 (libupnp-1.6.19.tar.bz2) = 9879bc7e2e31b50b36ca752c70a00b3abc6de23f Size (libupnp-1.6.19.tar.bz2) = 1213439 bytes SHA1 (patch-aa) = b3d00b441b3c0ae9aa0769223a4eaf6baa71a71c +SHA1 (patch-upnp_sample_Makefile.in) = 63675848b7289f414f3d78968aef69130addce28 diff --git a/net/libupnp/patches/patch-upnp_sample_Makefile.in b/net/libupnp/patches/patch-upnp_sample_Makefile.in new file mode 100644 index 00000000000..f6a97d12401 --- /dev/null +++ b/net/libupnp/patches/patch-upnp_sample_Makefile.in @@ -0,0 +1,16 @@ +$NetBSD: patch-upnp_sample_Makefile.in,v 1.1 2014/03/28 05:51:13 obache Exp $ + +* install(1) from GNU coreutils dislike overwrite with same contents. + https://sourceforge.net/p/pupnp/bugs/120/ + +--- upnp/sample/Makefile.in.orig 2013-11-15 16:19:11.000000000 +0000 ++++ upnp/sample/Makefile.in +@@ -628,7 +628,7 @@ clean-libtool: + -rm -rf .libs _libs + install-examplesDATA: $(examples_DATA) + @$(NORMAL_INSTALL) +- @list='$(examples_DATA)'; test -n "$(examplesdir)" || list=; \ ++ @list='$(examples_DATA:O:u)'; test -n "$(examplesdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(examplesdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(examplesdir)" || exit 1; \ |