mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-05 14:07:27 -08:00
Per the category metadata, app-doc/ is reserved for documentation *files* and not software. Move it to app-text/ where it seems a better fit. Signed-off-by: Michał Górny <mgorny@gentoo.org>
51 lines
987 B
Bash
51 lines
987 B
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit flag-o-matic
|
|
|
|
DESCRIPTION="Library to support the Open Financial eXchange XML format"
|
|
HOMEPAGE="https://github.com/libofx/libofx"
|
|
SRC_URI="https://github.com/libofx/libofx/releases/download/${PV}/${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0/10"
|
|
KEYWORDS="amd64 ~arm64 ppc ppc64 ~riscv x86"
|
|
IUSE="doc test"
|
|
RESTRICT="!test? ( test )"
|
|
|
|
BDEPEND="
|
|
dev-util/gengetopt
|
|
sys-apps/help2man
|
|
virtual/pkgconfig
|
|
doc? ( app-text/doxygen )
|
|
test? ( app-crypt/gnupg )
|
|
"
|
|
RDEPEND="
|
|
>app-text/opensp-1.5
|
|
app-text/openjade
|
|
>=dev-cpp/libxmlpp-2.40.1:2.6
|
|
>=net-misc/curl-7.9.7
|
|
virtual/libiconv
|
|
"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
src_configure() {
|
|
# bug #566456
|
|
append-cxxflags -std=c++14
|
|
|
|
econf $(use_enable doc html-docs)
|
|
}
|
|
|
|
src_compile() {
|
|
emake all $(usev doc)
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
|
|
find "${ED}" -name '*.la' -type f -delete || die
|
|
find "${ED}" -name '*.a' -type f -delete || die
|
|
}
|