pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/devel/gputils Fix shell portability



details:   https://anonhg.NetBSD.org/pkgsrc/rev/0b395e5c3eba
branches:  trunk
changeset: 414461:0b395e5c3eba
user:      joerg <joerg%pkgsrc.org@localhost>
date:      Fri Mar 27 20:53:52 2020 +0000

description:
Fix shell portability

diffstat:

 devel/gputils/distinfo                                |   3 +-
 devel/gputils/patches/patch-doc_html-help_Makefile.in |  22 +++++++++++++++++++
 2 files changed, 24 insertions(+), 1 deletions(-)

diffs (41 lines):

diff -r 478b013d63e0 -r 0b395e5c3eba devel/gputils/distinfo
--- a/devel/gputils/distinfo    Fri Mar 27 20:53:32 2020 +0000
+++ b/devel/gputils/distinfo    Fri Mar 27 20:53:52 2020 +0000
@@ -1,9 +1,10 @@
-$NetBSD: distinfo,v 1.13 2018/06/25 14:01:45 bouyer Exp $
+$NetBSD: distinfo,v 1.14 2020/03/27 20:53:52 joerg Exp $
 
 SHA1 (gputils-1.5.0.tar.gz) = c78f2835c7b9f7cd29e7f5d27607568c2021e81e
 RMD160 (gputils-1.5.0.tar.gz) = 0e7f0c3dc388cf7ee8a67dcd2e93a57b9a6e8e57
 SHA512 (gputils-1.5.0.tar.gz) = fc74e92ddfe2c9c7ee272a712a411bf01790358c310afc9a802f503902675fa4717410354bf8791f64da45b63f0b1f562b55fdd7127d3989f4295ebe5f80b645
 Size (gputils-1.5.0.tar.gz) = 13155377 bytes
+SHA1 (patch-doc_html-help_Makefile.in) = a75a8f41410a3247f58a19c75de1a64f213bbc41
 SHA1 (patch-libgputils_gparchive.c) = 52a00eff09ead81926263e84163ab9abf89279d3
 SHA1 (patch-libgputils_gpreadobj.c) = 561d9c37bcd6ff4a2e3bfea5504817a057c5e38b
 SHA1 (patch-libgputils_gpsystem.c) = 42e406defa88de95ab9aafb5affb09a6cb8a01cf
diff -r 478b013d63e0 -r 0b395e5c3eba devel/gputils/patches/patch-doc_html-help_Makefile.in
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/gputils/patches/patch-doc_html-help_Makefile.in     Fri Mar 27 20:53:52 2020 +0000
@@ -0,0 +1,22 @@
+$NetBSD: patch-doc_html-help_Makefile.in,v 1.1 2020/03/27 20:53:53 joerg Exp $
+
+--- doc/html-help/Makefile.in.orig     2020-03-27 13:48:59.416360163 +0000
++++ doc/html-help/Makefile.in
+@@ -429,7 +429,7 @@ uninstall-am:
+ 
+ 
+ html-doc:
+-      if [ "$(ENABLE_HTML_DOC)" == "yes" ]; then \
++      if [ "$(ENABLE_HTML_DOC)" = "yes" ]; then \
+         if [ ! -e $(DEFAULT_MPLABX_PATH)/mpasmx/8bit_device.info ]; then \
+           @echo "Can't find mplabx installation; HTML documentation will not be built."; \
+         else \
+@@ -440,7 +440,7 @@ html-doc:
+ install: install-html
+ 
+ install-html:
+-      if [ "$(ENABLE_HTML_DOC)" == "yes" ]; then \
++      if [ "$(ENABLE_HTML_DOC)" = "yes" ]; then \
+         if [ -n "$$(ls *.html 2>/dev/null)" -a -n "$$(ls *.css 2>/dev/null)" ]; then \
+           $(install_sh) -d "$(DESTDIR)$(pkgdatadir)"; \
+           $(install_sh) -c -m 644 *.css *.html "$(DESTDIR)$(pkgdatadir)"; \



Home | Main Index | Thread Index | Old Index