175d154d8a
Based on PR#43789 by Kamel Derouiche. pkgsrc changes: * install documentation additionally. * exactly buildlink with zlib and openssl. upstream changes: # Version 2.7.14 (09/07/2009) * Added support for poll() to replace select() to prevent FD_EXCEEDED. * Fixed enum local simpleType restriction attribute initialization. * Fixed utf8 string parsing issue when first char in CDATA could cause problems. * Fixed UDP IPv6 multicast-unicast exchange. * Fixed gzip end-of-stream check. * Fixed wsdl2h portType operation-input/output matching to ensure operations can be safely overloaded. # Version 2.7.15 (11/07/2009) * Added soap_read_X() and soap_write_X() macros to simplify object reading and writing. * Fixed soap_new_X() functions compilation problem. * Fixed SSL session in context copy. * Fixed win32 select() in tcp_select(). * Fixed wstrings in unions. * Fixed preservation of CDATA sections in literal XML strings. # Version 2.7.16 (04/05/2010) * Added soapcpp2 option -T to generate auto-test echo server code with an example in samples/autotest based on 294 patterns for data binding W3C workgroup. * Added soapcpp2 option -b to serialize byte arrays char[] as fixed-size strings (array of xsd:byte otherwise). * Added xsd:duration serializer: import custom/duration.h. * Added gsoap header syntax '$' type qualifier to indicate special struct/class members (array length, union discriminators). * Added "colon notation" to attach XML prefixes to C/C++ names without changing the names, an alternative to the ns__ prefix notation. * Added wsdl2h options -z# for backward compatibility flags (-z1, -z2). * Added SOAP_XML_IGNORENS to optionally ignore XML namespaces. * Added WS-ReliableMessaging plugin. * Added custom xsd:duration serializer. * Added WSSE plugin soap_wsse_set_wsu_id() to simplify signing of elements (sets the wsu:Id of a given element tag name). * Improved handling of struct/class member name clashes resulting from XML schemas definitions. * Improved SOAP RPC ecoding response element tag acceptance. * Improved VxWorks compatibility. * Fixed FastCGI SOAP/XML processing with MIME attachments. * Fixed 'typedef std::string XML', for literal XML serialization problem. * Fixed a rare incorrect well-formedness error when xmlns default namespaces are absent. * Fixed a zlib compression error when obsolete crc check is used. * Fixed WS-Addressing HTTPS message relay (OpenSSL crash). # Version 2.7.17 (05/10/2010) * Added WS-Policy 1.2 and 1.5, WS-SecurityPolicy 1.2 support for wsdl2h. * Improved WS-ReliableMessaging interop and verified MT-safety. * Improved WS-Security WSSE plugin documentation. * Fixed soapcpp2 line number error reporting. * Fixed WSSE plugin soap_wsse_set_wsu_id(). * Fixed wsdl2h cycle problem with recursive xs:include and xs:import. * Fixed enum translation of enum symbols with colons. * Fixed std::wstring used as XML attribute value UTF8 encoding (internal stdsoap2 API changed).
35 lines
985 B
Makefile
35 lines
985 B
Makefile
# $NetBSD: Makefile,v 1.9 2010/09/18 12:11:36 obache Exp $
|
|
|
|
DISTNAME= gsoap_2.7.17
|
|
PKGNAME= ${DISTNAME:S/_/-/}
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=gsoap2/}
|
|
EXTRACT_SUFX= .zip
|
|
|
|
MAINTAINER= chriswareham@chriswareham.demon.co.uk
|
|
HOMEPAGE= http://gsoap2.sourceforge.net/
|
|
COMMENT= Tools for coding SOAP XML Web Services in C and C++
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
MAKE_JOBS_SAFE= no
|
|
|
|
WRKSRC= ${WRKDIR}/gsoap-2.7
|
|
GNU_CONFIGURE= yes
|
|
USE_LANGUAGES= c c++
|
|
USE_TOOLS+= yacc flex gmake pax
|
|
|
|
PKGCONFIG_OVERRIDE+= gsoap++.pc.in
|
|
PKGCONFIG_OVERRIDE+= gsoap.pc.in
|
|
PKGCONFIG_OVERRIDE+= gsoapck++.pc.in
|
|
PKGCONFIG_OVERRIDE+= gsoapck.pc.in
|
|
PKGCONFIG_OVERRIDE+= gsoapssl++.pc.in
|
|
PKGCONFIG_OVERRIDE+= gsoapssl.pc.in
|
|
|
|
INSTALLATION_DIRS= share/doc/gsoap
|
|
|
|
post-install:
|
|
cd ${WRKSRC}/gsoap/doc && pax -rw -pp * ${DESTDIR}${PREFIX}/share/doc/gsoap
|
|
|
|
.include "../../devel/zlib/buildlink3.mk"
|
|
.include "../../security/openssl/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|