Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 9 Sep 2002 18:57:14 +0200 (CEST)
From:      Heiner Strauss <heiner@bilch.com>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   ports/42601: New port: devel/openhbci
Message-ID:  <200209091657.g89GvEhc011677@hasel.schlaf.bilch.com>

next in thread | raw e-mail | index | archive | help

>Number:         42601
>Category:       ports
>Synopsis:       New port: devel/openhbci
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Mon Sep 09 10:50:01 PDT 2002
>Closed-Date:
>Last-Modified:
>Originator:     Heiner Strauss
>Release:        FreeBSD 4.6-STABLE i386
>Organization:
BILCH International Consulting, Hamburg
>Environment:
System: FreeBSD hasel 4.6-STABLE FreeBSD 4.6-STABLE #0: Sat Jun 29 10:25:44 CEST 2002 heiner@hasel:/usr/obj/usr/src/sys/HASEL i386


	
>Description:
OpenHBCI -- the first free client-side implementation of the HBCI
specification.

HBCI is a bank-independent homebanking standard used by many German
banks. This publicly available protocol describes communication,
authentification, encryption, and business transactions taking place
between a homebanking applications and a bank's server. OpenHBCI
provides an object oriented library implementing the current
client-side HBCI specification. The library is written in C++, with C
wrappers also available. OpenHBCI provides the application programmer
with a high-level abstraction of almost all business transactions, so
that all HBCI details are totally encapsulated and do not need to be
bothered with.
	
>How-To-Repeat:
	
>Fix:

# This is a shell archive.  Save it in a file, remove anything before
# this line, and then unpack it by entering "sh file".  Note, it may
# create directories; files and directories will be owned by you and
# have default permissions.
#
# This archive contains:
#
#	openhbci
#	openhbci/Makefile
#	openhbci/distinfo
#	openhbci/pkg-descr
#	openhbci/files
#	openhbci/files/patch-aa
#	openhbci/pkg-comment
#	openhbci/pkg-plist
#
echo c - openhbci
mkdir -p openhbci > /dev/null 2>&1
echo x - openhbci/Makefile
sed 's/^X//' >openhbci/Makefile << 'END-of-openhbci/Makefile'
X# Ports collection makefile for:	openhbci
X# Date created:				Sep 9, 2002
X# Whom:					Heiner Strauss <heiner@bilch.com>
X#
X# $FreeBSD$
X
XPORTNAME=		openhbci
XPORTVERSION=		0.9.b1
XCATEGORIES=		devel
XMASTER_SITES=		http://switch.dl.sourceforge.net/sourceforge/openhbci
XDISTNAME=		${PORTNAME}-0.9beta1
X
XMAINTAINER=		heiner@bilch.com
X
XWRKSRC=                 ${WRKDIR}/${PORTNAME}-0.9
X
XGNU_CONFIGURE=		yes
X
X.include <bsd.port.mk>
END-of-openhbci/Makefile
echo x - openhbci/distinfo
sed 's/^X//' >openhbci/distinfo << 'END-of-openhbci/distinfo'
XMD5 (openhbci-0.9beta1.tar.gz) = 05823f9fdb80ac924c355303e8231a16
END-of-openhbci/distinfo
echo x - openhbci/pkg-descr
sed 's/^X//' >openhbci/pkg-descr << 'END-of-openhbci/pkg-descr'
XOpenHBCI -- the first free client-side implementation of the HBCI
Xspecification.
X
XHBCI is a bank-independent homebanking standard used by many German
Xbanks. This publicly available protocol describes communication,
Xauthentification, encryption, and business transactions taking place
Xbetween a homebanking applications and a bank's server. OpenHBCI
Xprovides an object oriented library implementing the current
Xclient-side HBCI specification. The library is written in C++, with C
Xwrappers also available. OpenHBCI provides the application programmer
Xwith a high-level abstraction of almost all business transactions, so
Xthat all HBCI details are totally encapsulated and do not need to be
Xbothered with.
END-of-openhbci/pkg-descr
echo c - openhbci/files
mkdir -p openhbci/files > /dev/null 2>&1
echo x - openhbci/files/patch-aa
sed 's/^X//' >openhbci/files/patch-aa << 'END-of-openhbci/files/patch-aa'
X*** src/openhbci/core/directory.cpp	Mon Sep  9 15:52:41 2002
X***************
X*** 117,123 ****
X  
X  
X  string Directory::workingDirectory(){
X!     char buffer[PATH_MAX];
X  
X      if (!getcwd(buffer,sizeof(buffer)))
X          throw Error("Directory::workingDirectory()",
X--- 117,123 ----
X  
X  
X  string Directory::workingDirectory(){
X!     char buffer[MAXNAMLEN];
X  
X      if (!getcwd(buffer,sizeof(buffer)))
X          throw Error("Directory::workingDirectory()",
X*** src/openhbci/core/inetaddress.h	Mon Sep  9 15:52:41 2002
X***************
X*** 31,38 ****
X  #define C_INEDADDRESS_H
X  
X  #include <string>
X- #include <sys/socket.h>
X  #include <sys/types.h>
X  #include <sys/time.h>
X  #include <netinet/in.h>
X  #include <netdb.h>
X--- 31,38 ----
X  #define C_INEDADDRESS_H
X  
X  #include <string>
X  #include <sys/types.h>
X+ #include <sys/socket.h>
X  #include <sys/time.h>
X  #include <netinet/in.h>
X  #include <netdb.h>
X*** src/openhbci/core/socket.cpp	Mon Sep  9 15:52:41 2002
X***************
X*** 453,459 ****
X      p=data.c_str();
X      i=data.length();
X      while(i) {
X!         j=send(_sock,p,i,MSG_NOSIGNAL);
X          if (j<=0)
X              return Error("Socket::writeData",
X                               ERROR_LEVEL_NORMAL,
X--- 453,459 ----
X      p=data.c_str();
X      i=data.length();
X      while(i) {
X!         j=send(_sock,p,i,MSG_EOF);
X          if (j<=0)
X              return Error("Socket::writeData",
X                               ERROR_LEVEL_NORMAL,
END-of-openhbci/files/patch-aa
echo x - openhbci/pkg-comment
sed 's/^X//' >openhbci/pkg-comment << 'END-of-openhbci/pkg-comment'
XHBCI is a bank-independent homebanking standard
END-of-openhbci/pkg-comment
echo x - openhbci/pkg-plist
sed 's/^X//' >openhbci/pkg-plist << 'END-of-openhbci/pkg-plist'
Xinclude/openhbci/abstracttrans.h
Xinclude/openhbci/account.h
Xinclude/openhbci/accountparams.h
Xinclude/openhbci/adminjobs.h
Xinclude/openhbci/auth.h
Xinclude/openhbci/balance.h
Xinclude/openhbci/bank.h
Xinclude/openhbci/bankparams.h
Xinclude/openhbci/bpdjob.h
Xinclude/openhbci/connection.h
Xinclude/openhbci/cryptkey.h
Xinclude/openhbci/customer.h
Xinclude/openhbci/date.h
Xinclude/openhbci/datetime.h
Xinclude/openhbci/directory.h
Xinclude/openhbci/dllimport.h
Xinclude/openhbci/error.h
Xinclude/openhbci/file.h
Xinclude/openhbci/hbci.h
Xinclude/openhbci/hbcistring.h
Xinclude/openhbci/hbcistringlist.h
Xinclude/openhbci/inetaddress.h
Xinclude/openhbci/interactor.h
Xinclude/openhbci/job.h
Xinclude/openhbci/interactorcb.h
Xinclude/openhbci/medium.h
Xinclude/openhbci/mediumddv.h
Xinclude/openhbci/mediumrdh.h
Xinclude/openhbci/messagequeue.h
Xinclude/openhbci/pointer.h
Xinclude/openhbci/rsakey.h
Xinclude/openhbci/socket.h
Xinclude/openhbci/standingorder.h
Xbin/cmoney
Xlib/libopenhbci-core.so.0
Xlib/libopenhbci.so
Xlib/libopenhbci-core.so
Xlib/libopenhbci-core.la
Xlib/libopenhbci-core.a
Xlib/libopenhbci.so.1
Xlib/libopenhbci.la
Xlib/libopenhbci.a
Xinclude/openhbci/transaction.h
Xinclude/openhbci/updjob.h
Xinclude/openhbci/user.h
Xinclude/openhbci/userparams.h
Xinclude/openhbci/value.h
Xinclude/openhbci/tree.h
Xinclude/openhbci/conf.h
Xinclude/openhbci/simpleconfig.h
Xinclude/openhbci/loader.h
Xinclude/openhbci/outbox.h
Xinclude/openhbci/outboxjob.h
Xinclude/openhbci/outboxjobs.h
Xinclude/openhbci/outboxjobkeys.h
Xinclude/openhbci/outboxaccjobs.h
Xinclude/openhbci/outboxstojobs.h
Xinclude/openhbci/api.h
Xinclude/openhbci/cmdlineoptions.h
Xinclude/openhbci/filestream.h
Xinclude/openhbci/parser.h
Xinclude/openhbci/stream.h
Xinclude/openhbci/progressmonitor.h
Xinclude/openhbci/progressmonitorcb.h
X@dirrm include/openhbci
Xman/man1/aqmoney.1
END-of-openhbci/pkg-plist
exit



>Release-Note:
>Audit-Trail:
>Unformatted:

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200209091657.g89GvEhc011677>