diff options
Diffstat (limited to 'dev-libs')
-rw-r--r-- | dev-libs/libofx/Manifest | 1 | ||||
-rw-r--r-- | dev-libs/libofx/libofx-0.9.14-r1.ebuild | 63 |
2 files changed, 0 insertions, 64 deletions
diff --git a/dev-libs/libofx/Manifest b/dev-libs/libofx/Manifest index 486093625b73..7c30ee137d3f 100644 --- a/dev-libs/libofx/Manifest +++ b/dev-libs/libofx/Manifest @@ -1,2 +1 @@ -DIST libofx-0.9.14.tar.gz 210155 BLAKE2B 1b5ee8503dd9d4837415e53ae79889c32c50146b2b508aab052e8074a277f8181c6866470220758ed7997b0b6e3e524ac6f9e1cac9a673f60c30ce3093e5a3ee SHA512 785c5130fc6f6cfc019d4aee2bf6de6311835e5dc7f2bd56a83f1ecf5e62ecb320a95bf4a5ff8f9e14dcaf5ff1eabc833cd7974927e571a8469c9a02fb8362d2 DIST libofx-0.9.15.tar.gz 207361 BLAKE2B c84fd4593a9888268c691653dc1b5fff5c38013f12ccc4a8454f9a5026ba190388e5747074aa800266efcfd49a0fdb391a605d5837f664bdcb8fe1dc5c064839 SHA512 6014bf9c457adbe9053a47718064e6246c911c3bf081c690bf761650220208aabe94824aaa38794c1834462894b7948a06b3ff6b517a9a84b9f881ba51aee3a1 diff --git a/dev-libs/libofx/libofx-0.9.14-r1.ebuild b/dev-libs/libofx/libofx-0.9.14-r1.ebuild deleted file mode 100644 index e40a1c11da5f..000000000000 --- a/dev-libs/libofx/libofx-0.9.14-r1.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# 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 ppc ppc64 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 -} |