diff options
author | dholland <dholland> | 2010-05-31 23:20:46 +0000 |
---|---|---|
committer | dholland <dholland> | 2010-05-31 23:20:46 +0000 |
commit | abbe5d14bbe510e12b131e8591df48efa9656368 (patch) | |
tree | 35a9858640365e3a3668d57bb7cb0c867453f25d /graphics/exiv2 | |
parent | e04edf5f94243b5c1fb35e91273f2fb1806d8e19 (diff) | |
download | pkgsrc-abbe5d14bbe510e12b131e8591df48efa9656368.tar.gz |
Fix build on Solaris; patch from the KDE-Solaris project via Joern
Clausen in PR 37720.
Diffstat (limited to 'graphics/exiv2')
-rw-r--r-- | graphics/exiv2/distinfo | 3 | ||||
-rw-r--r-- | graphics/exiv2/patches/patch-aa | 15 |
2 files changed, 17 insertions, 1 deletions
diff --git a/graphics/exiv2/distinfo b/graphics/exiv2/distinfo index 5edb39f2a78..07116c7b071 100644 --- a/graphics/exiv2/distinfo +++ b/graphics/exiv2/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.16 2010/01/27 12:40:48 adam Exp $ +$NetBSD: distinfo,v 1.17 2010/05/31 23:20:46 dholland Exp $ SHA1 (exiv2-0.19.tar.gz) = 4ab8d830094f2842bc286d8e7fb03100ca7f07b1 RMD160 (exiv2-0.19.tar.gz) = 263267fb75341a6eb60e5201b88bfea11ef18eea Size (exiv2-0.19.tar.gz) = 2658781 bytes +SHA1 (patch-aa) = 05a70bc0ea212fd463074ecc40f5840574a2cbad diff --git a/graphics/exiv2/patches/patch-aa b/graphics/exiv2/patches/patch-aa new file mode 100644 index 00000000000..7c79dc351b6 --- /dev/null +++ b/graphics/exiv2/patches/patch-aa @@ -0,0 +1,15 @@ +$NetBSD: patch-aa,v 1.3 2010/05/31 23:20:46 dholland Exp $ + +Fix build on Solaris, from PR 37720. + +--- config/config.mk.in~ 2009-11-27 11:39:59.000000000 +0000 ++++ config/config.mk.in +@@ -133,7 +133,7 @@ ifdef DEP_TRACKING + + # Dependency files post-process commands + POSTDEPEND = if test ! -d $(DEPDIR); then mkdir $(DEPDIR); fi; \ +- if test -e $*.d; then cp $*.d $(DEPDIR)/$*.d; \ ++ if test -f $*.d; then cp $*.d $(DEPDIR)/$*.d; \ + sed -e 's/^\#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \ + -e '/^$$/ d' -e 's/$$/ :/' < $*.d >> $(DEPDIR)/$*.d; \ + $(RM) $*.d; fi |