summaryrefslogtreecommitdiff
path: root/textproc/xmlpp
diff options
context:
space:
mode:
Diffstat (limited to 'textproc/xmlpp')
-rw-r--r--textproc/xmlpp/Makefile35
-rw-r--r--textproc/xmlpp/distinfo3
-rw-r--r--textproc/xmlpp/files/patch-src::xmlcommon.h11
-rw-r--r--textproc/xmlpp/files/patch-src::xmlpp.cpp15
-rw-r--r--textproc/xmlpp/files/patch-src::xmlpp.h11
-rw-r--r--textproc/xmlpp/files/patch-src::xmltokenizer.cpp11
-rw-r--r--textproc/xmlpp/files/patch-test::nodetest.cpp10
-rw-r--r--textproc/xmlpp/pkg-descr3
-rw-r--r--textproc/xmlpp/pkg-plist11
9 files changed, 0 insertions, 110 deletions
diff --git a/textproc/xmlpp/Makefile b/textproc/xmlpp/Makefile
deleted file mode 100644
index e9069d665bca..000000000000
--- a/textproc/xmlpp/Makefile
+++ /dev/null
@@ -1,35 +0,0 @@
-# ex:ts=8
-# New ports collection makefile for: xmlpp
-# Date created: May 22, 2001
-# Whom: ijliao
-#
-# $FreeBSD$
-#
-
-PORTNAME= xmlpp
-PORTVERSION= 0.7a
-PORTREVISION= 2
-CATEGORIES= textproc
-MASTER_SITES= http://0xff.at/download/gpl/
-
-MAINTAINER= ports@FreeBSD.org
-COMMENT= XML Parser and Validator
-
-DEPRECATED= Upstream disapear and distfile is no more available
-EXPIRATION_DATE= 2011-05-01
-
-FETCH_CMD= /usr/bin/fetch
-USE_AUTOTOOLS= libtool
-USE_GMAKE= yes
-GNU_CONFIGURE= yes
-
-pre-patch:
- @${FIND} ${WRKSRC} -name "Makefile.in" | ${XARGS} ${REINPLACE_CMD} -e \
- 's|/usr/local/share|$$(datadir)|g'
- @${RM} ${WRKSRC}/config.cache
-
-post-patch:
- @${REINPLACE_CMD} -e 's|$${CONFIG_SHELL-/bin/sh} $$ac_aux_dir|$$ac_aux_dir|' \
- ${WRKSRC}/configure
-
-.include <bsd.port.mk>
diff --git a/textproc/xmlpp/distinfo b/textproc/xmlpp/distinfo
deleted file mode 100644
index 2c1b32e76249..000000000000
--- a/textproc/xmlpp/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 (xmlpp-0.7a.tar.gz) = ebd71ff11140cd10e6421fdfad27f744
-SHA256 (xmlpp-0.7a.tar.gz) = b5995435bf957da1ad97182a86c52406dc82aca94d0e23d9eb21c1d43773f1f0
-SIZE (xmlpp-0.7a.tar.gz) = 350830
diff --git a/textproc/xmlpp/files/patch-src::xmlcommon.h b/textproc/xmlpp/files/patch-src::xmlcommon.h
deleted file mode 100644
index 0a86e5acf3ff..000000000000
--- a/textproc/xmlpp/files/patch-src::xmlcommon.h
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/xmlcommon.h.orig Wed Jul 23 04:10:04 2003
-+++ src/xmlcommon.h Wed Jul 23 04:12:03 2003
-@@ -20,6 +20,8 @@
-
- //! dummy define
- #define XMLPP_API
-+
-+using std::string;
-
- //! handle to a tagname string in a tagname map
- typedef int xmltagnamehandle;
diff --git a/textproc/xmlpp/files/patch-src::xmlpp.cpp b/textproc/xmlpp/files/patch-src::xmlpp.cpp
deleted file mode 100644
index 366a1d4cbbb8..000000000000
--- a/textproc/xmlpp/files/patch-src::xmlpp.cpp
+++ /dev/null
@@ -1,15 +0,0 @@
---- ./src/xmlpp.cpp.orig Wed Jul 23 04:12:52 2003
-+++ ./src/xmlpp.cpp Wed Jul 23 04:13:52 2003
-@@ -21,6 +21,12 @@
- //debug
- #include <iostream>
-
-+using std::cout;
-+using std::cerr;
-+using std::endl;
-+using std::ifstream;
-+using std::ofstream;
-+
- namespace xmlpp {
-
- // internal use for saving
diff --git a/textproc/xmlpp/files/patch-src::xmlpp.h b/textproc/xmlpp/files/patch-src::xmlpp.h
deleted file mode 100644
index 3c6e883b76c9..000000000000
--- a/textproc/xmlpp/files/patch-src::xmlpp.h
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/xmlpp.h.orig Wed May 30 19:54:52 2007
-+++ src/xmlpp.h Wed May 30 19:55:11 2007
-@@ -133,7 +133,7 @@
- XMLNode & operator =(const XMLNodePtr n);
-
- //! returns or sets the node name
-- string XMLNode::name(string _name="");
-+ string name(string _name="");
- //! returns or sets the type of the node
- xmlnodetype type(xmlnodetype ntype=xml_nt_dummy);
- //! ireturns or sets cdata string
diff --git a/textproc/xmlpp/files/patch-src::xmltokenizer.cpp b/textproc/xmlpp/files/patch-src::xmltokenizer.cpp
deleted file mode 100644
index ced263bff89d..000000000000
--- a/textproc/xmlpp/files/patch-src::xmltokenizer.cpp
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/xmltokenizer.cpp.orig Wed Jul 23 04:14:53 2003
-+++ src/xmltokenizer.cpp Wed Jul 23 04:29:18 2003
-@@ -15,7 +15,7 @@
- // needed includes
- #include "xmlpp.h"
- #include "xmltokenizer.h"
--
-+#include <iostream>
-
- // namespace declaration
- namespace xmlpp {
diff --git a/textproc/xmlpp/files/patch-test::nodetest.cpp b/textproc/xmlpp/files/patch-test::nodetest.cpp
deleted file mode 100644
index 4d76d88a3f34..000000000000
--- a/textproc/xmlpp/files/patch-test::nodetest.cpp
+++ /dev/null
@@ -1,10 +0,0 @@
---- test/nodetest.cpp.orig Wed Jul 23 04:18:02 2003
-+++ test/nodetest.cpp Wed Jul 23 04:19:01 2003
-@@ -5,6 +5,7 @@
- */
-
- #include <fstream>
-+#include <iostream>
- #include "xmlpp.h"
-
- using namespace xmlpp;
diff --git a/textproc/xmlpp/pkg-descr b/textproc/xmlpp/pkg-descr
deleted file mode 100644
index c977de064e27..000000000000
--- a/textproc/xmlpp/pkg-descr
+++ /dev/null
@@ -1,3 +0,0 @@
-xmlpp is an XML Parser and Validator
-
-WWW: http://www.0xff.at/sourceware.xml
diff --git a/textproc/xmlpp/pkg-plist b/textproc/xmlpp/pkg-plist
deleted file mode 100644
index 1fc6b23d8919..000000000000
--- a/textproc/xmlpp/pkg-plist
+++ /dev/null
@@ -1,11 +0,0 @@
-bin/xmlpp-config
-include/xmlcommon.h
-include/xmlhelpers.h
-include/xmlparser.h
-include/xmlpp.h
-include/xmltokenizer.h
-lib/libxmlpp.a
-lib/libxmlpp.la
-lib/libxmlpp.so
-lib/libxmlpp.so.0
-share/aclocal/libxmlpp.m4