diff options
author | jmmv <jmmv@pkgsrc.org> | 2007-07-16 13:24:31 +0000 |
---|---|---|
committer | jmmv <jmmv@pkgsrc.org> | 2007-07-16 13:24:31 +0000 |
commit | 7046d5240a0e4f0b625f80efc14e43d7d02d9fc3 (patch) | |
tree | 7603758f1992c331b779f5f1203c339261637734 /textproc/py-libxml2 | |
parent | 1e9a4230a46a22408ae69348390536f850c25e4a (diff) | |
download | pkgsrc-7046d5240a0e4f0b625f80efc14e43d7d02d9fc3.tar.gz |
Fix build under Mac OS X (and supposedly in any other which provides
libxml2 natively).
Diffstat (limited to 'textproc/py-libxml2')
-rw-r--r-- | textproc/py-libxml2/distinfo | 3 | ||||
-rw-r--r-- | textproc/py-libxml2/patches/patch-ab | 16 |
2 files changed, 18 insertions, 1 deletions
diff --git a/textproc/py-libxml2/distinfo b/textproc/py-libxml2/distinfo index e048d447780..0ffe0b32d09 100644 --- a/textproc/py-libxml2/distinfo +++ b/textproc/py-libxml2/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.17 2007/07/09 14:53:23 drochner Exp $ +$NetBSD: distinfo,v 1.18 2007/07/16 13:24:31 jmmv Exp $ SHA1 (libxml2-2.6.29.tar.gz) = 2355f2455aa6408244b7e2c444befeb0e93e37d5 RMD160 (libxml2-2.6.29.tar.gz) = 489b394fc7dd9c23618a88ba3ddcecf71caf3874 Size (libxml2-2.6.29.tar.gz) = 4719760 bytes SHA1 (patch-aa) = 54ce6f91dd29144f22247d15093d6d273f5f433b +SHA1 (patch-ab) = 1ae347ac9e8ad8fd6f4f2cfb1017488d8a52ed1f diff --git a/textproc/py-libxml2/patches/patch-ab b/textproc/py-libxml2/patches/patch-ab new file mode 100644 index 00000000000..f28b81edfef --- /dev/null +++ b/textproc/py-libxml2/patches/patch-ab @@ -0,0 +1,16 @@ +$NetBSD: patch-ab,v 1.1 2007/07/16 13:24:32 jmmv Exp $ + +--- setup.py.orig 2007-06-12 18:20:40.000000000 +0200 ++++ setup.py +@@ -56,10 +56,10 @@ else: + # - iconv.h + # - libxslt/xsltconfig.h + includes_dir = [ ++os.path.join(ROOT,'include'), + "/usr/include", + "/usr/local/include", + "/opt/include", +-os.path.join(ROOT,'include'), + HOME + ]; + |