blob: 92599dfb3e97c6bd313fa96490463456134d21b5 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/openhbci/openhbci-0.9.17-r1.ebuild,v 1.2 2005/05/01 18:11:33 hansmi 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 ~amd64"
IUSE=""
DEPEND=">=dev-libs/openssl-0.9.6"
src_compile() {
./configure \
--prefix=/usr \
--infodir=/usr/share/info \
--mandir=/usr/share/man || die "./configure failed"
emake || die "parallel make failed"
}
src_install() {
make DESTDIR=${D} install || die "install failed"
dodoc AUTHORS README TODO
dosym libopenhbci /usr/$(get_libdir)/libopenhbci.so # HACK: closes #79736
}
|