diff options
author | bland <bland@FreeBSD.org> | 2004-02-19 15:06:53 +0000 |
---|---|---|
committer | bland <bland@FreeBSD.org> | 2004-02-19 15:06:53 +0000 |
commit | ed26fcb495aea18364d4167e5b824debbc99e197 (patch) | |
tree | 319391e241e6a88d0d5e334fb63e48806427a7f4 /textproc/libxml++ | |
parent | 74893b48592a2e41e9ceca509b63ff58b9333861 (diff) | |
download | FreeBSD-ports-ed26fcb495aea18364d4167e5b824debbc99e197.zip FreeBSD-ports-ed26fcb495aea18364d4167e5b824debbc99e197.tar.gz |
Update to 1.0.2
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 056c1e1..5c16f30 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 11a649d..a009165 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 0000000..c77f306e9 --- /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 { + |