diff options
author | tnn <tnn@pkgsrc.org> | 2016-03-14 15:37:47 +0000 |
---|---|---|
committer | tnn <tnn@pkgsrc.org> | 2016-03-14 15:37:47 +0000 |
commit | 22dce96ed1eb96e1fa5bbce24f572045f9fce9af (patch) | |
tree | ca46260687c1f9d1aa15b4a206cadca4daa1cb37 /fonts | |
parent | 02f02971e2ad3975d47c100ce923f859ef5de263 (diff) | |
download | pkgsrc-22dce96ed1eb96e1fa5bbce24f572045f9fce9af.tar.gz |
don't use msgfmt --check. It breaks with gettext 0.14.1.
Diffstat (limited to 'fonts')
-rw-r--r-- | fonts/fontforge/distinfo | 3 | ||||
-rw-r--r-- | fonts/fontforge/patches/patch-po_Makefile.in | 15 |
2 files changed, 17 insertions, 1 deletions
diff --git a/fonts/fontforge/distinfo b/fonts/fontforge/distinfo index 46792316fc6..2c831baad44 100644 --- a/fonts/fontforge/distinfo +++ b/fonts/fontforge/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.61 2016/02/07 14:09:08 adam Exp $ +$NetBSD: distinfo,v 1.62 2016/03/14 15:37:47 tnn Exp $ SHA1 (fontforge-20150824.tar.gz) = 2dd442baee9cd16efb5928bf51cc3d6b9c73d9af RMD160 (fontforge-20150824.tar.gz) = e26fca6affc11d1ea6c927751a63dae0bfeab47b @@ -8,3 +8,4 @@ SHA1 (patch-Makefile.in) = 5a7cad2f9516540048008a13a257d6c9720a22c9 SHA1 (patch-configure) = 47cd1d1ff60d40114aa08308d4e73b7c2da4716e SHA1 (patch-fontforge_python.c) = 1c1cb83feada6e8588754a728863ee92d7f9368f SHA1 (patch-fontforge_splinefont.h) = b518e61e3ba88c7fb86ebe53fb62109447791121 +SHA1 (patch-po_Makefile.in) = 75990b7371e5ce525deba693c651dbd5222e558b diff --git a/fonts/fontforge/patches/patch-po_Makefile.in b/fonts/fontforge/patches/patch-po_Makefile.in new file mode 100644 index 00000000000..3e90e21a435 --- /dev/null +++ b/fonts/fontforge/patches/patch-po_Makefile.in @@ -0,0 +1,15 @@ +$NetBSD: patch-po_Makefile.in,v 1.1 2016/03/14 15:37:47 tnn Exp $ + +--check trips up gettext 0.14. + +--- po/Makefile.in.orig 2015-08-25 09:53:09.000000000 +0000 ++++ po/Makefile.in +@@ -1396,7 +1396,7 @@ uninstall-am: uninstall-local + + + .po.mo: +- $(MSGFMT) --check --output-file=$@ $< ++ $(MSGFMT) --output-file=$@ $< + + all-local: $(MO_FILES) + |