diff options
author | Alexander Nedotsukov <bland@FreeBSD.org> | 2004-02-19 15:06:53 +0000 |
---|---|---|
committer | Alexander Nedotsukov <bland@FreeBSD.org> | 2004-02-19 15:06:53 +0000 |
commit | 5e8a7e0ef2e4b0db0941f46965d938d032e54659 (patch) | |
tree | d032e813fcaaf2799a0c4b0ff7733f102f8a1333 /textproc/libxml++ | |
parent | b2544472891c84c857a2bd99f784774cd8d6c54d (diff) | |
download | ports-5e8a7e0ef2e4b0db0941f46965d938d032e54659.tar.gz ports-5e8a7e0ef2e4b0db0941f46965d938d032e54659.zip |
Notes
Diffstat (limited to 'textproc/libxml++')
-rw-r--r-- | textproc/libxml++/Makefile | 7 | ||||
-rw-r--r-- | textproc/libxml++/distinfo | 3 | ||||
-rw-r--r-- | textproc/libxml++/files/patch-libxml++::parsers::parser.cc | 10 |
3 files changed, 16 insertions, 4 deletions
diff --git a/textproc/libxml++/Makefile b/textproc/libxml++/Makefile index 056c1e1149ec..5c16f30e3937 100644 --- a/textproc/libxml++/Makefile +++ b/textproc/libxml++/Makefile @@ -7,7 +7,7 @@ # PORTNAME= libxml++ -PORTVERSION= 1.0.1 +PORTVERSION= 1.0.2 CATEGORIES= textproc MASTER_SITES= ${MASTER_SITE_GNOME} MASTER_SITE_SUBDIR= sources/${PORTNAME}/${PORTVERSION:R} @@ -25,8 +25,9 @@ INSTALLS_SHLIB= yes .if ${OSVERSION} < 500000 post-patch: @${FIND} ${WRKSRC}/libxml++ -name *.h \ - | ${XARGS} ${REINPLACE_CMD} -e \ - 's|<ostream>|<iostream>|' + | ${XARGS} ${REINPLACE_CMD} \ + -e 's|<istream>|<iostream>|' \ + -e 's|<ostream>|<iostream>|' .endif diff --git a/textproc/libxml++/distinfo b/textproc/libxml++/distinfo index 11a649db6d48..a009165ee792 100644 --- a/textproc/libxml++/distinfo +++ b/textproc/libxml++/distinfo @@ -1 +1,2 @@ -MD5 (libxml++-1.0.1.tar.gz) = 3be186a8e58e5211bb1efe16d26a4d7f +MD5 (libxml++-1.0.2.tar.gz) = b2023c4706d37b8e7d264467566cf530 +SIZE (libxml++-1.0.2.tar.gz) = 387831 diff --git a/textproc/libxml++/files/patch-libxml++::parsers::parser.cc b/textproc/libxml++/files/patch-libxml++::parsers::parser.cc new file mode 100644 index 000000000000..c77f306e95b6 --- /dev/null +++ b/textproc/libxml++/files/patch-libxml++::parsers::parser.cc @@ -0,0 +1,10 @@ +--- libxml++/parsers/parser.cc.orig Sat Feb 7 02:11:35 2004 ++++ libxml++/parsers/parser.cc Fri Feb 20 00:02:22 2004 +@@ -9,6 +9,7 @@ + #include <libxml/parser.h> + + #include <cstdarg> //For va_list. ++#include <memory> + + namespace xmlpp { + |