diff options
author | Li-Wen Hsu <lwhsu@FreeBSD.org> | 2008-05-07 04:43:35 +0000 |
---|---|---|
committer | Li-Wen Hsu <lwhsu@FreeBSD.org> | 2008-05-07 04:43:35 +0000 |
commit | a07f700bb5c04bfd35de0b0ef16720f2a4c27374 (patch) | |
tree | 920b3d04e4cfc8d0529eb50067038721e3bafce2 /math/py-matplotlib/files/patch-lib__matplotlib__afm.py | |
parent | - fix Bundle install (diff) |
- Update to 0.91.2 [1]
- portlint fix
- Respect NOPORTEXAMPLES
PR: ports/121893
Submitted by: Geoffrey Mainland <mainland AT apeiron.net> (maintainer)
Notes
Notes:
svn path=/head/; revision=212771
Diffstat (limited to 'math/py-matplotlib/files/patch-lib__matplotlib__afm.py')
-rw-r--r-- | math/py-matplotlib/files/patch-lib__matplotlib__afm.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/math/py-matplotlib/files/patch-lib__matplotlib__afm.py b/math/py-matplotlib/files/patch-lib__matplotlib__afm.py new file mode 100644 index 000000000000..d82ba9daed08 --- /dev/null +++ b/math/py-matplotlib/files/patch-lib__matplotlib__afm.py @@ -0,0 +1,11 @@ +--- lib/matplotlib/afm.py.orig 2008-02-22 14:38:41.000000000 -0500 ++++ lib/matplotlib/afm.py 2008-02-22 14:39:40.000000000 -0500 +@@ -164,7 +164,7 @@ + num = _to_int(vals[0].split()[1]) + wx = _to_float(vals[1].split()[1]) + name = vals[2].split()[1] +- bbox = _to_list_of_ints(vals[3][2:]) ++ bbox = _to_list_of_floats(vals[3][2:]) + # Workaround: If the character name is 'Euro', give it the corresponding + # character code, according to WinAnsiEncoding (see PDF Reference). + if name == 'Euro': |