Sun Feb 16 23:05:33 2014 UTC ()
Import tinyxml-2.6.2 as textproc/tinyxml, packaged for wip by
anthony_mallet.

TinyXML parses an XML document, and builds from that a Document Object Model
(DOM) that can be read, modified, and saved.

TinyXML uses a Document Object Model (DOM), meaning the XML data is parsed into
a C++ objects that can be browsed and manipulated, and then written to disk or
another output stream. You can also construct an XML document from scratch with
C++ objects and write this to disk or another output stream.

TinyXML doesn't parse or use DTDs (Document Type Definitions) or XSLs
(eXtensible Stylesheet Language.) There are other parsers out there (check out
www.sourceforge.org, search for XML) that are much more fully featured. But
they are also much bigger, take longer to set up in your project, have a higher
learning curve, and often have a more restrictive license. If you are working
with browsers or have more complete XML needs, TinyXML is not the parser for
you.


(wiz)
diff -r0 -r1.1 pkgsrc/textproc/tinyxml/DESCR
diff -r0 -r1.1 pkgsrc/textproc/tinyxml/Makefile
diff -r0 -r1.1 pkgsrc/textproc/tinyxml/PLIST
diff -r0 -r1.1 pkgsrc/textproc/tinyxml/buildlink3.mk
diff -r0 -r1.1 pkgsrc/textproc/tinyxml/distinfo
diff -r0 -r1.1 pkgsrc/textproc/tinyxml/files/Makefile
diff -r0 -r1.1 pkgsrc/textproc/tinyxml/patches/patch-tinyxml.h

File Added: pkgsrc/textproc/tinyxml/DESCR
TinyXML parses an XML document, and builds from that a Document Object Model
(DOM) that can be read, modified, and saved.

TinyXML uses a Document Object Model (DOM), meaning the XML data is parsed into
a C++ objects that can be browsed and manipulated, and then written to disk or
another output stream. You can also construct an XML document from scratch with
C++ objects and write this to disk or another output stream.

TinyXML doesn't parse or use DTDs (Document Type Definitions) or XSLs
(eXtensible Stylesheet Language.) There are other parsers out there (check out
www.sourceforge.org, search for XML) that are much more fully featured. But
they are also much bigger, take longer to set up in your project, have a higher
learning curve, and often have a more restrictive license. If you are working
with browsers or have more complete XML needs, TinyXML is not the parser for
you.

File Added: pkgsrc/textproc/tinyxml/Makefile
# $NetBSD: Makefile,v 1.1 2014/02/16 23:05:33 wiz Exp $

PKGVERSION=		2.6.2
DISTNAME=		tinyxml_${PKGVERSION:S/./_/g}
PKGNAME=		tinyxml-${PKGVERSION}
CATEGORIES=		textproc devel lang
MASTER_SITES=		${MASTER_SITE_SOURCEFORGE:=tinyxml/}
EXTRACT_SUFX=		.zip

MAINTAINER=		pkgsrc@NetBSD.org
HOMEPAGE=		http://www.grinninglizard.com/tinyxml/
COMMENT=		Simple, small, C++ XML parser
LICENSE=		zlib

USE_LANGUAGES+=		c++
WRKSRC=			${WRKDIR}/${PKGBASE}
MAKE_ENV+=		SHLIB_MAJOR=2 SHLIB_MINOR=6 SHLIB_TEENY=2
MAKE_ENV+=              ${BSD_MAKE_ENV}

INSTALL_TARGET=		install includes
INSTALLATION_DIRS+=	include lib

post-extract:
	${CP} ${FILESDIR}/Makefile ${WRKSRC}/Makefile

.include "../../mk/bsd.pkg.mk"

File Added: pkgsrc/textproc/tinyxml/PLIST
@comment $NetBSD: PLIST,v 1.1 2014/02/16 23:05:33 wiz Exp $
include/tinyxml.h
lib/libtinyxml.a
lib/libtinyxml.so
lib/libtinyxml.so.2
lib/libtinyxml.so.${PKGVERSION}

File Added: pkgsrc/textproc/tinyxml/buildlink3.mk
# $NetBSD: buildlink3.mk,v 1.1 2014/02/16 23:05:33 wiz Exp $

BUILDLINK_TREE+=	tinyxml

.if !defined(TINYXML_BUILDLINK3_MK)
TINYXML_BUILDLINK3_MK:=

BUILDLINK_API_DEPENDS.tinyxml+=	tinyxml>=2.6.2
BUILDLINK_PKGSRCDIR.tinyxml?=	../../textproc/tinyxml
.endif	# TINYXML_BUILDLINK3_MK

BUILDLINK_TREE+=	-tinyxml

File Added: pkgsrc/textproc/tinyxml/distinfo
$NetBSD: distinfo,v 1.1 2014/02/16 23:05:33 wiz Exp $

SHA1 (tinyxml_2_6_2.zip) = a425a22ff331dafa570b2a508a37a85a4eaa4127
RMD160 (tinyxml_2_6_2.zip) = 162880af0cb1a284268cc18ec582f51c55120a76
Size (tinyxml_2_6_2.zip) = 290881 bytes
SHA1 (patch-tinyxml.h) = aa78b0b8764e460cdab43530ad951ccbe24feef9

File Added: pkgsrc/textproc/tinyxml/files/Attic/Makefile
# $NetBSD: Makefile,v 1.1 2014/02/16 23:05:33 wiz Exp $
#
LIBISCXX=yes
MKSTATICLIB=yes
MKDEBUGLIB=no
MKPICINSTALL=no
MKPROFILE=no

LIB =	tinyxml
SRCS=	tinystr.cpp tinyxmlerror.cpp tinyxml.cpp tinyxmlparser.cpp
INCS=	tinyxml.h

LIBDIR=		${PREFIX}/lib
INCSDIR=	${PREFIX}/include

.include <bsd.lib.mk>

File Added: pkgsrc/textproc/tinyxml/patches/patch-tinyxml.h
$NetBSD: patch-tinyxml.h,v 1.1 2014/02/16 23:05:33 wiz Exp $

Force the use of STL in tinyxml.h.

--- tinyxml.h~	2011-05-15 04:24:57.000000000 +0200
+++ tinyxml.h	2013-06-20 23:42:16.000000000 +0200
@@ -26,6 +26,10 @@
 #ifndef TINYXML_INCLUDED
 #define TINYXML_INCLUDED
 
+#ifndef TIXML_USE_STL
+#	define TIXML_USE_STL
+#endif
+
 #ifdef _MSC_VER
 #pragma warning( push )
 #pragma warning( disable : 4530 )