From owner-svn-ports-all@FreeBSD.ORG Mon Jul 7 22:51:30 2014 Return-Path: Delivered-To: svn-ports-all@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 A6E70874; Mon, 7 Jul 2014 22:51:30 +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 92CC32A19; Mon, 7 Jul 2014 22:51:30 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s67MpUrH054532; Mon, 7 Jul 2014 22:51:30 GMT (envelope-from amdmi3@svn.freebsd.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s67MpTdr054521; Mon, 7 Jul 2014 22:51:29 GMT (envelope-from amdmi3@svn.freebsd.org) Message-Id: <201407072251.s67MpTdr054521@svn.freebsd.org> From: Dmitry Marakasov Date: Mon, 7 Jul 2014 22:51:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r361143 - in head/finance/openhbci: . 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-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Jul 2014 22:51:30 -0000 Author: amdmi3 Date: Mon Jul 7 22:51:28 2014 New Revision: 361143 URL: http://svnweb.freebsd.org/changeset/ports/361143 QAT: https://qat.redports.org/buildarchive/r361143/ Log: - Switch to USES=libtool, drop .la files - Strip libraries - Fix build on 10.x - Sort plist Added: head/finance/openhbci/files/patch-src__openhbci__core__date.cpp (contents, props changed) head/finance/openhbci/files/patch-src__openhbci__core__statusreport.cpp (contents, props changed) head/finance/openhbci/files/patch-src__openhbci__core__updjob.cpp (contents, props changed) head/finance/openhbci/files/patch-src__openhbci__simpleconfig.cpp (contents, props changed) Modified: head/finance/openhbci/Makefile head/finance/openhbci/pkg-plist Modified: head/finance/openhbci/Makefile ============================================================================== --- head/finance/openhbci/Makefile Mon Jul 7 22:46:46 2014 (r361142) +++ head/finance/openhbci/Makefile Mon Jul 7 22:51:28 2014 (r361143) @@ -1,18 +1,27 @@ # Created by: Heiner Strauss # $FreeBSD$ -PORTNAME= openhbci -PORTVERSION= 0.9.17.2 -CATEGORIES= finance -MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/0.9.17 -DISTNAME= openhbci-0.9.17-2 - -MAINTAINER= ports@FreeBSD.org -COMMENT= HBCI is a bank-independent homebanking standard - -USE_AUTOTOOLS= libtool -WRKSRC= ${WRKDIR}/${PORTNAME}-0.9.17 -GNU_CONFIGURE= yes +PORTNAME= openhbci +PORTVERSION= 0.9.17.2 +PORTREVISION= 1 +CATEGORIES= finance +MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/0.9.17 +DISTNAME= openhbci-0.9.17-2 + +MAINTAINER= ports@FreeBSD.org +COMMENT= HBCI is a bank-independent homebanking standard + +USES= libtool +GNU_CONFIGURE= yes +INSTALL_TARGET= install-strip USE_LDCONFIG= yes +WRKSRC= ${WRKDIR}/${PORTNAME}-0.9.17 + +post-patch: + @${REINPLACE_CMD} -e 's|-lstdc++||' \ + ${WRKSRC}/configure \ + ${WRKSRC}/src/openhbci/Makefile.in \ + ${WRKSRC}/src/openhbci/core/Makefile.in + .include Added: head/finance/openhbci/files/patch-src__openhbci__core__date.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/finance/openhbci/files/patch-src__openhbci__core__date.cpp Mon Jul 7 22:51:28 2014 (r361143) @@ -0,0 +1,11 @@ +--- src/openhbci/core/date.cpp.orig 2003-04-25 05:45:54.000000000 +0400 ++++ src/openhbci/core/date.cpp 2014-07-03 13:48:43.000000000 +0400 +@@ -43,6 +43,8 @@ + #include "date.h" + #include "hbcistring.h" + ++#include // for atoi() ++ + + namespace HBCI { + Added: head/finance/openhbci/files/patch-src__openhbci__core__statusreport.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/finance/openhbci/files/patch-src__openhbci__core__statusreport.cpp Mon Jul 7 22:51:28 2014 (r361143) @@ -0,0 +1,10 @@ +--- src/openhbci/core/statusreport.cpp.orig 2003-05-21 16:01:41.000000000 +0400 ++++ src/openhbci/core/statusreport.cpp 2014-07-03 13:52:40.000000000 +0400 +@@ -29,6 +29,7 @@ + #include "statusreport.h" + #include "hbcistring.h" + #include ++#include // for atoi() + + namespace HBCI { + Added: head/finance/openhbci/files/patch-src__openhbci__core__updjob.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/finance/openhbci/files/patch-src__openhbci__core__updjob.cpp Mon Jul 7 22:51:28 2014 (r361143) @@ -0,0 +1,10 @@ +--- src/openhbci/core/updjob.cpp.orig 2003-01-31 22:13:29.000000000 +0300 ++++ src/openhbci/core/updjob.cpp 2014-07-03 13:52:04.000000000 +0400 +@@ -43,6 +43,7 @@ + + #include "updjob.h" + #include "hbcistring.h" ++#include // for atoi() + + + namespace HBCI { Added: head/finance/openhbci/files/patch-src__openhbci__simpleconfig.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/finance/openhbci/files/patch-src__openhbci__simpleconfig.cpp Mon Jul 7 22:51:28 2014 (r361143) @@ -0,0 +1,10 @@ +--- src/openhbci/simpleconfig.cpp.orig 2003-07-02 22:22:24.000000000 +0400 ++++ src/openhbci/simpleconfig.cpp 2014-07-03 13:53:03.000000000 +0400 +@@ -37,6 +37,7 @@ + #include "simpleconfig.h" + + #include ++#include // for atoi() + #include "parser.h" + #include "filestream.h" + Modified: head/finance/openhbci/pkg-plist ============================================================================== --- head/finance/openhbci/pkg-plist Mon Jul 7 22:46:46 2014 (r361142) +++ head/finance/openhbci/pkg-plist Mon Jul 7 22:51:28 2014 (r361143) @@ -30,10 +30,10 @@ include/openhbci/inetaddress.h include/openhbci/init_plugins.h include/openhbci/interactor.h include/openhbci/interactorcb.h -include/openhbci/limit.h -include/openhbci/listwrappers.h include/openhbci/job.h include/openhbci/libloader.h +include/openhbci/limit.h +include/openhbci/listwrappers.h include/openhbci/loader.h include/openhbci/medium.h include/openhbci/mediumplugin.h @@ -42,10 +42,10 @@ include/openhbci/mediumpluginlist.h include/openhbci/mediumrdhbase.h include/openhbci/messagequeue.h include/openhbci/outbox.h +include/openhbci/outboxaccjobs.h include/openhbci/outboxjob.h -include/openhbci/outboxjobs.h include/openhbci/outboxjobkeys.h -include/openhbci/outboxaccjobs.h +include/openhbci/outboxjobs.h include/openhbci/outboxstojobs.h include/openhbci/parser.h include/openhbci/plugin.h @@ -67,13 +67,13 @@ include/openhbci/user.h include/openhbci/userparams.h include/openhbci/value.h lib/libopenhbci.a -lib/libopenhbci.la lib/libopenhbci.so lib/libopenhbci.so.14 -lib/openhbci/plugins/14/media/rdhfile.so.0 -lib/openhbci/plugins/14/media/rdhfile.so -lib/openhbci/plugins/14/media/rdhfile.la +lib/libopenhbci.so.14.0.2 lib/openhbci/plugins/14/media/rdhfile.a +lib/openhbci/plugins/14/media/rdhfile.so +lib/openhbci/plugins/14/media/rdhfile.so.0 +lib/openhbci/plugins/14/media/rdhfile.so.0.0.0 share/aclocal/openhbci.m4 @dirrm lib/openhbci/plugins/14/media @dirrm lib/openhbci/plugins/14