summaryrefslogtreecommitdiff
blob: 7b0ecd9362c7f52a2736f3c846e88fb93c60bd3d (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7

inherit autotools flag-o-matic

DESCRIPTION="A library to support the Open Financial eXchange XML format"
HOMEPAGE="https://github.com/libofx/libofx"
SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0/7"
KEYWORDS="amd64 x86"
IUSE="static-libs test"

RDEPEND="
	>=dev-cpp/libxmlpp-2.40.1:2.6
	>=net-misc/curl-7.9.7
	virtual/libiconv
"
DEPEND="
	${RDEPEND}
	>app-text/opensp-1.5
"
BDEPEND="
	dev-util/gengetopt
	sys-apps/help2man
	virtual/pkgconfig
	test? ( app-crypt/gnupg )
"

PATCHES=(
	"${FILESDIR}/${P}-0001-Makefile.am-remove-INSTALL-from-docs.patch"
)

# workaround needed for ofxconnect to compile
MAKEOPTS="-j1"

src_prepare() {
	default
	eautoreconf

	# we will tell you where we wants the docs!
	sed -i -e 's:docdir.*::' Makefile.am || die

	# configure arguments alone don't disable everything
	sed -e "/^SUBDIRS/s/doc//" -i Makefile.am || die

	append-cxxflags -std=c++14
}

src_configure() {
	econf --docdir=/usr/share/doc/${PF}
}

src_install() {
	default
	find "${D}" -name '*.la' -delete || die
	if ! use static-libs; then
		find "${D}" -type f -name '*.a' -delete || die
	fi
}