summaryrefslogtreecommitdiff
path: root/devel
diff options
context:
space:
mode:
authorjoerg <joerg@pkgsrc.org>2020-03-27 20:53:52 +0000
committerjoerg <joerg@pkgsrc.org>2020-03-27 20:53:52 +0000
commit5879ef66753fa79be71cd393fd3cc93c523d1972 (patch)
treea1e552b3a2f13745e3eefdfa3d9ef2909a14e35d /devel
parent15c418047c2848282d65906cb37dcba796c4be4f (diff)
downloadpkgsrc-5879ef66753fa79be71cd393fd3cc93c523d1972.tar.gz
Fix shell portability
Diffstat (limited to 'devel')
-rw-r--r--devel/gputils/distinfo3
-rw-r--r--devel/gputils/patches/patch-doc_html-help_Makefile.in22
2 files changed, 24 insertions, 1 deletions
diff --git a/devel/gputils/distinfo b/devel/gputils/distinfo
index 07ac640a651..0e451471e95 100644
--- a/devel/gputils/distinfo
+++ b/devel/gputils/distinfo
@@ -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 --git a/devel/gputils/patches/patch-doc_html-help_Makefile.in b/devel/gputils/patches/patch-doc_html-help_Makefile.in
new file mode 100644
index 00000000000..4c21dc0d0da
--- /dev/null
+++ b/devel/gputils/patches/patch-doc_html-help_Makefile.in
@@ -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)"; \