summaryrefslogtreecommitdiff
blob: 27cbae5e9504cd142629ad0d5bd9ccfceea58dc5 (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
33
34
35
36
37
38
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libofx/libofx-0.6.4-r1.ebuild,v 1.6 2004/10/05 13:57:25 pvdabeel Exp $

DESCRIPTION="Library to support the Open Financial eXchange XML Format"
HOMEPAGE="http://libofx.sourceforge.net/"
SRC_URI="mirror://sourceforge/libofx/${P}.tar.gz"
RESTRICT="nomirror"
LICENSE="GPL-2"

SLOT="0"
KEYWORDS="~x86 ppc"
IUSE=""
DEPEND=">=app-text/opensp-1.5
	>=sys-apps/sed-4"

src_unpack() {
	unpack ${A}

	# Patch for gcc-2.95.  
	# See http://sourceforge.net/forum/forum.php?forum_id=276912
	patch -p0 < ${FILESDIR}/${P}-gcc2.patch || die

	# because we redefine docdir in src_install, we need to make sure the
	# dtd's go to the right place, LIBOFX_DTD_DIR
	cd ${S}/dtd
	sed -i -e 's/$(DESTDIR)$(docdir)/$(DESTDIR)$(LIBOFX_DTD_DIR)/g' \
		Makefile.in
}
src_compile() {
	econf || die "econf failed"
	emake || die
}

src_install() {
	dodir /usr/share/doc/${PF}
	einstall docdir=${D}/usr/share/doc/${PF} || die
}