From owner-svn-ports-head@FreeBSD.ORG Sat Apr 26 02:36:53 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1A29B1EF; Sat, 26 Apr 2014 02:36:53 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EFF42164B; Sat, 26 Apr 2014 02:36:52 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s3Q2aqbb083554; Sat, 26 Apr 2014 02:36:52 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s3Q2aqcl083551; Sat, 26 Apr 2014 02:36:52 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201404260236.s3Q2aqcl083551@svn.freebsd.org> From: Martin Wilke Date: Sat, 26 Apr 2014 02:36:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r352217 - in head/net/easysoap: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Apr 2014 02:36:53 -0000 Author: miwi Date: Sat Apr 26 02:36:52 2014 New Revision: 352217 URL: http://svnweb.freebsd.org/changeset/ports/352217 QAT: https://qat.redports.org/buildarchive/r352217/ Log: - Fix build on -current - Add LICENSE - Stage support PR: 187762 Submitted by: ports fury Added: head/net/easysoap/files/patch-src__SOAPSSLContext.cpp (contents, props changed) Modified: head/net/easysoap/Makefile head/net/easysoap/pkg-plist Modified: head/net/easysoap/Makefile ============================================================================== --- head/net/easysoap/Makefile Sat Apr 26 02:35:37 2014 (r352216) +++ head/net/easysoap/Makefile Sat Apr 26 02:36:52 2014 (r352217) @@ -3,7 +3,7 @@ PORTNAME= easysoap PORTVERSION= 0.8.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= net MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/SWANSONG DISTNAME= EasySoap++-${PORTVERSION} @@ -11,22 +11,16 @@ DISTNAME= EasySoap++-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= C++ SOAP Library based on expat -LIB_DEPENDS= expat.6:${PORTSDIR}/textproc/expat2 +LICENSE= LGPL21 + +LIB_DEPENDS= libexpat.so:${PORTSDIR}/textproc/expat2 USE_OPENSSL= yes -GNU_CONFIGURE= yes -CONFIGURE_ENV= LIBS="-L${LOCALBASE}/lib" -CPPFLAGS+= -I${LOCALBASE}/include +USE_AUTOTOOLS= libtool +CONFIGURE_ENV= ac_cv_lib_stdcpp_main=no USE_LDCONFIG= yes -NO_STAGE= yes -.include - -post-patch: - @${REINPLACE_CMD} -e 's|echo aout|echo elf|g' \ - ${WRKSRC}/configure - -post-install: - @${RM} -f ${PREFIX}/lib/libeasysoap.la +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib -.include +.include Added: head/net/easysoap/files/patch-src__SOAPSSLContext.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/easysoap/files/patch-src__SOAPSSLContext.cpp Sat Apr 26 02:36:52 2014 (r352217) @@ -0,0 +1,23 @@ +--- src/SOAPSSLContext.cpp.orig ++++ src/SOAPSSLContext.cpp +@@ -143,16 +143,16 @@ + switch(methodType) + { + case SOAPSSLContext::SSL_v2: +- method = SSLv2_client_method(); ++ method = const_cast(SSLv2_client_method()); + break; + case SOAPSSLContext::SSL_v23: +- method = SSLv23_client_method(); ++ method = const_cast(SSLv23_client_method()); + break; + case SOAPSSLContext::SSL_v3: +- method = SSLv3_client_method(); ++ method = const_cast(SSLv3_client_method()); + break; + case SOAPSSLContext::TLS_v1: +- method = TLSv1_client_method(); ++ method = const_cast(TLSv1_client_method()); + break; + default: + break; Modified: head/net/easysoap/pkg-plist ============================================================================== --- head/net/easysoap/pkg-plist Sat Apr 26 02:35:37 2014 (r352216) +++ head/net/easysoap/pkg-plist Sat Apr 26 02:36:52 2014 (r352217) @@ -41,6 +41,7 @@ include/easysoap/es_config.h include/easysoap/es_msvc.h include/easysoap/es_mwerks.h lib/libeasysoap.a +lib/libeasysoap.la lib/libeasysoap.so lib/libeasysoap.so.0 @dirrm include/easysoap