From 194ea0969cc857ff0ecc28db440a1fbea375134c Mon Sep 17 00:00:00 2001 From: Sam James Date: Mon, 1 Mar 2021 17:05:17 +0000 Subject: dev-libs/libofx: revbump for openjade change This may not be strictly needed at build time unless we're running tests, but let's include it to be sure. Signed-off-by: Sam James --- dev-libs/libofx/libofx-0.10.1-r1.ebuild | 60 +++++++++++++++++++++++++++++++++ dev-libs/libofx/libofx-0.10.1.ebuild | 60 --------------------------------- 2 files changed, 60 insertions(+), 60 deletions(-) create mode 100644 dev-libs/libofx/libofx-0.10.1-r1.ebuild delete mode 100644 dev-libs/libofx/libofx-0.10.1.ebuild (limited to 'dev-libs/libofx') diff --git a/dev-libs/libofx/libofx-0.10.1-r1.ebuild b/dev-libs/libofx/libofx-0.10.1-r1.ebuild new file mode 100644 index 000000000000..4a174578a257 --- /dev/null +++ b/dev-libs/libofx/libofx-0.10.1-r1.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools flag-o-matic + +DESCRIPTION="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/10" +KEYWORDS="amd64 ~arm64 ppc ppc64 ~x86" +IUSE="test" +RESTRICT="!test? ( test )" + +BDEPEND=" + dev-util/gengetopt + sys-apps/help2man + virtual/pkgconfig + 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_prepare() { + default + + # Not included in the tarball + sed -i -e '/INSTALL/d' Makefile.am || die + # Use correct location for docs + sed -i -e 's:doc/libofx:doc/${PF}:' Makefile.am doc/Makefile.am || die + + # bug #566456 + append-cxxflags -std=c++14 + + eautoreconf +} + +src_configure() { + econf --disable-static +} + +src_compile() { + emake -j1 +} + +src_install() { + default + + find "${ED}" -name '*.la' -type f -delete || die + find "${ED}" -name '*.a' -type f -delete || die +} diff --git a/dev-libs/libofx/libofx-0.10.1.ebuild b/dev-libs/libofx/libofx-0.10.1.ebuild deleted file mode 100644 index 4a174578a257..000000000000 --- a/dev-libs/libofx/libofx-0.10.1.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools flag-o-matic - -DESCRIPTION="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/10" -KEYWORDS="amd64 ~arm64 ppc ppc64 ~x86" -IUSE="test" -RESTRICT="!test? ( test )" - -BDEPEND=" - dev-util/gengetopt - sys-apps/help2man - virtual/pkgconfig - 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_prepare() { - default - - # Not included in the tarball - sed -i -e '/INSTALL/d' Makefile.am || die - # Use correct location for docs - sed -i -e 's:doc/libofx:doc/${PF}:' Makefile.am doc/Makefile.am || die - - # bug #566456 - append-cxxflags -std=c++14 - - eautoreconf -} - -src_configure() { - econf --disable-static -} - -src_compile() { - emake -j1 -} - -src_install() { - default - - find "${ED}" -name '*.la' -type f -delete || die - find "${ED}" -name '*.a' -type f -delete || die -} -- cgit v1.2.3-65-gdbad