blob: 9c5e9c8b494fc1c132e5e4b14796f079f644fe37 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/openhbci/openhbci-0.9.16.ebuild,v 1.3 2004/07/15 01:26:43 agriffis Exp $
inherit eutils
DESCRIPTION="Implementation of the HBCI protocol used by some banks"
HOMEPAGE="http://openhbci.sourceforge.net/"
SRC_URI="mirror://sourceforge/openhbci/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~x86 ~alpha ~ppc ~sparc"
IUSE=""
DEPEND=">=dev-libs/openssl-0.9.6
>=sys-libs/libchipcard-0.8"
src_unpack() {
unpack ${A}
epatch ${FILESDIR}/openhbci_gcc34.gz
}
src_compile() {
econf --with-chipcard=/usr || die "configure failed"
emake || die "parallel make failed"
}
src_install() {
make DESTDIR=${D} install || die "install failed"
dodoc AUTHORS README TODO
}
|